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

shell-scriptershell 脚本编写器

Agent Skill

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

总安装

371

周安装

15

GitHub Stars

2

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wyattowalsh/agents --skill shell-scripter

简介

shell-scripter 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

Shell Scripter

Generate, review, convert, and lint shell scripts. Makefile and justfile generation. References ShellCheck rule IDs with explanations but does NOT run ShellCheck.

Scope: Shell scripts (bash, zsh, fish, sh/POSIX), Makefiles, justfiles. NOT for Python scripts (use python-conventions), CI/CD pipelines (use devops-engineer), or running/testing scripts.

Dispatch

$ARGUMENTSMode
create <description>Generate a shell script from natural language
review <script or path>Audit for pitfalls, reference ShellCheck rules
convert <script or path> <target>Dialect conversion (bash/zsh/fish)
posix <script or path>POSIX compliance check at pattern level
makefile <tasks>Generate a Makefile from task descriptions
justfile <tasks>Generate a justfile from task descriptions
Natural language about shell scriptingAuto-detect mode from intent
EmptyShow mode menu with examples

Auto-Detection Heuristic

  1. Path to .sh/.bash/.zsh/.fish file + modification verb (review, check, fix, audit, lint) -> review
  2. Path to .sh file + "to zsh/fish/bash" -> convert
  3. Path to .sh file + "posix" or "portable" -> posix
  4. "makefile" or "make targets" in input -> makefile
  5. "justfile" or "just recipes" in input -> justfile
  6. Describes desired script behavior -> create
  7. Ambiguous -> ask which mode

Mode: Create

Generate a shell script from a natural language description.

Generation Process

  1. Determine target dialect (default: bash)
  2. Run uv run python skills/shell-scripter/scripts/dialect-converter.py --list-features <dialect> to confirm available features
  3. Write the script with:

- Proper shebang (env-based like env bash, not hardcoded interpreter paths) - set -euo pipefail for bash (equivalent for other dialects) - Meaningful variable names, quoted expansions - Error handling for external commands - Usage function if script accepts arguments

Validation

  1. Run uv run python skills/shell-scripter/scripts/script-analyzer.py --stdin <<< "$SCRIPT" on the generated script
  2. Fix any issues found, present final script

Mode: Review

Audit a shell script for common pitfalls. Reference ShellCheck rule IDs.

Analysis

  1. Read the target script
  2. Run uv run python skills/shell-scripter/scripts/script-analyzer.py <path>
  3. Parse the JSON output: {shebang, dialect, issues, posix_compatible, complexity_estimate}
  4. For each issue, load references/shellcheck-rules.md to explain the rule ID

Findings Report

  1. Group findings by severity: error > warning > info > style
  2. Present findings with:

- ShellCheck rule ID (e.g., SC2086) - Line number and code snippet - Explanation of WHY it is a problem - Concrete fix

  1. If no issues found, state this explicitly

Severity mapping:

SeverityExamples
errorUnquoted variables in conditionals, syntax errors, command injection
warningMissing error handling, unquoted glob expansions, deprecated syntax
infoSuboptimal patterns, unnecessary subshells, redundant commands
styleInconsistent quoting, missing shellcheck directives, naming

Mode: Convert

Convert shell syntax between bash, zsh, and fish.

  1. Read the source script
  2. Identify source dialect (from shebang or --from flag)
  3. Run uv run python skills/shell-scripter/scripts/dialect-converter.py <path> --from <source> --to <target>
  4. Parse the JSON output: {converted_script, changes, warnings}
  5. Present the converted script with a change summary table
  6. Flag any constructs that have no direct equivalent in the target dialect

Mode: POSIX

Check a script for POSIX compliance at the pattern level.

  1. Read the target script
  2. Run uv run python skills/shell-scripter/scripts/script-analyzer.py <path> --posix
  3. Identify bash-isms: [[]], (()), arrays, local, source, process substitution, {a..z}, $'...'
  4. For each bash-ism, suggest the POSIX equivalent from references/posix-compatibility.md
  5. Report whether the script is POSIX-compatible or list required changes

Mode: Makefile

Generate a Makefile from task descriptions.

  1. Parse task descriptions from $ARGUMENTS
  2. Determine dependencies between tasks
  3. Generate Makefile with:

- .PHONY declarations for non-file targets - .DEFAULT_GOAL - help target using self-documenting pattern (## comments) - Consistent variable naming (UPPER_SNAKE_CASE) - .ONESHELL when multi-line recipes need shared state

  1. Follow conventions from references/makefile-justfile.md

Mode: Justfile

Generate a justfile from task descriptions.

  1. Parse task descriptions from $ARGUMENTS
  2. Generate justfile with:

- Recipe documentation comments - Default recipe (first position or default alias) - Parameter declarations with defaults where sensible - set shell directive if non-default shell needed - set dotenv-load if environment variables are referenced

  1. Follow conventions from references/makefile-justfile.md

Canonical Vocabulary

Use these terms exactly throughout:

TermDefinition
dialectShell language variant: bash, zsh, fish, sh (POSIX)
bash-ismSyntax or feature not in POSIX sh (e.g., arrays, [[]])
shebang#! line specifying the interpreter
SC ruleA ShellCheck rule ID (e.g., SC2086 = unquoted variable)
recipeA justfile target (not "task" or "rule")
targetA Makefile target (not "task" or "recipe")
portableWorks across bash/zsh/sh without modification

Reference Files

Load ONE reference at a time. Do not preload all references into context.

FileContentRead When
references/shellcheck-rules.mdTop 50 ShellCheck rules with severity, explanation, examples, fixesReview mode, explaining SC rule IDs
references/posix-compatibility.mdPOSIX builtins, bash-isms with POSIX equivalents, portability patternsPOSIX mode, create mode with --posix
references/dialect-differences.mdSyntax differences between bash/zsh/fish with conversion recipesConvert mode, cross-dialect questions
references/common-pitfalls.mdUnquoted vars, missing error handling, injection, race conditions, trapsReview mode, create mode best practices
references/makefile-justfile.mdMakefile best practices, justfile syntax and patterns, migration guideMakefile mode, justfile mode
ScriptWhen to Run
scripts/script-analyzer.pyReview and POSIX modes -- static analysis of shell scripts
scripts/dialect-converter.pyConvert mode -- syntax conversion between dialects

Critical Rules

  1. Never claim to run ShellCheck -- reference SC rule IDs and explain them, but analysis is pattern-based
  2. Always use env-based shebangs (e.g., env bash), never hardcoded interpreter paths
  3. Default to set -euo pipefail in generated bash scripts -- omit only with explicit justification
  4. Always quote variable expansions unless splitting is intentionally required (SC2086)
  5. Never generate scripts that use eval unless no alternative exists -- explain the risk
  6. Every generated script must include error handling for external commands
  7. Generated Makefiles must include a .PHONY declaration and a help target
  8. Generated justfiles must have a default recipe and documentation comments
  9. Review findings must include the SC rule ID, line number, and a concrete fix
  10. Never modify the script being reviewed -- review is read-only
  11. Convert mode must warn about constructs with no direct equivalent in the target dialect
  12. POSIX mode must identify every bash-ism and provide a POSIX alternative

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.24%
按下载量换算37

Claude

31.29%
按下载量换算36

Cursor

18.62%
按下载量换算22

Gemini CLI

8.85%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills