ccc-knowledgelisted
Install: claude install-skill KevinZai/commander
# /ccc-knowledge
> Placeholders like ~~knowledge base refer to connected tools. See [CONNECTORS.md](../../CONNECTORS.md).
Search and surface lessons from the CC Commander knowledge base at `~/.claude/commander/knowledge/`. Lessons are captured by the knowledge-capture hook (file-level edits) and manual entries created via this skill — no manual input required for basic capture.
## Quick Mode (default)
Show the 3 most recent lessons and offer to search or browse:
```bash
ls -t ~/.claude/commander/knowledge/*.json 2>/dev/null | head -3
```
Read each file, display one line per lesson:
```
[2026-04-10] web | success — Build Next.js dashboard with Tremor charts
[2026-04-09] api | error — Stripe webhook signature validation failed
[2026-04-08] cli | success — Build RTK proxy CLI with Rust + clap
```
Then ask via AskUserQuestion:
- "Search by topic"
- "Show all recent lessons (10)"
- "Browse by category"
- "View stats"
- "Back to main menu"
## Power Mode
Full browse, search, and filter. Activate by passing `--power` or `browse` as argument.
### Search by Topic
```bash
grep -rl "KEYWORD" ~/.claude/commander/knowledge/ 2>/dev/null
```
Read matching files. Extract `description`, `outcome`, `successPatterns`, `errorPatterns`. Format:
```
[2026-03-15] web | success
Task: Build Next.js dashboard with auth
Worked: shadcn/ui init before Tremor, use server actions for mutations
Failed: n/a
Stack: Next.js 14, TypeScript, Prisma, NextAuth
```
Example queries: "next.js" → Next.js