Skip to main content
ClaudeWave
Skill210 estrellas del repoactualizado 3mo ago

claude-skill

Use when work should be delegated to Claude Code CLI, especially headless `claude -p` runs, automation scripts, CI jobs, resumable sessions, or requests to use Claude/Claude Code for a task.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/feiskyer/codex-settings /tmp/claude-skill && cp -r /tmp/claude-skill/skills/claude-skill ~/.claude/skills/claude-skill
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Claude Code Headless Mode

Use this skill when the job should be executed through Claude Code itself, not solved inline. Focus on commands and workflows that match current stable Claude Code behavior.

## Core Rules

- Treat `claude --help` on the target machine as the compatibility floor. CLI flags move faster than blog posts and copied examples.
- Permission rule syntax varies by build. Anthropic docs often show forms like `Bash(git diff *)`, while the installed `claude 2.1.71` help on this machine still shows `Bash(git:*)`. Mirror the syntax shown by the target machine's `claude --help`.
- Default to the model the user already configured through `/model`, settings, or `ANTHROPIC_MODEL`.
- Do **not** add `--model` unless the user explicitly asked for a model override or the workflow must pin a model for reproducibility.
- Prefer `--append-system-prompt` over `--system-prompt` unless replacing the default Claude Code behavior is intentional.
- Default to safe automation. If the user wants a truly unattended run, use explicit permission rules or `dontAsk`; reserve `bypassPermissions` for isolated environments.

## Quick Verification

Run these checks before giving advanced advice:

```bash
claude --version
claude auth status --text
claude --help
```

If installation or updates look odd, use:

```bash
claude doctor
```

## Installation Guidance

- Anthropic's getting-started docs still show `npm install -g @anthropic-ai/claude-code` as the standard install path.
- Newer builds may also support native installer flows and `claude install`.
- If the user needs installation help, point them to the official Claude Code setup docs and verify the result with `claude doctor` rather than assuming one installer path is universal.

## Headless Command Patterns

### Basic Non-Interactive Run

Use `-p` / `--print` for non-interactive execution:

```bash
claude -p "summarize the repository architecture"
```

Add `--output-format json` when the caller needs machine-readable output:

```bash
claude -p "review the auth layer for risks" --output-format json
```

### Model Selection

- Omit `--model` by default.
- If the user explicitly wants a model override, use `claude --model <alias-or-name> ...`.
- For persistent defaults, prefer settings (`model`) or `ANTHROPIC_MODEL`.
- For third-party deployments, pin models via settings or environment variables instead of bolting `--model` onto every command example.

### Permission Modes

Claude Code supports these permission modes:

| Mode | Use |
| --- | --- |
| `default` | Interactive exploration. Prompts on first use of write/bash-style tools. |
| `acceptEdits` | Recommended starting point for coding automation. Auto-accepts edits, but command execution can still prompt. |
| `plan` | Analysis only. No file changes or command execution. |
| `dontAsk` | Auto-denies anything not already approved by permission rules. Good for unattended-but-constrained runs. |
| `bypassPermissions` | Skips prompts entirely. Only for strong sandbox / container / VM isolation. |

Important clarifications:

- `acceptEdits` is the skill's recommended default, not the CLI default.
- If the user says "no prompts at all," prefer permission rules or `dontAsk` with explicit allow rules.
- Only recommend `bypassPermissions` when the environment is already isolated and the user accepts the risk.
- For read-only analysis, prefer `--tools` plus `default` or `plan`; do not reach for `bypassPermissions` just to suppress prompts.

### Tool Availability vs Permission Approval

Do not mix these up:

- `--tools` restricts which built-in tools are available at all.
- `--allowedTools` pre-approves specific tools or tool rules so Claude does not prompt for them.
- `--disallowedTools` removes tools or rules from context.

Permission rules follow `Tool` or `Tool(specifier)` syntax.

Use wildcard rules when the command will include arguments:

- Good: `Bash(git diff *)`
- Good: `Bash(npm run test *)`
- Risky for real use: `Bash(find)` because it matches only the exact literal command `find`

