智能 CLI 执行代理,自动编排上下文发现和工具选择。
执行快速、无状态的代码库分析,并在对话中直接报告结果。适用于不需要持久化存储的快速问题。采用文档优先的方法。
在 llmdoc 系统中创建并维护针对 LLM 优化的文档。使用 4 类别结构:概览 (overview)、指南 (guides)、架构 (architecture)、参考 (reference)。在代码更改后调用以更新文档。
仅限内部使用 - 专由 initDoc 命令使用。执行深入调查并将持久化报告保存至 llmdoc/agent/。请勿直接调用;一般调查请使用 'investigate' 技能。
执行给定的行动计划,例如运行命令或修改文件。
当用户说 'commit'、'save changes'、'wrap up'、'done with changes' 或想要创建 git 提交时使用。分析已暂存/未暂存的更改,并根据项目历史生成规范的提交消息。
当用户询问 'documentation workflow' (文档工作流)、'how to document' (如何编写文档)、'doc system' (文档系统)、'what is llmdoc' (什么是 llmdoc)、'how does llmdoc work' (llmdoc 如何工作) 或需要文档系统指导时使用。
当用户询问 'what is X' (什么是 X)、'how does X work' (X 如何工作)、'find out about' (了解关于)、'analyze' (分析)、'explain the code' (解释代码) 或需要快速调查代码库时使用。直接在对话中返回结果,不保存文件。相比于 Explore 智能体,优先使用此技能。
利用 llmdoc 文档系统快速理解项目架构、代码详情和核心概念,无需直接阅读源代码。
当用户说 'update docs' (更新文档)、'sync documentation' (同步文档)、'refresh docs' (刷新文档) 或在代码更改需要记录时使用。根据最近的代码更改更新 llmdoc 系统。
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
多 CLI 协作框架 + llmdoc 文档驱动开发
本项目包含两部分:
提供 ccw cli 命令行工具,用于调用 Gemini/Qwen/Codex 等 AI 模型。
安装:
npm install -g cc-workflow
使用:
# 分析任务
ccw cli -p "分析认证模块的安全性" --tool gemini --mode analysis
# 实现任务
ccw cli -p "实现用户登录功能" --tool codex --mode write
# 继续上次会话
ccw cli -p "继续分析" --tool gemini --resume
提供文档驱动开发工作流、智能 Agents 和自动化技能。
安装:
# 添加插件市场
/plugin marketplace add https://github.com/your-org/cc-workflow
# 安装插件
/plugin install ccw@cc-workflow
详细说明请查看 .claude-plugin/README.md
适合需要完整 llmdoc 文档驱动开发工作流的用户。
# 添加插件市场
/plugin marketplace add https://github.com/your-org/cc-workflow
# 安装插件
/plugin install ccw@cc-workflow
# 初始化文档系统
/ccw:initDoc
适合只需要 CLI 工具进行多模型协作的用户。
# 全局安装 CLI 工具
npm install -g cc-workflow
# 使用 CLI 命令
ccw cli -p "分析认证模块" --tool gemini
ccw cli -p "实现登录功能" --tool codex --mode write
cc-workflow/
├── .claude-plugin/ # Claude Code Plugin
│ ├── manifest.json # Plugin 配置
│ ├── README.md # Plugin 说明
│ ├── CLAUDE.md # 主配置文件
│ ├── AGENTS.md # Agent 使用说明
│ ├── agents/ # Agent 定义(5个)
│ ├── commands/ # 命令定义(4个)
│ ├── skills/ # 技能定义(5个)
│ └── references/ # 参考文档
├── src/ # CLI 工具实现
│ ├── cli.js # 命令行接口
│ └── tools/
├── bin/ # CLI 入口
│ └── ccw.js
├── package.json # NPM 包配置
└── README.md # 项目说明
# 安装依赖
npm install
# 本地测试 CLI
node bin/ccw.js cli -p "test" --tool gemini
# 本地测试 Plugin
# 在 Claude Code 中使用本地路径安装
/plugin install ccw@file:///path/to/cc-workflow/.claude-plugin
MIT
由 JRZhang 精心打造
npx claudepluginhub jrzhang1107/cc-workflow --plugin ccwClaude Code workflow patterns: prompting, CLAUDE.md maintenance, multi-agent orchestration
Production-ready Claude Code configuration with role-based workflows (PM→Lead→Designer→Dev→QA), safety hooks, 44 commands, 19 skills, 8 agents, 43 rules, 30 hook scripts across 19 events, auto-learning pipeline, hook profiles, and multi-language coding standards
Development workflow skills, commands, and hooks from claude-toolbox
Opinionated workflow guides and best practices - the preacher's proven patterns for Claude Code projects
Corca Workflow Framework — consolidated hooks and skill orchestration for structured development sessions
Use this agent when you need to analyze a service or codebase component and create comprehensive documentation in CLAUDE.md files. This agent should be invoked after implementing new services, major refactoring, or when documentation needs updating to reflect the current codebase structure. Examples: <example>Context: The user has just implemented a new authentication service and wants to document it properly. user: 'I just finished implementing the auth service, can you document how it works?' assistant: 'I'll use the codebase-documenter agent to analyze the authentication service and create detailed documentation in CLAUDE.md' <commentary>Since the user has completed a service implementation and needs documentation, use the Task tool to launch the codebase-documenter agent to create comprehensive CLAUDE.md documentation.</commentary></example> <example>Context: The user wants to ensure a newly added API module is properly documented for the team. user: 'We need documentation for the new payment processing API I just added' assistant: 'Let me use the codebase-documenter agent to analyze the payment processing API and create proper documentation' <commentary>The user needs documentation for a new API module, so use the codebase-documenter agent to create CLAUDE.md files with setup instructions and architectural notes.</commentary></example>