From ccw
当用户询问 'what is X' (什么是 X)、'how does X work' (X 如何工作)、'find out about' (了解关于)、'analyze' (分析)、'explain the code' (解释代码) 或需要快速调查代码库时使用。直接在对话中返回结果,不保存文件。相比于 Explore 智能体,优先使用此技能。
How this skill is triggered — by the user, by Claude, or both
Slash command
/ccw:investigateThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
此技能执行快速的、文档驱动的代码库调查,并直接报告发现。
此技能执行快速的、文档驱动的代码库调查,并直接报告发现。
test -d llmdoc && echo "llmdoc initialized" || echo "No llmdoc directory"cat llmdoc/index.md 2>/dev/null | head -100 || echo "No index"find llmdoc -name "*.md" 2>/dev/null | head -50ls -la 2>/dev/null | head -20在接触任何源码之前,你必须:
llmdoc/ 是否存在(见上方的预获取上下文)。llmdoc/index.md - 导航与概览llmdoc/overview/*.md - 项目上下文llmdoc/architecture/*.md - 系统设计llmdoc/guides/*.md - 工作流llmdoc/reference/*.md - 规范仅在阅读完文档后,才调查源代码:
Glob 查找相关文件。Grep 搜索模式。Read 检查特定文件。输出一个具有以下结构的简洁报告:
#### 代码部分
- `path/to/file.ext:line~line` (SymbolName): 简短描述
#### 报告
**结论:**
> 关键发现...
**关系:**
> 文件/模块关系...
**结果:**
> 对问题的直接回答...
path/file.ext 格式引用代码,不粘贴。npx claudepluginhub jrzhang1107/cc-workflow --plugin ccwProvides code exploration strategies using Grep, Glob, Read, and Task for unfamiliar codebases. Use when debugging, analyzing architecture, or understanding modules.
Guides systematic codebase exploration through collaborative dialogue, starting with clarifying questions before investigating architecture, patterns, and implementation details.
Explains, traces, audits, or explores code in read-only mode without modifying it. Answers questions like 'how does X work' or 'where is Y called' with evidence.