If the local CLI help shows colon syntax such as `Bash(find:*)`, use that form on that machine. The important part is to allow an argument-aware rule rather than an exact literal command.

If the user wants Claude limited to a narrow tool family, you should usually use both `--tools` and `--allowedTools`: `--tools` defines the hard boundary, `--allowedTools` removes prompts inside that boundary.

### Output Formats

- `text`: default human-readable output
- `json`: one final structured result
- `stream-json`: event stream for long-running automation

Do not promise a fixed JSON schema unless you have validated it on the target version. Prefer wording like "returns a final result object with response text, timing, and session metadata."

### Commonly Safe Flags

These are appropriate starting points on current stable builds:

- `--append-system-prompt`
- `--allowedTools`
- `--disallowedTools`
- `--tools`
- `--permission-mode`
- `--output-format`
- `--mcp-config`
- `--continue` / `--resume`
- `--settings` / `--setting-sources`
- `--session-id`
- `--add-dir`
- `--max-budget-usd`
- `--fallback-model` for print mode

### Version-Sensitive Flags

Published docs sometimes mention flags that are absent from the installed binary on a given machine. Before emitting less-common flags, verify them with `claude --help`.

## Recommended Command Templates

### Read-Only Analysis

```bash
claude -p "count the total lines of code in this repo, grouped by language" \
  --permission-mode default \
  --tools "Bash,Read" \
  --allowedTools "Read" "Bash(find:*)" "Bash(wc:*)"
```

### Safe Edit Run

```bash
claude -p "fix the failing login test and rerun the relevant test command" \
  --permission-mode acceptEdits \
  --tools "Bash,Read,Edit,Write" \
  --allowedTools "Read" "Edit" "Write" "Bash(npm test *)"
```

### JSON Report

```bash
claude -p "review the repository for security issues and produce a concise report" \
  --output-format
autonomous-skillSkill

Use when work must continue across multiple Codex sessions with `.autonomous/` tracking, resumable execution, or autonomous handoff. Use for long-running, multi-session, or resume-later tasks.

deep-researchSkill

深度调研的多实例(多 Agent)编排工作流:把一个调研目标拆成可并行子目标,用 Codex CLI(`codex exec`)在默认 `workspace-write` 沙箱内运行子进程;联网与采集优先使用已安装的 skills,其次使用 MCP 工具;用脚本聚合子结果并分章精修,最终交付“成品报告文件路径 + 关键结论/建议摘要”。用于:系统性网页/资料调研、竞品/行业分析、批量链接/数据集分片检索、长文写作与证据整合,或用户提及“深度调研/Deep Research/Wide Research/多 Agent 并行调研/多进程调研”等场景。

kiro-skillSkill

Interactive feature development workflow from idea to implementation. Creates requirements (EARS format), design documents, and implementation task lists. Use when creating feature specs, requirements documents, design documents, or implementation plans. Triggered by "kiro" or references to .kiro/specs/ directory.

nanobanana-skillSkill

Generate, remix, or edit images with Nanobanana / Nano Banana 2 through the bundled Gemini CLI wrapper. Use this whenever the user wants AI image generation or editing, especially for reference-image composition, character consistency, grounded visuals that may need live web search, style transfer, marketing graphics, product mockups, social assets, or when they explicitly mention Nanobanana, Gemini image models, Google image generation, AI drawing, 图片生成, AI绘图, 图片编辑, or 生成图片.

spec-kit-skillSkill

GitHub Spec-Kit integration for constitution-based spec-driven development. 7-phase workflow (constitution, specify, clarify, plan, tasks, analyze, implement). Use when working with spec-kit CLI, .specify/ directories, or creating specifications with constitution-driven development. Triggered by "spec-kit", "speckit", "constitution", "specify", references to .specify/ directory, or spec-kit commands.

youtube-transcribe-skillSkill

Extract subtitles/transcripts from a YouTube video URL and save as a local file. Use when you need to extract subtitles from a YouTube video.