THE ONLY ENTRY POINT FOR CC10X - AUTO-LOAD AND EXECUTE for ANY development task. Triggers: build, implement, create, make, write, add, develop, code, feature, component, app, application, review, audit, check, analyze, debug, fix, error, bug, broken, troubleshoot, plan, design, architect, roadmap, strategy, memory, session, context, save, load, test, tdd, frontend, ui, backend, api, pattern, refactor, optimize, improve, enhance, update, modify, change, help, assist, work, start, begin, continue. CRITICAL: Execute workflow. Never just describe capabilities.
Auto-detects intent and executes complete workflows: debugs errors, builds features, reviews code, or creates plans. Triggers on keywords like "fix", "build", "review", or "plan" and runs multi-agent chains to completion.
/plugin marketplace add romiluz13/cc10x/plugin install cc10x@cc10xThis skill inherits all available tools. When active, it can use any tool Claude has access to.
EXECUTION ENGINE. When loaded: Detect intent → Load memory → Execute workflow → Update memory.
NEVER list capabilities. ALWAYS execute.
| Priority | Signal | Keywords | Workflow |
|---|---|---|---|
| 1 | ERROR | error, bug, fix, broken, crash, fail, debug, troubleshoot, issue, problem, doesn't work | DEBUG |
| 2 | PLAN | plan, design, architect, roadmap, strategy, spec, "before we build", "how should we" | PLAN |
| 3 | REVIEW | review, audit, check, analyze, assess, "what do you think", "is this good" | REVIEW |
| 4 | DEFAULT | Everything else | BUILD |
Conflict Resolution: ERROR signals always win. "fix the build" = DEBUG (not BUILD).
| Workflow | Agents |
|---|---|
| BUILD | component-builder → [code-reviewer ∥ silent-failure-hunter] → integration-verifier |
| DEBUG | bug-investigator → code-reviewer → integration-verifier |
| REVIEW | code-reviewer |
| PLAN | planner |
∥ = PARALLEL - code-reviewer and silent-failure-hunter run simultaneously (both read-only)
LOAD FIRST (Before routing):
Bash(command="mkdir -p .claude/cc10x")
Read(file_path=".claude/cc10x/activeContext.md")
Read(file_path=".claude/cc10x/patterns.md")
Read(file_path=".claude/cc10x/progress.md")
UPDATE LAST (After workflow): Use Edit tool on activeContext.md (permission-free).
Task(subagent_type="cc10x:code-reviewer", ...)
Task(subagent_type="cc10x:silent-failure-hunter", ...) // Same message = parallel
Pass context to each agent:
Task(subagent_type="cc10x:component-builder", prompt="
User request: {request}
Requirements: {from AskUserQuestion}
Memory: {from activeContext.md}
Patterns: {from patterns.md}
")
Skill triggers for agents:
NEVER stop after one agent. The workflow is NOT complete until the chain finishes.
After EACH agent completes, check its output for:
PARALLEL_AGENTS: X, Y → Invoke BOTH agents in same message (parallel)PARALLEL_COMPLETE + SYNC_NEXT: X → After BOTH parallel agents complete, invoke XNEXT_AGENT: X → Invoke that single agentWORKFLOW_CONTINUES: NO → Chain complete, update memory1. Invoke agent via Task tool
2. Read agent output
3. Check output type:
a. PARALLEL_AGENTS: X, Y → Invoke BOTH in single message (parallel execution)
b. PARALLEL_COMPLETE + SYNC_NEXT: X → Wait for parallel peer, then invoke X
c. NEXT_AGENT: X → Invoke single agent
d. WORKFLOW_CONTINUES: NO → Chain complete
4. Return to step 1 until chain complete
When you see PARALLEL_AGENTS:, invoke ALL listed agents in ONE message:
Task(subagent_type="cc10x:code-reviewer", prompt="...")
Task(subagent_type="cc10x:silent-failure-hunter", prompt="...")
CRITICAL: Both tasks in same message = both complete before you continue.
After both return:
PARALLEL_COMPLETESYNC_NEXT: X valueDO NOT invoke integration-verifier until BOTH parallel agents have completed.
The workflow is complete ONLY when:
WORKFLOW_CONTINUES: NOIf you see PARALLEL_AGENTS: → Invoke ALL listed agents in parallel. No exceptions.
If you see NEXT_AGENT: X → Invoke agent X. No exceptions.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.