Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

skill-extract-scripts技能提取脚本

Agent Skill

skill-extract-scripts 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

353

周安装

15

GitHub Stars

1

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/codewithjv/agent-skills --skill skill-extract-scripts

简介

skill-extract-scripts 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕项目状态进行整理。

  • 适用于查询变更内容、辅助创建协作事项或将仓库信息转化为可执行步骤。
  • 使用时需区分只读查询与写入操作,涉及 PR 或分支推送时应确认 token 权限。
  • 通过 npx skills add 命令从 GitHub 安装,建议核实是否会触发文件读写或命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Extract Scripts from Skills

Review a skill file and extract the mechanical, deterministic steps into standalone shell scripts. The skill keeps only the judgment calls — summarising, interpreting, choosing, writing.

When to Use

Activate when the user:

  • Asks to extract scripts from a skill
  • Wants to make a skill more reliable or deterministic
  • Says a skill is inconsistent or keeps getting CLI commands wrong
  • Asks to split a skill into script + prompt
  • Wants to audit a skill for script extraction candidates

Process

Step 1: Read the skill

Read the target skill file. If the user doesn't specify one, ask which skill to review.

Step 2: Classify each step

Go through every instruction in the skill and classify it:

  • Script (S) — has one right answer, runs the same every time. Examples:

- CLI commands with specific flags (git log --since="1 week ago" --oneline) - File creation with fixed paths or formats (echo "# Title" > report.md) - Data collection (npm test 2>&1 | tail -20) - Directory setup, file copying, environment checks - Any step where you could write it once and it works forever

  • AI (A) — needs thinking, interpretation, or creativity. Examples:

- Summarising collected data - Choosing between options - Writing prose, recommendations, analysis - Interpreting results or making judgment calls - Anything where the "right answer" depends on context

Present the classification to the user as a table:

| Step | Classification | Reason |
|------|---------------|--------|
| Run git log... | S (Script) | Exact command, one right answer |
| Summarise themes | A (AI) | Needs interpretation |

Step 3: Write the script

Create a shell script that handles all the S-classified steps.

All scripts MUST be location-independent. They should work if someone pulls them to a different folder or a different computer. Follow these rules:

  • Start with #!/bin/bash
  • Resolve the script's own directory first: SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" Use $SCRIPT_DIR as the base for any relative paths (e.g., "$SCRIPT_DIR/../data").
  • Never hardcode absolute paths. No /Users/jv/..., no ~/specific-project/.... Use $SCRIPT_DIR, $PWD, or accept paths as arguments.
  • Use command -v to check for required tools before running them: command -v jq >/dev/null 2>&1 || {echo "Error: jq is required but not installed"; exit 1;}
  • Accept inputs as arguments or environment variables, not baked-in values: INPUT_FILE="${1:?Usage: $0 <input-file>}" OUTPUT_DIR="${2:-$SCRIPT_DIR/output}"
  • Use mktemp for temporary files instead of hardcoded /tmp/my-thing.txt: TMPFILE=$(mktemp) trap 'rm -f "$TMPFILE"' EXIT
  • Add a comment at the top explaining what the script does
  • End with a confirmation message (echo "Done: output written to $OUTFILE")
  • Make it executable: remind the user to run chmod +x script.sh

Use parameters to make scripts resilient:

  • Add set -euo pipefail after the shebang. This makes the script fail fast on errors (-e), undefined variables (-u), and broken pipes (-o pipefail) instead of silently continuing with wrong data.
  • Provide sensible defaults for optional parameters using ${VAR:-default}: SINCE="${1:-7}" # days to look back, defaults to 7 FORMAT="${2:-oneline}" # output format, defaults to oneline
  • Validate required parameters early and print usage if missing: if [$# -lt 1]; then echo "Usage: $0 <input-file> [output-dir]" echo " input-file: path to the skill file to process" echo " output-dir: where to write results (default:./output)" exit 1 fi
  • Validate that input files/dirs actually exist before doing work: [-f "$INPUT_FILE"] || {echo "Error: $INPUT_FILE not found"; exit 1;} [-d "$OUTPUT_DIR"] || mkdir -p "$OUTPUT_DIR"
  • Use named variables instead of positional $1, $2 in the body. Assign arguments to descriptive names at the top, then use those names throughout. $INPUT_FILE is readable, $1 buried on line 40 is not.
  • Make the script idempotent where possible. Running it twice should produce the same result, not duplicate data or fail because output already exists. Use mkdir -p instead of mkdir, overwrite output files instead of appending blindly.

Place the script next to the skill file, or in a scripts/ directory if there are multiple.

Step 4: Rewrite the skill

Rewrite the skill to:

  1. Call the script first (Run./script-name.sh)
  2. Read the script's output
  3. Do only the judgment work with that output

The rewritten skill should be noticeably shorter. If it isn't, the original probably didn't have many mechanical steps and might not need this treatment — say so.

Step 5: Optionally add AI calls to the script

If the workflow benefits from it, show how the script could call AI CLIs directly:

# Collect data deterministically, then ask AI to analyse
TMPFILE=$(mktemp)
trap 'rm -f "$TMPFILE"' EXIT
git log --since="1 week ago" --oneline > "$TMPFILE"
codex exec "Summarise the themes: $(cat "$TMPFILE")"

This makes the entire workflow runnable as a single script — deterministic orchestration with AI judgment on demand.

Output Format

Produce three artifacts:

  1. Classification table — every step labeled S or A with reasoning
  2. Shell script — handles all S steps
  3. Rewritten skill — calls the script, then does only A steps

Tips

  • Don't force it. If a skill is mostly judgment calls with one or two simple commands, it probably doesn't need a script. Say so.
  • Scripts should be independently testable. The user should be able to run the script alone to verify the data collection works before involving the AI.
  • Keep scripts focused. One script per logical phase. Don't create a mega-script that's as hard to debug as the original skill.
  • Variable names should be descriptive. $OUTFILE and $TODAY are better than $F and $D.
  • Always use "$VARIABLE" with quotes to handle spaces in paths.
  • Portability is non-negotiable. Every script must work when moved to a different directory or cloned to a different machine. No hardcoded paths, no assumptions about home directory layout, no machine-specific values baked in. If the script needs something specific to the environment, it takes it as an argument or reads it from an env var.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.44%
按下载量换算40

Claude

30.48%
按下载量换算38

Cursor

19.35%
按下载量换算24

Gemini CLI

9.02%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills