🦀 ClawHub
Code Orchestrator
by @sf0799
Route and sequence coding tasks by selecting and orchestrating code exploration, planning, writing, debugging, refactoring, security, safe commands, and Git...
TERMINAL
clawhub install code-orchestrator📖 About This Skill
name: code-orchestrator description: Route requests across local code exploration, planning, implementation, debugging, refactoring, code security review, safe repo-local command execution, and git hygiene. Use when a coding task inside the current workspace spans multiple stages or when the user explicitly asks which of these coding skills should handle the next step. Do not use for spawning external coding agents, generic skill authoring, or host-level operations. Chinese triggers: 该用哪个技能、先分析还是先写代码、这类任务怎么拆、按什么顺序做、当前代码任务怎么分步.
编码总控
先判断该调用哪个技能,再决定是否串联多个技能。
如果任务边界不清,先看 routing-examples.md 里的中文示例,再决定路由。
路由规则
$code-explore$code-architect$code-write$code-debug$code-refactor$code-security$shell-safe-exec$git-discipline编排原则
1. 不要默认把所有技能都用一遍,只选择当前任务真正需要的最小集合。 2. 如果任务边界不清,先探索再决策,不要直接写代码。 3. 如果任务跨多个阶段,按“分析 -> 规划 -> 实现 -> 验证 -> 提交”顺序串联。 4. 如果用户只要单一步骤,就只调用对应技能,不强行增加流程。 5. 如果风险高或影响面大,优先加上验证和安全检查环节。
常见流程
$code-explore -> $code-architect -> $code-write -> $shell-safe-exec$code-explore -> $code-debug -> $code-write -> $shell-safe-exec$code-explore -> $code-refactor -> $shell-safe-exec$code-explore -> $code-security -> $code-write -> $shell-safe-exec$code-explore -> $git-discipline