Skip to content

Skills Library ​

Quick Reference

  • Total Skills: 33 across 6 domains
  • Format: Universal β€” works on any AI coding platform
  • Open Source: Full SKILL.md visible for every skill
  • License: MIT

Cody Master skills are the instructions that turn AI agents into disciplined engineers. Each skill is a SKILL.md file with structured protocols any AI agent can follow. Browse them all below β€” nothing is hidden.

πŸ”§ Engineering ​

Skills that enforce code quality, testing, and review processes.

SkillDescriptionFull Docs
cm-tddRed-Green-Refactor cycle β€” no production code without a failing test first.View β†’
cm-debuggingSystematic 5-phase root cause investigation before any fix.View β†’
cm-quality-gateEvidence-based verification: test gates, blind review, anti-sycophancy, security scan.View β†’
cm-test-gateSetup 4-layer test infrastructure (unit β†’ integration β†’ e2e β†’ security scan) for any stack.View β†’
cm-code-reviewFull PR lifecycle β€” request reviews, handle feedback, complete branch integration.View β†’

βš™οΈ Operations ​

Skills that ensure safe deployment, isolation, and secret management.

SkillDescriptionFull Docs
cm-safe-deployMulti-gate deploy pipeline: secret scan β†’ syntax β†’ test β†’ build β†’ deploy β†’ smoke test.View β†’
cm-identity-guardVerify project identity before push, Cloudflare, or Supabase operations. Prevents wrong-account deploys.View β†’
cm-git-worktreesIsolated git worktrees for parallel feature work β€” smart directory selection and safety checks.View β†’
cm-terminalSafe terminal protocol β€” progress logging, output reading, error-stop.View β†’
cm-secret-shieldDefense-in-depth: pre-commit hooks (Gitleaks), repo-wide scan, token lifecycle management.View β†’
cm-safe-i18nMass i18n conversion β€” multi-pass batching, parallel dispatch, 8 audit gates. Battle-tested.View β†’

🎨 Product ​

Skills for planning, design, documentation, and bootstrapping.

SkillDescriptionFull Docs
cm-brainstorm-ideaStrategic analysis gate: 9 Windows (TRIZ) + Double Diamond β†’ 2-3 qualified options for existing products.View β†’
cm-planningBrainstorm intent β†’ write implementation plan β†’ coordinate execution. Required before complex tasks.View β†’
cm-ux-masterUltimate design intelligence: 48 UX Laws, 37 Design Tests, Figma & Stitch integration, BM25 search.View β†’
cm-ui-previewAI-powered UI generation via Google Stitch MCP. Stitch Build Loop + Prompt Optimization pipeline.View β†’
cm-dockitKnowledge systematization engine β€” generates tech docs, SOPs, API references as VitePress or Markdown.View β†’
cm-readitWeb audio engine: TTS reader (SpeechSynthesis), pre-recorded MP3 player, Voice CRO trigger system.View β†’
cm-project-bootstrapFull project setup from Day 0 β€” design system, CI, staging, i18n, SEO, AGENTS.md, 8-gate pipeline.View β†’
cm-jtbdCustomer discovery via JTBD theory β€” Switch Interviews, JTBD Canvas, Opportunity Scoring.View β†’

πŸ“ˆ Growth ​

Skills for content creation, marketing, and conversion optimization.

SkillDescriptionFull Docs
cm-content-factorySelf-learning content engine: StoryBrand, Cialdini, SUCCESs, Hook Model, JTBD, CRO. Research β†’ generate β†’ audit β†’ deploy.View β†’
cm-ads-trackerComplete conversion tracking: Facebook/Meta Pixel + CAPI, TikTok Pixel, Google Ads, GTM.View β†’
cro-methodologyCRO audit: funnel mapping β†’ persuasion assets β†’ objection handling β†’ A/B test design.View β†’

🎯 Orchestration ​

Skills that coordinate workflows, manage memory, and enable autonomous execution.

SkillDescriptionFull Docs
cm-executionExecute plans in 4 modes: Manual / Parallel / Subagent / RARV batch.View β†’
cm-continuityWorking memory protocol β€” 4-Tier Memory System, context persistence, learnings across sessions.View β†’
cm-skill-chainCompose skills into automated pipelines β€” 5 built-in chains (feature-dev, bug-fix, content-launch…).View β†’
cm-skill-indexProgressive disclosure index β€” 90% token savings on skill discovery. Always loaded at session start.View β†’
cm-skill-masteryMeta-skill: when to invoke which skill, how to create new skills, skill discovery guide.View β†’
cm-deep-searchSemantic search via qmd β€” BM25 + Vector + LLM re-ranking for large codebases (>200 src files).View β†’
cm-how-it-workComplete vibe coding guide β€” 6 phases, 33 skills, 9 golden rules. Read this first if you're new.View β†’
cm-startStart the full CM workflow from objective β†’ plan β†’ TDD implement β†’ verify β†’ done.β€”
cm-dashboardRender Kanban board from cm-tasks.json β€” visual TO DO / IN PROGRESS / DONE view.β€”
cm-statusUltra-concise 1-2 sentence progress: what's done, what's next, what's blocked.β€”

Creating Your Own Skills ​

Every skill follows the universal format:

yaml
---
name: cm-your-skill
description: "One line β€” when to activate this skill"
---

# Skill Name

## When to Use
[Trigger conditions β€” be specific]

## Procedure
[Step-by-step workflow]

## Output
[What this skill produces]

## Integration
| Skill | Relationship |
|-------|-------------|
| cm-xxx | UPSTREAM / DOWNSTREAM / COMPLEMENT |

See cm-example for the complete template, and cm-skill-mastery for the meta-guide on skill creation and discovery.

Transparency ​

Every skill is fully open. Click "View β†’" to read the complete SKILL.md β€” nothing simplified, summarized, or hidden. The best way to trust AI automation is to see exactly what instructions the AI follows.

Open Source AI Agent Skills Framework