parcadei/continuous-claude-v3▌
108 approved skills in this repository
premortem
Productivity
Identify failure modes before they occur by systematically questioning plans, designs, and implementations. Based on Gary Klein's technique, popularized by Shreyas Doshi (Stripe).
dead-code
Productivity
Find unused functions and dead code using TLDR static analysis.
discovery-interview
Productivity
Structured interview process that transforms vague ideas into detailed, implementable specifications. \n \n Guides users through seven phases: initial orientation, category-by-category deep dive (problem, UX, data, technical landscape, scale, integrations, security, operations), research loops, conflict resolution, completeness checks, and spec generation \n Detects knowledge gaps and offers targeted research on uncertain topics like real-time architectures, integrations, or technology tradeoffs
math
Productivity
One entry point for all computation and explanation. I route to the right tool based on your request.
help
Productivity
Guide users through the capabilities of this workspace setup.
onboard
Productivity
Analyze a brownfield codebase and create an initial continuity ledger.
commit
Productivity
You are tasked with creating git commits for the changes made during this session.
qlty-check
Productivity
Universal code quality tool supporting 70+ linters for 40+ languages via qlty CLI.
morph-search
Productivity
Fast, AI-powered codebase search using WarpGrep. 20x faster than traditional grep.
math-router
Productivity
ALWAYS use this router first for math requests.
recall
Productivity
Query the memory system for relevant learnings from past sessions.
search-tools
Productivity
When searching code, use this decision tree:
llm-tuning-patterns
AI/ML
Evidence-based patterns for configuring LLM parameters, based on APOLLO and Godel-Prover research.
idempotent-redundancy
Productivity
Idempotent Redundancy \n When adding redundant paths (fallbacks, belt-and-suspenders), make them idempotent. \n Pattern \n Redundancy without idempotency causes loops, churn, or data corruption. \n DO \n \n Use _is_merge: true for Braintrust updates \n Check if value exists before writing (fallback only if missing) \n Use atomic write/rename for file operations \n Make reconciliation steps safe to run repeatedly \n \n DON'T \n \n Write unconditionally in fallback paths \n Allow multiple writers
environment-triage
Productivity
When uv sync or pip install behaves unexpectedly, check the actual interpreter.
explicit-identity
Productivity
Never rely on "latest" or "current" when crossing process or async boundaries.
continuity-ledger
Frontend
Note: This skill is now an alias for /create_handoff. Both output the same YAML format.
background-agent-pings
Productivity
Trust system reminders as agent progress notifications. Don't poll.
hooks
Productivity
When working with files in .claude/hooks/:
remember
Productivity
Store a learning, pattern, or decision in the memory system for future recall.
agent-orchestration
Productivity
When the user asks to implement something, use implementation agents to preserve main context.
git-commits
Productivity
When the user asks to commit, push, or save changes to git:
create-handoff
Productivity
You are tasked with writing a handoff document to hand off your work to another agent in a new session. You will create a handoff document that is thorough, but also concise. The goal is to compact and summarize your context without losing any of the key details of what you're working on.
github-search
Productivity
Search GitHub code, repositories, issues, and pull requests with flexible filtering. \n \n Four search types: code, repositories, issues, and pull requests, each with full GitHub search syntax support \n Optional filtering by repository owner and name to narrow results to specific projects \n Requires GitHub personal access token configured in mcp_config.json for authentication \n Command-line interface with straightforward parameters for integration into agent workflows \n
agentica-sdk
Productivity
Build AI agents in Python using the Agentica framework. Agents can implement functions, maintain state, use tools, and coordinate with each other.
async-repl-protocol
Productivity
When working with Agentica's async REPL harness for testing.
wiring
Productivity
When building infrastructure components, ensure they're actually invoked in the execution path.
tdd
Productivity
Strict TDD workflow: tests first, then implementation.
tdd-migrate
Productivity
Orchestrate TDD migrations with agents doing all work. Main context stays clean.
graceful-degradation
Productivity
When optional services are unavailable, degrade gracefully with actionable fallback messages.
tldr-deep
Productivity
Full 5-layer analysis of a specific function. Use when debugging or deeply understanding code.
parallel-agent-contracts
Productivity
When launching parallel agents for code implementation, prevent type duplication.
release
Productivity
Structured release preparation to ship with confidence.
tdd-migration-pipeline
Productivity
Orchestrator-only workflow for migrating or rewriting codebases. You do NOT read files, write code, or validate anything yourself. You only instruct agents and pipe context (paths, not contents).
search-hierarchy
Productivity
Use the most token-efficient search tool for each query type.
implement_task
Productivity
You are an implementation agent spawned to execute a single task from a larger plan. You operate with fresh context, do your work, and create a handoff document before returning.
agentica-server
Backend
Complete reference for running Agentica SDK with a local Claude proxy. This enables Python agents to use Claude CLI as their inference backend.
agentica-claude-proxy
AI/ML
Use this skill when developing or debugging the Agentica-Claude proxy integration.
no-polling-agents
Productivity
When launching parallel background agents, do NOT poll with sleep loops.
hook-developer
Productivity
Complete reference for developing Claude Code hooks. Use this to write hooks with correct input/output schemas.
repoprompt
Productivity
RepoPrompt is more token-efficient than raw file reads:
implement_plan
Productivity
You are tasked with implementing an approved technical plan from thoughts/shared/plans/. These plans contain phases with specific changes and success criteria.
opc-architecture
Productivity
opc-architecture
mcp-chaining
AI/ML
A research-to-implement pipeline that chains 5 MCP tools for end-to-end workflows.
morph-apply
Productivity
Fast, AI-powered file editing using the Morph Apply API. Edit files without reading them first. Processes at 10,500 tokens/sec with 98% accuracy.
mcp-scripts
Productivity
MCP Script Rules \n When working with files in scripts/ : \n DO \n \n Use CLI arguments for all parameters (argparse) \n Include USAGE docstring at top of file \n Use call_mcp_tool(\"server__tool\", params) pattern \n Handle errors gracefully with informative messages \n Print results to stdout for Claude to process \n \n DON'T \n \n Hardcode parameters in the script \n Edit scripts to change parameters (use CLI args instead) \n Import from servers/ directly (use runtime.mcp_client) \n \n Tool N
observe-before-editing
Productivity
$1f
completion-check
Productivity
When building infrastructure, verify it's actually connected to the system before marking as complete.
validate-agent
Productivity
validate-agent
agentica-infrastructure
Productivity
Complete API specification for Agentica multi-agent coordination infrastructure.
test
Testing
Run comprehensive test suite with parallel execution.
cli-reference
Productivity
Complete reference for Claude Code command-line interface.
agentica-spawn
Productivity
Use this skill after user selects an Agentica pattern.
agentica-prompts
Productivity
Write prompts that Agentica agents reliably follow. Standard natural language prompts fail ~35% of the time due to LLM instruction ambiguity.
resume-handoff
Productivity
You are tasked with resuming work from a handoff document through an interactive process. These handoffs contain critical context, learnings, and next steps from previous work sessions that need to be understood and continued.
research
Productivity
You are tasked with conducting comprehensive research across the codebase to answer user questions by spawning parallel sub-agents and synthesizing their findings.
tldr-code
Productivity
Token-efficient code analysis. 95% savings vs raw file reads.
security
Productivity
Dedicated security analysis for sensitive code.
fix
Productivity
Workflow orchestrator for bug investigation and resolution. Chains specialized skills based on issue scope.
braintrust-analyze
Backend
Analyze your Claude Code sessions for patterns, issues, and insights using Braintrust tracing data.
firecrawl-scrape
Productivity
Requires firecrawl server in mcp_config.json with FIRECRAWL_API_KEY.
tldr-overview
Productivity
Get a token-efficient overview of any project using the TLDR stack.
skill-upgrader
Productivity
Meta-skill that upgrades any SKILL.md to Decision Theory v5 Hybrid format using 4 parallel Ragie-backed agents.
workflow-router
Productivity
You are a goal-based workflow orchestrator. Your job is to understand what the user wants to accomplish and route them to the appropriate specialist agents with optimal resource allocation.
research-external
Productivity
Research external sources (documentation, web, APIs) for libraries, best practices, and general topics.
perplexity-search
Productivity
Web search with AI-powered answers, deep research, and chain-of-thought reasoning.
prove
Productivity
For mathematicians who want verified proofs without learning Lean syntax.
complete-skill
Productivity
complete-skill \n When to Use \n Test the entire persistence pipeline \n Instructions \n \n Do this \n Then that \n
braintrust-tracing
Backend
Comprehensive guide to tracing Claude Code sessions in Braintrust, including sub-agent correlation.
build
Frontend
You are a workflow orchestrator that chains existing skills for feature development. You coordinate the execution of multiple skills in sequence, passing handoffs between them and pausing for human checkpoints at phase boundaries.
describe-pr
Productivity
You are tasked with generating a comprehensive pull request description following the repository's standard template.
debug-hooks
Productivity
Systematic workflow for debugging Claude Code hooks.
review
Productivity
Multi-perspective code review with parallel specialists.
parallel-agents
Productivity
When launching multiple agents in parallel, follow this pattern to avoid context bloat.
skill-developer
Productivity
Meta-skill for creating new Claude Code skills, including skills that wrap MCP pipelines.
repo-research-analyst
Productivity
repo-research-analyst
skill-development
Productivity
Skill Development Rules \n When working with files in .claude/skills/ : \n SKILL.md Structure \n \n DO \n \n Keep SKILL.md concise (< 200 lines) \n Include clear \"When to Use\" section \n Provide copy-paste bash commands \n Reference scripts/ for MCP operations \n Add triggers to skill-rules.json \n \n DON'T \n \n Include implementation details in SKILL.md \n Duplicate content across skills \n Create skills without corresponding trigger in skill-rules.json \n Use allowed-tools that aren't
compound-learnings
Productivity
Transform ephemeral session learnings into permanent, compounding capabilities.
ast-grep-find
Productivity
Structural code search that understands syntax. Find patterns like function calls, imports, class definitions - not just text.
modular-code
Productivity
Write modular Python code with files sized for maintainability and AI-assisted development.
debug
Productivity
You are tasked with helping debug issues during manual testing or implementation. This command allows you to investigate problems by examining logs, database state, and git history without editing files. Think of this as a way to bootstrap a debugging session without using the primary window's context.
planning-agent
Productivity
planning-agent
slash-commands
Productivity
Create and use user-triggered prompts with /command-name syntax.
agent-context-isolation
Productivity
Prevent agent output from polluting the main context window.
recall-reasoning
Productivity
Search through previous sessions to find relevant decisions, approaches that worked, and approaches that failed. Queries two sources:
explore
Productivity
Meta-skill for exploring an internal codebase at varying depths. READ-ONLY workflow - no code changes.
math-help
Productivity
Cognitive prosthetics for exact mathematical computation. This guide helps you choose the right tool for your math task.
agentic-workflow
Productivity
Standard multi-agent pipeline for implementation tasks.
search-router
Productivity
Use the most token-efficient search tool for each query type.
research-agent
Productivity
research-agent
refactor
Productivity
Safe refactoring with review gates.
tour
Productivity
Friendly onboarding when users ask about capabilities.
loogle-search
Productivity
Search Mathlib for lemmas by type signature pattern.
tldr-router
Productivity
Maps questions to the optimal tldr command. Use this to pick the right layer.
shapely-compute
Productivity
Create geometric objects from coordinates.
pint-compute
Productivity
Cognitive prosthetics for unit-aware computation. Use Pint for converting between units, performing unit arithmetic, checking dimensional compatibility, and simplifying compound units.
mot
Productivity
Run comprehensive health checks on all Claude Code components.
index-at-creation
Productivity
Index at Creation Time \n Index artifacts when they're created, not at batch boundaries. \n Pattern \n If downstream logic depends on artifacts being queryable, index immediately at write time. \n DO \n \n Index handoffs in PostToolUse Write hook (immediately after creation) \n Use --file flag for fast single-file indexing \n Trigger indexing from the same event that creates the artifact \n \n DON'T \n \n Wait for SessionEnd to batch-index \n Rely on cron/scheduled jobs for time-sensitive data \
nia-docs
Documents
Search across 3000+ packages (npm, PyPI, Crates, Go) and indexed sources for documentation and code examples.
migrate
Productivity
Safe migrations for frameworks, languages, and infrastructure.
system-overview
Productivity
Show users how Continuous Claude works - the opinionated setup with hooks, memory, and coordination.
implement_plan_micro
Productivity
Five modal logics via fusion with bridge principles:
tldr-stats
Productivity
Show a beautiful dashboard with token usage, actual API costs, TLDR savings, and hook activity.
router-first-architecture
Productivity
Route through domain routers before using individual tools. Routers abstract tool selection.
sub-agents
Productivity
Create specialized AI agents with isolated contexts for specific tasks.
reference-sdk
Productivity
When implementing SDK features or debugging provider-specific issues, check reference implementations.
qlty-during-development
Productivity
Run QLTY checks during code writing to catch issues early.
no-task-output
Productivity
Never Use TaskOutput \n TaskOutput floods the main context window with agent transcripts (70k+ tokens). \n Rule \n NEVER use TaskOutput tool. Use Task tool with synchronous mode instead. \n Why \n \n TaskOutput reads full agent transcript into context \n This causes mid-conversation compaction \n Defeats the purpose of agent context isolation \n \n Pattern \n # WRONG - floods context\n Task(run_in_background=true)\n TaskOutput(task_id=\"...\") // 70k tokens dumped\n \n # RIGHT - isolated context