Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

ccw-help特定常规武器公约帮助

Agent Skill

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

总安装

1,592

周安装

67

GitHub Stars

1,881

下载量

557
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ccw-help(特定常规武器公约帮助)
来源仓库:https://github.com/catlog22/claude-code-workflow
仓库路径:skills/ccw-help
安装命令:
npx skills add https://github.com/catlog22/claude-code-workflow --skill ccw-help
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/catlog22/claude-code-workflow --skill ccw-help

简介

ccw-help 提供命令搜索、文档查看与 Skill/Team 浏览功能,是 Claude Code Workflow 的智能助手入口。

  • 支持自然语言查询命令用途与推荐下一步操作,内置 command.json 元数据驱动的路由机制。
  • 可解析 flow.next_steps 字段生成个性化建议,但推荐结果仅供参考,实际选择需结合上下文判断。
  • 涉及敏感操作(如删除、推送)时会主动提示风险,并要求二次确认后方可执行写入动作。
  • 本技能为只读导航工具,不替代具体技能执行,复杂任务仍需调用对应 skill 完成实质工作。

SKILL.md

CCW-Help Skill

CCW 命令帮助系统,提供命令搜索、推荐、文档查看、Skill/Team 浏览功能。

Trigger Conditions

  • 关键词: "ccw-help", "ccw-issue", "帮助", "命令", "怎么用", "ccw 怎么用", "工作流", "skill", "team"
  • 场景: 询问命令用法、搜索命令、请求下一步建议、询问任务应该用哪个工作流、浏览 Skill/Team 目录

Operation Modes

Mode 1: Command Search

Triggers: "搜索命令", "find command", "search"

Process:

  1. Query command.json commands array
  2. Filter by name, description, category
  3. Present top 3-5 relevant commands

Mode 2: Smart Recommendations

Triggers: "下一步", "what's next", "推荐"

Process:

  1. Query command's flow.next_steps in command.json
  2. Explain WHY each recommendation fits

Mode 3: Documentation

Triggers: "怎么用", "how to use", "详情"

Process:

  1. Locate command in command.json
  2. Read source file via source path
  3. Provide context-specific examples

Mode 4: Beginner Onboarding

Triggers: "新手", "getting started", "常用命令"

Process:

  1. Query essential_commands array
  2. Guide appropriate workflow entry point

Mode 5: CCW Command Orchestration

Triggers: "ccw ", "自动工作流", "自动选择工作流", "帮我规划"

Process:

  1. Analyze user intent (task type, complexity, clarity)
  2. Auto-select workflow level (1-4 or Issue)
  3. Build command chain based on workflow
  4. Get user confirmation
  5. Execute chain with TODO tracking

Supported Workflows (参考 ccw.md):

  • Level 1 (Lite-Lite-Lite): Ultra-simple quick tasks
  • Level 2 (Rapid/Hotfix): Bug fixes, simple features, documentation
  • Level 2.5 (Rapid-to-Issue): Bridge from quick planning to issue workflow
  • Level 3 (Coupled): Complex features with planning, execution, review, tests
  • Level 3 Variants:

- TDD workflows (test-first development) - Test-fix workflows (debug failing tests) - Review workflows (code review and fixes) - UI design workflows - Multi-CLI collaborative workflows - Cycle workflows (integration-test, refactor)

  • Level 4 (Full): Exploratory tasks with brainstorming
  • With-File Workflows: Documented exploration with multi-CLI collaboration

- brainstorm-with-file: Multi-perspective ideation → workflow-plan → workflow-execute - debug-with-file: Hypothesis-driven debugging (standalone) - analyze-with-file: Collaborative analysis → workflow-lite-plan - collaborative-plan-with-file: Multi-agent planning → unified-execute - roadmap-with-file: Strategic requirement roadmap → team-planex

  • Issue Workflow: Batch issue discovery, planning, queueing, execution
  • Team Workflow: team-planex wave pipeline for parallel execution

Mode 6: Issue Reporting

Triggers: "ccw-issue", "报告 bug"

Process:

  1. Use AskUserQuestion to gather context
  2. Generate structured issue template

Mode 7: Skill & Team Browsing

Triggers: "skill", "team", "技能", "团队", "有哪些 skill", "team 怎么用"

Process:

  1. Query command.json skills array
  2. Filter by category: workflow / team / review / meta / utility / standalone
  3. Present categorized skill list with descriptions
  4. For team skills, explain team architecture and usage patterns

Data Source

Single source of truth: command.json

FieldPurpose
commands[]Flat command list with metadata
commands[].flowRelationships (next_steps, prerequisites)
agents[]Agent directory
skills[]Skill directory with categories
skills[].is_teamWhether skill uses team architecture
essential_commands[]Core commands list

Source Path Format

source 字段是相对路径(从 skills/ccw-help/ 目录):

{
  "name": "lite-plan",
  "source": "../../../commands/workflow/lite-plan.md"
}

Skill Catalog

Workflow Skills (核心工作流)

Skill内部流水线触发词
workflow-lite-planexplore → plan → confirm → execute"lite-plan", 快速任务
workflow-plansession → context → convention → gen → verify"workflow-plan", 正式规划
workflow-executesession discovery → task processing → commit"workflow-execute", 执行
workflow-tdd-plan6-phase TDD plan → verify"tdd-plan", TDD 开发
workflow-test-fixsession → context → analysis → gen → cycle"test-fix", 测试修复
workflow-multi-cli-planACE context → CLI discussion → plan → execute"multi-cli", 多CLI协作
workflow-skill-designerMeta-skill for designing workflow skills"skill-designer"

Team Skills (团队协作)

Team Skills 使用 team-worker agent 架构,Coordinator 编排流水线,Workers 是加载了 role-spec 的 team-worker agents。

