Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

cli-forge-planCLI forge 计划

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bytelandtechnology/cli-forge --skill cli-forge-plan

简介

cli-forge-plan 将批准的设计合同转化为详细的 CLI 操作合同供后续阶段使用。

  • 适合定义每个命令、标志、输出格式和行为规则,回答“CLI 如何工作”。
  • 生成 cli-plan.yml 作为唯一事实来源,供 Scaffold、Extend 和 Validate 引用。
  • 安装前应确保上游设计合同已批准,避免因输入缺失导致失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

cli-forge Plan

Use this stage to translate the approved design contract into a detailed, actionable CLI contract that Scaffold, Extend, and Validate will consume as their authoritative reference.

Purpose

Define the detailed CLI contract: every command, every flag, every output format, every behavioral rule. This stage answers the question "How does the CLI work?" while the Design stage upstream answered "What is this skill?"

The cli-plan.yml produced by this stage is the single source of truth that Scaffold uses for template expansion, Extend uses for capability pre-checks, and Validate uses as the compliance baseline.

Canonical References

Entry Gate

#CheckSource
1design-contract.yml exists and is approvedDesign stage
2Skill scope is clear from the design contractDesign stage

Required Inputs

  • Approved design-contract.yml from the Design stage
  • User requirements for CLI behavior (commands, flags, formats)
  • Capability scope decisions (stream, repl, and daemon: in-scope or out-of-scope)

Workflow

  1. Load the approved design-contract.yml from .cli-forge/.
  2. Read ./planning-brief.md to load the shared constraints.
  3. Follow the detailed steps in ./instructions/plan-cli.md.
  4. Define the command tree:

- Primary CLI entrypoint - Subcommands (if any) - The help subcommand (always present) - The daemon subcommand group when daemon capability is in scope - Every command path must be classified as either a runnable leaf command or a non-leaf container for child subcommands, never both

  1. For each command, lock:

- Required flags with types, defaults, and descriptions - Optional flags with types, defaults, and descriptions - Supported output formats - Error format (always structured_stderr)

  1. Lock the invocation hierarchy:

- Shipped: <skill-name>... - Dev: cargo run --... - Release binary: ./target/release/<skill-name>...

  1. Lock the help behavior as four explicit scenarios:

- Leaf default: missing required leaf input stays a structured failure, not auto-help - Non-leaf default: top-level and non-leaf command paths auto-render human-readable help - Flag-driven: --help on any command path renders human-readable help - Structured: help subcommand with --format - Human-readable help must be man-like, with NAME, SYNOPSIS, DESCRIPTION, OPTIONS, FORMATS, EXAMPLES, and EXIT CODES in that order

  1. Lock capability scope — for each of stream, repl, and daemon, explicitly state in_scope or out_of_scope.
  2. If daemon is in scope, lock the daemon app-server contract:

- App-server mode - Single-instance default - Lifecycle commands: run, start, stop, restart, status - Client routing flags and daemonizable commands - Local IPC default, optional TCP, and auth expectations

  1. Lock runtime directory and Active Context behavior.
  2. Generate .cli-forge/cli-plan.yml using the format defined in ./contracts/cli-plan.yml.tpl.
  3. Present the CLI plan to the user for approval. Call the runtime's dialog-based chooser (e.g., AskUserQuestion) with the options approve and continue, request changes, or stop for now when it is available. If no dialog-based chooser is available, use a numbered text menu with the same three options and add Other: <custom response> as the fallback escape hatch. Accept exact replies 1, 2, or 3, or Other:.... If a numeric reply includes additional text, ask for clarification before proceeding. Do not require the user to type the full option label.

Outputs

  • .cli-forge/cli-plan.yml — approved detailed CLI contract

Exit Gate

#Check
1Command tree is fully defined
2No command path is both a leaf command and a container for subcommands
3Every command has its flags listed with types and defaults
4Output format strategy is locked
5Help behavior (leaf/non-leaf/--help/help) is defined with man-like output
6Each optional feature capability is explicitly marked in_scope or out_of_scope
7The daemon capability contract is locked or explicitly out of scope
8Runtime directory and Active Context behavior are defined
9cli-plan.yml is generated and approved

Guardrails

  • CRITICAL DIRECTIVE TO THE ASSISTANT: You MUST STOP execution and ask for the user's explicit approval after generating cli-plan.yml. Do NOT proceed to the Scaffold stage autonomously. Call the runtime's dialog-based chooser (e.g., AskUserQuestion) for approval when it is available, or use the standardized numbered text fallback with 1. approve and continue, 2. request changes, 3. stop for now, and Other: <custom response>. Never require the user to type the literal word approved.
  • Do not change the skill's purpose or positioning here. That work was done in the Design stage and is locked in design-contract.yml.
  • Do not begin implementing code. This stage produces a plan document, not source files.
  • Every decision in cli-plan.yml must be traceable to the planning brief constraints.
  • Do not define a hybrid command path that is both a runnable leaf and a parent for subcommands. Every command path must be exactly one of those shapes.
  • If stream, repl, or daemon is out of scope, say so explicitly. Do not leave the optional feature set undefined.
  • The daemon app-server design is documented in ./instructions/daemon-app-server.md and is the planning source of truth for daemon behavior. If scaffold, extend, or validate have not adopted that contract yet, call the mismatch out explicitly instead of claiming end-to-end implementation parity.
  • When the Extend stage later adds a feature, it must update cli-plan.yml to reflect the new capability. Plan is the living contract.

Next Step

Continue with ../cli-forge-scaffold/SKILL.md to create the project from the approved plan.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.93%
按下载量换算64

Claude

29.45%
按下载量换算51

Cursor

18.09%
按下载量换算31

Gemini CLI

9.73%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills