Skip to content

Commit e156c2b

Browse files
committed
fix: restructure ccs cheat to show all commands accurately
Was missing /wrapup, /team-standup, /team-log. Reorganized into 5 clear sections: Slash Commands (6 - all Claude Code commands in one place), Search & Navigate (merged, trimmed), Team (ccs team CLI commands), Maintain (stats/doctor/update/ix), Planning Files. Removed misplaced ghost mcp status from team section.
1 parent e6f9080 commit e156c2b

File tree

1 file changed

+21
-22
lines changed

1 file changed

+21
-22
lines changed

bin/ccs

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -390,38 +390,37 @@ print()
390390
echo -e "${B} Claude Code Power Stack - Quick Reference${N}"
391391
echo " ==========================================="
392392
echo ""
393-
echo -e " ${Y}SESSION${N}"
394-
echo -e " /standup Morning standup summary"
395-
echo -e " /rename-session Name session: project-type-desc"
396-
echo -e " /plan Create task_plan.md + findings.md + progress.md"
393+
R='\033[0;31m' # red
394+
echo -e " ${Y}SLASH COMMANDS (inside Claude Code)${N}"
395+
echo -e " /standup Morning standup"
396+
echo -e " /wrapup End-of-session summary + team log"
397+
echo -e " /rename-session Name session: project-type-desc"
398+
echo -e " /plan Persistent planning files"
399+
echo -e " /team-standup Team standup (via Claude)"
400+
echo -e " /team-log Log a decision for your team"
397401
echo ""
398-
echo -e " ${C}SEARCH${N}"
402+
echo -e " ${C}SEARCH & NAVIGATE${N}"
399403
echo -e " ccs \"query\" Search all projects"
400404
echo -e " ccs here \"query\" Search current project only"
401405
echo -e " ccs \"query\" -d 7 Last 7 days"
402-
echo -e " ccs \"query\" --since DATE Since specific date"
406+
echo -e " ccs go 1 Resume result #1"
407+
echo -e " ccs ls List sessions (or: ccs ls here)"
403408
echo ""
404-
echo -e " ${G}NAVIGATE${N}"
405-
echo -e " ccs go 1 Resume result #1 from last search"
406-
echo -e " ccs ls List recent sessions (7 days)"
407-
echo -e " ccs ls 30 List last 30 days"
408-
echo ""
409-
echo -e " ${P}MAINTAIN${N}"
410-
echo -e " ccs stats Usage dashboard"
411-
echo -e " ccs doctor Health check"
412-
echo -e " ccs update Update the entire Power Stack"
413-
echo -e " ccs ix Re-index conversations"
414-
echo ""
415-
echo -e " ${Y}TEAM (git-shared, append-only)${N}"
409+
echo -e " ${G}TEAM${N}"
416410
echo -e " ccs team Show recent team activity"
417-
echo -e " ccs team standup Morning standup (no Claude needed)"
418-
echo -e " ccs team log d <msg> Log a decision (d/f/b/done/h)"
411+
echo -e " ccs team standup Team standup (terminal, no Claude)"
412+
echo -e " ccs team log d <msg> Decision (d/f/b/done/h)"
419413
echo -e " ccs team search <q> Search team log"
420414
echo -e " ccs team sync Commit + push team log"
421415
echo -e " ccs team init Initialize team mode"
422-
echo -e " ghost mcp status Ghost MCP health"
423416
echo ""
424-
echo -e " ${Y}PLANNING FILES (created by /plan)${N}"
417+
echo -e " ${P}MAINTAIN${N}"
418+
echo -e " ccs stats Usage dashboard"
419+
echo -e " ccs doctor Health check + version"
420+
echo -e " ccs update Update the stack"
421+
echo -e " ccs ix Re-index conversations"
422+
echo ""
423+
echo -e " ${R}PLANNING FILES (created by /plan)${N}"
425424
echo -e " task_plan.md Phases, decisions, errors"
426425
echo -e " findings.md Research notes (update every 2 searches!)"
427426
echo -e " progress.md Session log"

0 commit comments

Comments
 (0)