一键导入
solve
Master orchestrator skill for triaging, planning, and executing tasks, combined with GitNexus, AgentMemory, and superpowers subagent handoffs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Master orchestrator skill for triaging, planning, and executing tasks, combined with GitNexus, AgentMemory, and superpowers subagent handoffs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | solve |
| description | Master orchestrator skill for triaging, planning, and executing tasks, combined with GitNexus, AgentMemory, and superpowers subagent handoffs. |
This is the master orchestrator skill for managing any request. It triages task complexity to route the execution flow, prevents context rot by maintaining specifications in docs/superpowers/, and manages subagent-driven execution handoffs.
AI agents lose focus and degrade in code quality as their context window fills with discussion history. To combat this, this skill:
docs/superpowers/specs/ and plans to docs/superpowers/plans/ as the project's source of truth.agentmemory/openclaw-memory to fetch context, past decisions, or historic bugs related to the prompt.gitnexus.context to inspect symbols or files referenced in the prompt.Analyze the request and classify it as LARGE or SMALL:
Run the /brainstorm protocol:
gitnexus.impact to compare blast radius and agentmemory to check historical constraints.docs/superpowers/specs/YYYY-MM-DD-<feature-name>-design.md.Write a comprehensive implementation plan to docs/superpowers/plans/YYYY-MM-DD-<feature-name>.md assuming the engineer executing it has zero context.
# [Feature Name] Implementation Plan
Goal: [One sentence describing what this builds]
Architecture: [2-3 sentences about approach]
Tech Stack: [Key technologies/libraries]
---
git add and git commit commands).Do not write production code or scaffold files until the user has approved the plan. Run a self-review check for type consistency and placeholders before presenting.
Once the plan is approved, present the user with the execution handoff prompt:
"Plan complete and saved to
docs/superpowers/plans/<filename>.md. Choose your execution route:
- 1. Subagent-Driven (Recommended to prevent context rot): We spawn a fresh, isolated subagent for each task, review output between tasks, and commit.
- 2. Inline Execution: We execute tasks sequentially in the current session using checkpoints.*
Run gitnexus.detect_changes to verify the blast radius matches the plan, run all tests, write the walkthrough.md, and save the session context to agentmemory.
gitnexus.context or gitnexus.impact to ensure the target function has no dangerous downstream side-effects./test-smart to verify the patch.walkthrough.md and save the session context to agentmemory.To ensure robust and maintainable code, always follow these four core principles inspired by Andrej Karpathy:
Don't assume. Don't hide confusion. Surface tradeoffs.
Minimum code that solves the problem. Nothing speculative.
Touch only what you must. Clean up only your own mess.
Define success criteria. Loop until verified.
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation, combined with GitNexus and AgentMemory.
Trace call graphs, dependencies, and execution flow of target code using GitNexus.
Convert binary and formatted documents (PDF, DOCX, XLSX, PPTX, HTML, ZIP, etc.) to Markdown using MarkItDown and extract requirements.
Safe, structured refactoring of target code using GitNexus graph mapping, AgentMemory checks, and TDD workflows.
Run targeted unit/integration tests on changed components, run full regression suites, and log outcomes in memory.
Verify codebase modifications, execute test runners, detect file change scope using GitNexus, and persist session memory.