Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

command-buildercommand 构建器

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

2

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bsamiee/parametric_forge --skill command-builder

简介

command-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于基于关键词、任务场景或来源线索的候选结果筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

[H1][COMMAND-BUILDER]

Dictum: *Reusable prompt templates reduce repetition and enforce consistency.*

Load commands from .claude/commands/ (project) or ~/.claude/commands/ (user). Filename becomes command name.

Tasks:

  1. Read index.md — Reference file listing for navigation
  2. Read workflow.md — 5-phase creation process
  3. Read variables.md — Argument capture, file references, skill loading
  4. Read hints.md — Argument-hint syntax, enum patterns
  5. (prose) Load style-standards skill — Voice, formatting, constraints
  6. Execute per workflow — UNDERSTAND, ACQUIRE, RESEARCH, AUTHOR, VALIDATE
  7. Validate — Quality gate; see §VALIDATION

[REFERENCE]: index.md — Complete reference file listing


[1][FRONTMATTER]

Dictum: *Declarative constraints gate command execution.*
---
description: Brief description shown in /help menu
argument-hint: [required-arg] [optional-arg?]
allowed-tools: Read, Write, Edit, Glob, Grep, Task, Bash, TodoWrite
model: opus
---
[INDEX][FIELD][TYPE][PURPOSE][SYNTAX]
[1]descriptionstring/help menu textVerb-first. <80 chars. Outcome-focused.
[2]argument-hintstringAutocomplete guidance[required] [optional?] [--flag].
[3]allowed-toolslistScoped tool permissionsComma-separated tool names.
[4]modelstringOverride default modelFull model ID or alias.

[IMPORTANT]:

  • [ALWAYS] Use --- delimiters (three dashes, no spaces).
  • [ALWAYS] Quote strings containing :, #, [, ], {, }.
  • [NEVER] Use tabs; YAML requires spaces.

[CRITICAL]:

  • [ALWAYS] Declare Read for every @path reference.
  • [ALWAYS] Declare Bash for every !command reference.
  • [NEVER] Omit required tools—command fails without output.

[2][MODELS]

Dictum: *Model selection balances capability against cost and latency.*

[CRITICAL] Session inherits default model. Override for specific capability requirements.

[INDEX][MODEL_ID][ALIAS][STRENGTH][LATENCY][COST]
[1]claude-opus-4-5-20251101opusComplex reasoningHighHigh
[2]claude-sonnet-4-5-20250929sonnetBalanced performanceMediumMedium
[3]claude-3-5-haiku-20241022haikuFast, simple tasksLowLow
[INDEX][CHARACTERISTIC][OPUS][SONNET][HAIKU]
[1]Multi-file scopeX
[2]Architectural impactX
[3]Standard developmentX
[4]Speed priorityX
[5]Deep analysisXX

[3][VARIABLES]

Dictum: *Dynamic substitution enables reusable commands.*
[INDEX][SYNTAX][CAPTURES][REQUIRED_TOOL][USE_WHEN]
[1]$ARGUMENTSAll args as stringNoneFree-form input
[2]$1, $2...Positional parametersNoneStructured multi-arg
[3]${1:-val}Default if missingNoneOptional parameters
[4]@pathInclude file contentsReadFile analysis
[5]!commandShell executionBashDynamic context

[CRITICAL]:

  • [NEVER] Mix $ARGUMENTS and $1-$N in same command.
  • [ALWAYS] Declare required tools for @path and !command.

→references/variables.md: Complete reference—examples, skill loading, anti-patterns.


[4][PATTERNS]

Dictum: *Canonical patterns accelerate development.*

[4.1][FILE_ANALYSIS]

---
description: Analyze file for issues
argument-hint: [file-path]
allowed-tools: Read
---
## Target
@$1
## Task
Identify security, performance, and code quality issues.

[4.2][MULTI_FILE_OPERATION]

---
description: Process files matching pattern
argument-hint: [glob-pattern]
allowed-tools: Read, Edit, Glob, TodoWrite
---
## Task
Match files via $1. Analyze content. Apply fixes. Track progress via TodoWrite.

[4.3][AGENT_WORKFLOW]

---
description: Multi-agent analysis
argument-hint: [target-folder]
allowed-tools: Task, Read, Glob, TodoWrite
---
## Task
1. Match files in $1 via Glob
2. Spawn analysis agents via Task
3. Synthesize findings, track via TodoWrite

[4.4][SKILL_CONTEXT]

---
description: Validate target against skill standards
argument-hint: [target] [focus?]
allowed-tools: Read, Task, Glob, Edit, TodoWrite
---
## Skill Context
@.claude/skills/[skill-name]/SKILL.md
@.claude/skills/[skill-name]/references/[domain]/*.md
## Task
Load context above. Spawn Task agents. Verify findings against loaded context. Apply corrections.

→templates/command-template.md — canonical template.


[5][ORGANIZATION]

Dictum: *Namespaces prevent command collision.*
[INDEX][SCOPE][LOCATION][USE_CASE]
[1]Personal~/.claude/commands/Individual workflows
[2]Project.claude/commands/Shared team workflows
[INDEX][CONVENTION][PATTERN][EXAMPLE]
[1]Verb-firstaction-targetcreate-component
[2]LowercaseNo capitalsreview-pr
[3]Hyphen-separatedNo underscoresrun-tests
[4]DescriptiveClear purposeanalyze-coverage
.claude/commands/
├── git/
│   ├── commit.md  -> /git:commit
│   └── pr.md      -> /git:pr
└── test/
    └── unit.md    -> /test:unit

[6][VALIDATION]

Dictum: *Validation gates prevent incomplete artifacts.*

[VERIFY] Completion:

  • Workflow: All 5 phases executed (UNDERSTAND → VALIDATE).
  • Frontmatter: Valid YAML, description present, tools declared.
  • Variables: No $ARGUMENTS + $1-$N mixing.
  • Tools: All @path have Read, all !command have Bash.
  • Quality: LOC < 125, verb-first naming.

[REFERENCE] Operational checklist: →validation.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.89%
按下载量换算23

Claude

31.07%
按下载量换算20

Cursor

19.82%
按下载量换算13

Gemini CLI

8.75%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/bsamiee/parametric_forge --skill command-builder 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills