$ terminal

TheCLIPower Guide

For developers who think in terminal commands. Every slash command, every workflow, all in one place.

codymaster — node /opt/homebrew/bin/cm
[dev@macbook-pro ~/proj] %cm
██████╗ ██████╗ ██████╗ ██╗ ██╗ ██╔════╝██╔═══██╗██╔══██╗╚██╗ ██╔╝ ██║ ██║ ██║██║ ██║ ╚████╔╝ ██║ ██║ ██║██║ ██║ ╚██╔╝ ╚██████╗╚██████╔╝██████╔╝ ██║ ╚═════╝ ╚═════╝ ╚═════╝ ╚═╝
Cody v3.4.0
33 Skills. Ship 10x faster.
Dashboard: http://localhost:6969
Dashboard:  ● RUNNING  http://localhost:6969
? Quick menu: › ↑↓ navigate · Enter select · Ctrl+C exit
 📊 Dashboard — Open in browser
  📋 My Tasks
  📈 Status
  🧩 Browse Skills
  ➕ Add a Task
  ⚡ Install/Update Skills
  ❓ Help

// ONBOARDING

3 Commands to Get Going

Copy your skills folder, pick a command, and let AI do the rest.

zsh — Getting Started
# 1. Install — just copy the skills folder to your project
$ cp -r codymaster/skills/ ./skills/

# 2. Start autonomous mode — AI picks the right skills
$ /cm-start "Build a landing page for my SaaS product"

# 3. Check progress anytime
$ /cm-status
✓ Identity verified (omisocial/github)
✓ Plan approved (implementation_plan.md)
⧖ Building components (3/7 done)
○ Tests pending
○ Deploy pending

// EXTENSION

Mission Control Dashboard

For users who need a shared mission control. Run cm dashboard or click the menu to orchestrate multiple AI agents (Claude, Antigravity) across all your projects in a visual Kanban board.

Dashboard

// SCENARIOS

Common Workflow Recipes

Copy-paste these into your AI chat. Each recipe chains skills in the right order.

🚀 New Project (Full Lifecycle)
new-project.sh
# Verify identity first
$ /cm-identity-guard

# Scaffold everything
$ /cm-project-bootstrap

# Plan your first feature
$ /cm-planning "User auth with email + OAuth"

# Build with TDD
$ /cm-tdd

# Deploy when ready
$ /cm-safe-deploy
🐛 Bug Fix (Root Cause First)
bugfix.sh
# Isolate in a worktree
$ /cm-git-worktrees fix/login-crash

# Find the real cause
$ /cm-debugging "Login page crashes on submit"

# Write regression test, then fix
$ /cm-tdd

# Review and merge
$ /cm-code-review
🌍 i18n Translation Batch
i18n.sh
# Translate a page to all languages
$ /cm-safe-i18n "Translate pricing.html to vi, zh, ko, hi, ru"

# Outputs:
✓ Extracted 47 strings
✓ Translated to 5 languages (parallel)
✓ Passed 8/8 audit gates
✓ Updated en.json, vi.json, zh.json...
🎨 UI Redesign
redesign.sh
# Analyze current design
$ /cm-brainstorm-idea "Improve conversion on pricing"

# Design with UX laws
$ /cm-ux-master

# Preview before coding
$ /cm-ui-preview

# Plan the implementation
$ /cm-planning

// CHEAT SHEET

All 33 Skills at a Glance

The complete reference. Copy any command and paste it in your AI chat.

Command Category What It Does
/cm-startCommandAutonomous mode — AI picks skills based on your goal
/cm-statusCommandView progress summary of current tasks
/cm-dashboardCommandOpen visual Kanban board to track work
/cm-planningEngineeringExplore intent, write implementation plan before coding
/cm-tddEngineeringWrite tests first, then implement (RED → GREEN → REFACTOR)
/cm-debuggingEngineering5-phase root cause analysis before fixing
/cm-executionEngineeringBatch, subagent, or parallel execution modes
/cm-code-reviewEngineeringReview lifecycle — request, handle feedback, merge
/cm-git-worktreesEngineeringIsolated git worktrees for feature branches
/cm-continuityOperationsWorking memory across sessions via CONTINUITY.md
/cm-terminalOperationsEnforce progress logging and error-stop behavior
/cm-skill-chainOperationsCompose skills into automated pipelines
/cm-skill-masteryOperationsWhen to invoke skills, how to create new ones
/cm-deep-searchOperationsSemantic codebase search for large projects
/cm-identity-guardSecurityVerify correct account before push/deploy
/cm-secret-shieldSecurityPre-commit secret scanning, blocks leaked keys
/cm-safe-deploySecurity8-gate deploy pipeline with rollback
/cm-quality-gateSecurityEvidence-based verification before completion
/cm-test-gateSecuritySet up reliable test infrastructure
/cm-safe-i18nSecuritySafe multi-language translation with 8 audit gates
/cm-brainstorm-ideaProductMulti-dimensional analysis with 9 Windows + Double Diamond
/cm-ux-masterProductDesign system with 48 UX Laws, Harvester v4
/cm-ui-previewProductVisual UI preview via Google Stitch / Pencil
/cm-jtbdProductJobs-To-Be-Done customer discovery
/cm-project-bootstrapProductFull project scaffold from day 0
/cm-dockitProductAuto-generate docs, SOPs, API references
/cm-content-factoryGrowthAI content engine with multi-agent support
/cm-ads-trackerGrowthFull pixel + CAPI tracking setup
/cro-methodologyGrowthConversion audit + A/B test design
/cm-readitGrowthAudio reader + voice CRO triggers
/cm-how-it-workCommandFull workflow guide from idea to production
/cm-skill-indexCommandProgressive skill discovery (3-layer loading)
/skill-creator-ultraCommandCreate new skills from your processes

// BEST PRACTICES

Power User Tips & Exceptions

Level up your workflow and learn how to handle edge cases.

Combine Skills in One Prompt

Reference multiple skills: @cm-brainstorm-idea @cm-ux-master @cm-planning — AI chains them automatically in the right order.

🔄

Resume After a Break

Start every new session with /cm-continuity. AI reads CONTINUITY.md and picks up exactly where you left off — no context lost.

🌿

Isolate Risky Work

Use /cm-git-worktrees before any large refactor. Creates a separate directory so your main branch stays clean.

🏃

Parallel Execution Exception

If a task fails during full autonomous mode, switch to /cm-execution in parallel mode to isolate subagents to single tasks.

🛡️

Pre-Push Safety

Always run /cm-identity-guard + /cm-secret-shield before pushing. This catches wrong-account deploys and leaked API keys.

Context Overload Loop

If AI starts looping or forgetting rules, STOP. Do not keep prompting. Run /cm-continuity to summarize, then start a fresh chat session.

Ready to ship from the terminal?

Install the skills, type your first command, and let AI handle the rest.

Get Started → Read the Playbook →