$npx -y skills add parcadei/Continuous-Claude-v3 --skill helpInteractive workspace discovery - learn what tools, workflows, agents, and hooks are available
| 1 | # /help - Workspace Discovery |
| 2 | |
| 3 | Guide users through the capabilities of this workspace setup. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ``` |
| 8 | /help # Interactive guided discovery |
| 9 | /help workflows # Workflow orchestration skills |
| 10 | /help agents # Specialist agents catalog |
| 11 | /help tools # CLI tools (tldr, prove, recall) |
| 12 | /help hooks # Active hooks and what they do |
| 13 | /help advanced # MCP, frontmatter, customization |
| 14 | /help <name> # Deep dive on specific skill/agent |
| 15 | ``` |
| 16 | |
| 17 | ## Behavior Based on Arguments |
| 18 | |
| 19 | ### No Arguments: Interactive Discovery |
| 20 | |
| 21 | Use AskUserQuestion to guide the user: |
| 22 | |
| 23 | ``` |
| 24 | question: "What are you trying to do?" |
| 25 | header: "Goal" |
| 26 | options: |
| 27 | - label: "Explore/understand a codebase" |
| 28 | description: "Find patterns, architecture, conventions" |
| 29 | - label: "Fix a bug" |
| 30 | description: "Investigate, diagnose, implement fix" |
| 31 | - label: "Build a feature" |
| 32 | description: "Plan, implement, test new functionality" |
| 33 | - label: "Prove something mathematically" |
| 34 | description: "Formal verification with Lean 4" |
| 35 | ``` |
| 36 | |
| 37 | Based on response, show relevant tools: |
| 38 | |
| 39 | | Goal | Show | |
| 40 | |------|------| |
| 41 | | Explore codebase | scout agent, tldr CLI, /explore workflow | |
| 42 | | Fix a bug | /fix workflow, sleuth agent, debug-agent | |
| 43 | | Build feature | /build workflow, architect agent, kraken agent | |
| 44 | | Prove math | /prove skill, lean4 skill, Godel-Prover | |
| 45 | | Research docs | oracle agent, nia-docs, perplexity | |
| 46 | | Configure workspace | hooks, rules, settings, frontmatter | |
| 47 | |
| 48 | ### /help workflows |
| 49 | |
| 50 | Display workflow meta-skills: |
| 51 | |
| 52 | ```markdown |
| 53 | ## Workflow Skills |
| 54 | |
| 55 | Orchestrate multi-agent pipelines for complex tasks. |
| 56 | |
| 57 | | Workflow | Purpose | Agents Used | |
| 58 | |----------|---------|-------------| |
| 59 | | /fix | Bug investigation → diagnosis → implementation | sleuth → kraken → arbiter | |
| 60 | | /build | Feature planning → implementation → testing | architect → kraken → arbiter | |
| 61 | | /debug | Deep investigation of issues | debug-agent, sleuth | |
| 62 | | /tdd | Test-driven development cycle | arbiter → kraken → arbiter | |
| 63 | | /refactor | Code transformation with safety | phoenix → kraken → judge | |
| 64 | | /review | Code review and feedback | critic, judge | |
| 65 | | /security | Vulnerability analysis | aegis | |
| 66 | | /explore | Codebase discovery | scout | |
| 67 | | /test | Test execution and validation | arbiter, atlas | |
| 68 | | /release | Version bumps, changelog | herald | |
| 69 | | /migrate | Framework/infrastructure changes | pioneer, phoenix | |
| 70 | |
| 71 | **Usage**: Just describe your goal. Claude routes to the right workflow. |
| 72 | ``` |
| 73 | |
| 74 | ### /help agents |
| 75 | |
| 76 | Display agent catalog: |
| 77 | |
| 78 | ```markdown |
| 79 | ## Specialist Agents |
| 80 | |
| 81 | Spawn via Task tool with subagent_type. |
| 82 | |
| 83 | ### Exploration & Research |
| 84 | | Agent | Purpose | Model | |
| 85 | |-------|---------|-------| |
| 86 | | scout | Codebase exploration, pattern finding | sonnet | |
| 87 | | oracle | External research (web, docs, APIs) | sonnet | |
| 88 | | pathfinder | External repository analysis | sonnet | |
| 89 | |
| 90 | ### Planning & Architecture |
| 91 | | Agent | Purpose | Model | |
| 92 | |-------|---------|-------| |
| 93 | | architect | Feature planning, design docs | sonnet | |
| 94 | | plan-agent | Create implementation plans | sonnet | |
| 95 | | phoenix | Refactoring & migration planning | sonnet | |
| 96 | |
| 97 | ### Implementation |
| 98 | | Agent | Purpose | Model | |
| 99 | |-------|---------|-------| |
| 100 | | kraken | TDD implementation, refactoring | sonnet | |
| 101 | | spark | Quick fixes, lightweight changes | haiku | |
| 102 | |
| 103 | ### Review & Validation |
| 104 | | Agent | Purpose | Model | |
| 105 | |-------|---------|-------| |
| 106 | | arbiter | Test execution, validation | sonnet | |
| 107 | | critic | Code review | sonnet | |
| 108 | | judge | Refactoring review | sonnet | |
| 109 | |
| 110 | ### Investigation |
| 111 | | Agent | Purpose | Model | |
| 112 | |-------|---------|-------| |
| 113 | | sleuth | Bug investigation, root cause | sonnet | |
| 114 | | debug-agent | Issue investigation with logs | sonnet | |
| 115 | | profiler | Performance, race conditions | sonnet | |
| 116 | |
| 117 | ### Documentation & Handoff |
| 118 | | Agent | Purpose | Model | |
| 119 | |-------|---------|-------| |
| 120 | | scribe | Documentation, session summaries | sonnet | |
| 121 | | chronicler | Session analysis, learning extraction | sonnet | |
| 122 | ``` |
| 123 | |
| 124 | ### /help tools |
| 125 | |
| 126 | Display CLI tools and capabilities: |
| 127 | |
| 128 | ```markdown |
| 129 | ## Built-in Tools |
| 130 | |
| 131 | ### TLDR Code Analysis |
| 132 | Token-efficient code exploration (95% savings vs reading raw files). |
| 133 | |
| 134 | ```bash |
| 135 | tldr tree src/ # File tree |
| 136 | tldr structure src/ --lang python # Code structure (codemaps) |
| 137 | tldr search "pattern" src/ # Search files |
| 138 | tldr cfg file.py func # Control flow graph |
| 139 | tldr dfg file.py func # Data flow graph |
| 140 | tldr impact func src/ # Reverse call graph (who calls this?) |
| 141 | tldr dead src/ # Find dead code |
| 142 | tldr arch src/ # Detect architectural layers |
| 143 | ``` |
| 144 | |
| 145 | ### /prove - Formal Verification |
| 146 | Machine-verified proofs without learning Lean syntax. |
| 147 | |
| 148 | ``` |
| 149 | /prove every group homomorphism preserves identity |
| 150 | /prove continuous functions on com |