Skill用途架构
team-planex规划+执行 wave pipelineplanner + executor, 适合清晰 issue/roadmap
team-lifecycle完整生命周期 (spec/impl/test)team-worker agents with role-specs
team-lifecycle-v4优化版生命周期Optimized pipeline
team-lifecycle-v3基础版生命周期All roles invoke unified skill
team-coordinate通用动态团队协调运行时动态生成 role-specs
team-coordinate通用团队协调 v1Dynamic role generation
team-brainstorm团队头脑风暴Multi-perspective analysis
team-frontend前端开发团队Frontend specialists
team-issueIssue 解决团队Issue resolution pipeline
team-iterdev迭代开发团队Iterative development
team-review代码扫描/漏洞审查Scanning + vulnerability review
team-roadmap-devRoadmap 驱动开发Requirement → implementation
team-tech-debt技术债务清理Debt identification + cleanup
team-testing测试团队Test planning + execution
team-quality-assuranceQA 团队Quality assurance pipeline
team-uidesignUI 设计团队Design system + prototyping
team-ultra-analyze深度协作分析Deep collaborative analysis
team-executor轻量执行 (恢复会话)Resume existing sessions
team-executor轻量执行 v2Improved session resumption

Standalone Skills (独立技能)

Skill用途
brainstorm双模头脑风暴 (auto pipeline / single role)
review-code多维度代码审查
review-cycle审查+自动修复编排
spec-generator6阶段规格文档链 (product-brief → PRD → architecture → epics)
issue-manage交互式 Issue 管理 (CRUD)
memory-capture统一记忆捕获 (session compact / quick tip)
memory-manage统一记忆管理 (CLAUDE.md + documentation)
command-generator命令文件生成器
skill-generatorMeta-skill: 创建新 Skill
skill-tuningSkill 诊断与优化

Workflow Mapping (CCW Auto-Route)

CCW 根据任务意图自动选择工作流级别(参考 ccw.md):

输入示例类型级别流水线
"Add API endpoint"feature (low)2workflow-lite-plan → workflow-test-fix
"Fix login timeout"bugfix2workflow-lite-plan → workflow-test-fix
"协作分析: 认证架构"analyze-file3analyze-with-file → workflow-lite-plan
"重构 auth 模块"refactor3workflow:refactor-cycle
"multi-cli: API设计"multi-cli3workflow-multi-cli-plan → workflow-test-fix
"头脑风暴: 通知系统"brainstorm4brainstorm-with-file → workflow-plan → workflow-execute
"roadmap: OAuth + 2FA"roadmap4roadmap-with-file → team-planex
"specification: 用户系统"spec-driven4spec-generator → workflow-plan → workflow-execute
"team planex: 用户系统"team-planexTeamteam-planex

Slash Commands

/ccw "task description"          # Auto-select workflow and execute
/ccw-help                        # General help entry
/ccw-help search <keyword>       # Search commands
/ccw-help next <command>         # Get next step suggestions
/ccw-help skills                 # Browse skill catalog
/ccw-help teams                  # Browse team skills
/ccw-issue                       # Issue reporting

CCW Command Examples

/ccw "Add user authentication"          # → auto-select level 2-3
/ccw "Fix memory leak in WebSocket"     # → auto-select bugfix workflow
/ccw "Implement with TDD"               # → detect TDD, use tdd-plan → execute → tdd-verify
/ccw "头脑风暴: 用户通知系统"          # → detect brainstorm, use brainstorm-with-file
/ccw "深度调试: 系统随机崩溃"          # → detect debug-file, use debug-with-file
/ccw "协作分析: 认证架构设计"          # → detect analyze-file, use analyze-with-file
/ccw "roadmap: OAuth + 2FA 路线图"     # → roadmap-with-file → team-planex
/ccw "集成测试: 支付流程"              # → integration-test-cycle
/ccw "重构 auth 模块"                  # → refactor-cycle

Maintenance

Update Mechanism

CCW-Help skill supports manual updates through user confirmation dialog. Script scans commands/, agents/, and skills/ directories to regenerate all indexes.

How to Update

Option 1: When executing the skill, user will be prompted:

Would you like to update CCW-Help command index?
- Yes: Run auto-update and regenerate command.json
- No: Use current index

Option 2: Manual update

cd D:/Claude_dms3/.claude/skills/ccw-help
python scripts/auto-update.py

This runs analyze_commands.py to scan commands/, agents/, and skills/ directories and regenerate command.json + all index files.

Update Scripts

  • auto-update.py: Simple wrapper that runs analyze_commands.py
  • analyze_commands.py: Scans directories and generates command/agent/skill indexes

Generated Index Files

FileContent
command.jsonMaster index: commands + agents + skills
index/all-commands.jsonFlat command list
index/all-agents.jsonAgent directory
index/all-skills.jsonSkill directory with metadata
index/skills-by-category.jsonSkills grouped by category
index/by-category.jsonCommands by category
index/by-use-case.jsonCommands by usage scenario
index/essential-commands.jsonCore commands for onboarding
index/command-relationships.jsonCommand flow relationships

Statistics

  • Commands: 50+
  • Agents: 22
  • Skills: 36+ (7 workflow, 19 team, 10+ standalone/utility)
  • Workflows: 6 main levels + 5 with-file variants + 2 cycle variants
  • Essential: 10 core commands

Core Principle

智能整合,非模板复制

  • 理解用户具体情况
  • 整合多个来源信息
  • 定制示例和说明

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

30.17%
按下载量换算168

Cursor

19.8%
按下载量换算110

windsurf

18.44%
按下载量换算103

OpenCode

12.23%
按下载量换算68

Codex

7.92%
按下载量换算44

Antigravity

3.48%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills