一键导入
architecture-advisor
High-IQ architecture consulting mode — complex trade-offs, hard debugging, read-only analysis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
High-IQ architecture consulting mode — complex trade-offs, hard debugging, read-only analysis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Pre-generation gap analysis — surface hidden requirements, AI-slop risks, and missing guardrails before the plan is written
Unified external CLI agent runner — backend detection, command dispatch, retry logic, response parsing
Structured codebase search protocol — deep parallel exploration before acting on unfamiliar code
Post-generation plan review — verify references, executability, and acceptance criteria before execution
Autonomous exploration and goal-driven execution — read extensively before acting
Anti-AI-slop technical writing — clear prose, human tone, zero filler
| name | architecture-advisor |
| description | High-IQ architecture consulting mode — complex trade-offs, hard debugging, read-only analysis |
Shift into read-only, high-reasoning consulting mode. When activated, stop implementing and think hard. Bias toward simplicity. One clear path. Evidence-backed recommendations only.
Architecture decisions:
Debugging hard problems:
Verification/review:
Loaded by:
/plan Step 1 for Architecture intent/start-work final verification)/debug Phase 4 hypothesis escalation (step before external CLI consultation)1. READ → find all relevant code before forming opinion
grep_search + find_by_name + view_file_outline in parallel
2. UNDERSTAND → build mental model of current state
What does this code do? What are its constraints?
What would break if we changed X?
3. IDENTIFY trade-offs
Simplicity vs flexibility? Performance vs readability?
Short-term vs long-term?
4. RECOMMEND → one clear path with rationale
"The simplest approach that meets requirements is [X] because [evidence]."
"Alternative [Y] exists but only if you need [specific constraint]."
5. SURFACE risks
"This change touches [N] call sites. Regression risk: [high/medium/low]."
## Architecture Analysis
**Current state**: [What exists, with file citations]
**Problem**: [What needs to change and why]
---
### Recommendation
[One clear path]
- **Rationale**: [Evidence-backed reasoning]
- **Trade-offs**: [What you gain, what you give up]
- **Risk**: [What could go wrong, how to mitigate]
---
### Alternatives (only if substantially different)
- [Option B]: Only if [specific condition] applies
### Next Steps
[Concrete actions to proceed]
| Rule | Rationale |
|---|---|
| Read before recommending | Never speculate about unread code |
| One path unless genuinely different trade-offs | Multiple options = decision fatigue without benefit |
| Cite file:line for every claim | Evidence, not assertion |
| Acknowledge uncertainty | "I'm not sure about X" is honest; fabricating is harmful |
| Bias toward the existing codebase | Familiarity has real value; don't rip out working code |
| Simplest solution that meets actual requirements | Over-engineering is a real cost |