Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

claude-skillClaude 技能

Agent Skill

claude-skill 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,023

周安装

86

GitHub Stars

188

下载量

709
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claude-skill(Claude 技能)
来源仓库:https://github.com/feiskyer/codex-settings
仓库路径:skills/claude-skill
安装命令:
npx skills add https://github.com/feiskyer/codex-settings --skill claude-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/feiskyer/codex-settings --skill claude-skill

简介

Claude Code 无头模式技能聚焦稳定 CLI 行为与命令兼容性。

  • 以目标机器 claude --help 为准进行语法适配,避免依赖过时博客示例。
  • 处理命令执行、工作流定义及权限规则映射等核心交互逻辑。
  • 需确保目标环境与技能描述一致,防止因版本差异导致命令失效。
  • claude-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

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:

claude --version
claude auth status --text
claude --help

If installation or updates look odd, use:

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:

claude -p "summarize the repository architecture"

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

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:

ModeUse
defaultInteractive exploration. Prompts on first use of write/bash-style tools.
acceptEditsRecommended starting point for coding automation. Auto-accepts edits, but command execution can still prompt.
planAnalysis only. No file changes or command execution.
dontAskAuto-denies anything not already approved by permission rules. Good for unattended-but-constrained runs.
bypassPermissionsSkips 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

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

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

claude -p "review the repository for security issues and produce a concise report" \
  --output-format json \
  --append-system-prompt "Focus on concrete findings, exploitability, and mitigations."

Resume a Session

claude -r "$session_id" -p "continue by updating the tests and summarizing what changed"

Continue the Most Recent Session

claude -c -p "continue with the next step"

Use MCP Tools

claude -p "investigate the API latency spike" \
  --permission-mode acceptEdits \
  --mcp-config monitoring-tools.json \
  --allowedTools "Read" "mcp__datadog__*" "mcp__prometheus__*"

Fully Unattended Execution in an Isolated Environment

Use only when the environment is already sandboxed:

claude -p "run the migration and fix the resulting type errors" \
  --permission-mode bypassPermissions \
  --tools "Bash,Read,Edit,Write"

Execution Workflow

  1. Confirm the user wants Claude Code CLI rather than an inline answer.
  2. Verify the installed CLI shape with claude --help if you plan to use uncommon flags.
  3. Choose the least-permissive mode that still fits the task.
  4. Build the command without --model unless the user explicitly asked for an override.
  5. Restrict tools with --tools when safety or predictability matters.
  6. Use --allowedTools for prompt-free approval of known-safe actions.
  7. Return exact commands plus short caveats about assumptions and safety.

When To Pause

Pause only when one of these is materially unclear:

  • The user wants a specific model or provider behavior that requires pinning.
  • They asked for a fully unattended run in an environment that is not clearly sandboxed.
  • The workflow depends on a Claude Code feature that is not visible in claude --help.

Otherwise, proceed and give the best current command.

Final Response Expectations

When using this skill, the output should usually include:

  • the exact command or command sequence
  • a one-line note that the configured Claude model is being used by default
  • any permission or isolation caveat
  • the resume command if the workflow is meant to continue later

References

  • references/examples.md for extended patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.66%
按下载量换算203

Gemini CLI

25.41%
按下载量换算180

Antigravity

16.97%
按下载量换算120

windsurf

13.29%
按下载量换算94

Codex

6.9%
按下载量换算49

OpenCode

3.23%
按下载量换算23

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills