Skip to main content

Claude Code

Skills

Custom slash commands wired into my Claude Code workflow. Each skill is a .md file that shapes Claude's behavior for a specific task.

52 skills active 3 featured
/plan

Restate requirements, assess risks, create step-by-step implementation plan. Waits for confirmation before touching code.

workflow strategy
/aside

Answer a quick side question without interrupting or losing context from the current task. Resumes work automatically.

focus context
/orchestrate

Sequential and tmux/worktree orchestration guidance for multi-agent workflows.

agents parallel
/devfleet

Orchestrate parallel Claude Code agents via Claude DevFleet — plan from natural language, dispatch agents in isolated worktrees, monitor and read reports.

agents parallel advanced
/multi-workflow

Multi-model collaborative development: Research → Ideation → Plan → Execute → Optimize → Review. Routes Frontend to Gemini, Backend to Codex.

multi-model workflow
/multi-plan

Multi-model collaborative planning phase. Coordinates multiple AI models to produce a unified implementation plan.

multi-model planning
/multi-execute

Multi-model collaborative execution. Dispatches frontend and backend tasks to specialized models in parallel.

multi-model execution
/multi-frontend

Frontend-focused multi-model development. Routes UI/UX tasks to the optimal model.

multi-model frontend
/multi-backend

Backend-focused multi-model development. Routes API, DB, and server tasks to the optimal model.

multi-model backend
/code-review

General-purpose code review for quality, security, and maintainability. Flags critical, high, and medium issues.

quality security
/python-review

PEP 8 compliance, Pythonic idioms, type hints, security, and performance review for Python projects.

python quality
/cpp-review

Memory safety, modern C++ idioms (C++17/20), concurrency, and performance review based on C++ Core Guidelines.

cpp memory-safety
/go-review

Idiomatic Go patterns, concurrency safety, error handling, and interface design review.

go concurrency
/kotlin-review

Idiomatic Kotlin patterns, null safety, coroutine correctness, and Compose best practices review.

kotlin android
/rust-review

Ownership, lifetimes, error handling, unsafe usage, and idiomatic Rust patterns review.

rust ownership
/build-fix

Resolves TypeScript and build errors incrementally with minimal diffs. Focuses on getting the build green fast.

typescript errors
/cpp-build

Fixes CMake, linker, and template errors in C++ projects with minimal changes.

cpp cmake
/go-build

Fixes go build, go vet warnings, and linter issues incrementally.

go linter
/kotlin-build

Fixes Kotlin/Gradle build errors, compiler warnings, and dependency issues.

kotlin gradle
/rust-build

Fixes cargo build errors, borrow checker issues, and Cargo.toml problems.

rust cargo
/gradle-build

Resolves Gradle build errors for Android and KMP projects.

android gradle
/tdd

Enforces test-driven development. Scaffolds interfaces, generates failing tests first (RED), then implements minimal code (GREEN), then refactors.

workflow 80% coverage
/e2e

Generates and runs end-to-end tests with Playwright. Creates test journeys, quarantines flaky tests, uploads artifacts.

playwright e2e
/test-coverage

Analyzes test coverage and identifies uncovered paths. Reports gaps with actionable remediation suggestions.

coverage analysis
/cpp-test

TDD workflow for C++. Writes GoogleTest tests first, then implements. Validates with ctest.

cpp googletest
/go-test

Table-driven tests first, then implement. Validates with go test and race detector.

go table-driven
/kotlin-test

TDD with Kotest. Writes Kotest specs first, then implements. Validates with Gradle test task.

kotlin kotest
/rust-test

TDD for Rust. Writes unit and integration tests first, then implements. Validates with cargo test.

rust cargo-test
/learn

Extracts reusable patterns from the current session and saves them as instincts or skill fragments.

meta learning
/learn-eval

Extracts patterns from the session, self-evaluates quality before saving. Higher signal-to-noise than /learn alone.

meta quality
/skill-create

Analyzes local git history to extract coding patterns and generate SKILL.md files. Local version of the Skill Creator GitHub App.

meta codegen
/skill-health

Shows skill portfolio health dashboard with charts, analytics, and maintenance suggestions.

meta analytics
/prompt-optimize

Analyzes a draft prompt and outputs an optimized, ECC-enriched version ready to paste and run. Advisory only — does not execute.

prompts optimization
/instinct-status

Shows all learned instincts (project + global scope) with confidence scores.

instincts memory
/instinct-export

Exports instincts from project or global scope to a shareable file.

instincts export
/instinct-import

Imports instincts from a file or URL into project or global scope.

instincts import
/promote

Promotes project-scoped instincts to global scope so they apply across all projects.

instincts global
/evolve

Analyzes instinct usage patterns and suggests or generates evolved, consolidated structures.

instincts refactor
/save-session

Saves current session state to a dated file in ~/.claude/sessions/ for cross-session continuity.

persistence context
/resume-session

Loads the most recent session file and resumes work with full context from where the last session ended.

persistence context
/sessions

Manages Claude Code session history, aliases, and metadata. Browse, tag, and retrieve past sessions.

history management
/checkpoint

Saves a working state checkpoint: git state, decisions made, and next steps. Resume from any checkpoint.

git state
/projects

Lists all known projects with their instinct statistics and last-active timestamps.

overview instincts
/docs

Looks up current documentation for any library or topic via Context7 MCP. Returns accurate, version-specific API examples.

docs context7
/verify

Runs a full verification loop: type checks, tests, lints, and reports the overall health status of the project.

quality ci
/quality-gate

Enforces quality gate before merge: coverage, lint errors, type errors, and security checks must all pass.

gate ci
/refactor-clean

Removes dead code, unused imports, and duplicate logic. Runs knip/depcheck/ts-prune to identify what is safe to delete.

cleanup dead-code
/update-docs

Reads all project docs and cross-references with actual code to update stale documentation automatically.

docs maintenance
/update-codemaps

Generates or updates codemap files that give Claude accurate knowledge of the project's file and module structure.

codemaps context
/context-budget

Analyzes context window usage across agents, skills, and MCP servers. Surfaces which items consume the most tokens.

tokens optimization
/rules-distill

Scans all active skills and extracts cross-cutting principles to distill into a unified rule file.

rules meta
/email-checklist

Converts a draft email into a preventive checklist — flags tone, missing context, implicit assumptions, and risk phrases.

communication review

Skills are stored as ~/.claude/commands/*.md
Invoked with /skill-name inside Claude Code CLI

Comms