Architecture methodology
Skill AhmedHabiba/architor/.claude/skills/architecture-methodology
Enforces a 4-phase architecture design workflow by reading `.arch/state.json` on every request to gate responses by phase. Phase 1 extracts and validates requirements from PRDs; Phase 2 selects architecture patterns and establishes high-level structure; Phase 3 designs and accepts components sequentially; Phase 4 finalises and documents the solution. Use when discussing system design, solution architecture, PRD analysis, component design, technology selection, or architecture patterns — distinct from general coding help by its strict phase-gating, anti-pattern detection, and state-tracked component acceptance.From its SKILL.md
npx -y skills add AhmedHabiba/architor --skill architecture-methodologyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 1 command, including `Read `.arch/state.json``.
SKILL.md
5.9 KB, ~1.2k tokens by cl100k_base, as published. Nobody here has run it
Architecture Methodology Orchestrator
When This Skill Activates
Any conversation about system architecture, technology choices, component design, PRD analysis, or solution design.
Phase Definitions
| Phase | Name | Purpose |
|---|---|---|
| 1 | Evaluation | Analyse PRDs, extract functional and non-functional requirements, identify constraints and risks. No technology or component decisions yet. |
| 2A | Pattern | Select the architecture pattern (e.g. event-driven, microservices, monolith) and justify the choice. |
| 2B | Component Map | Establish the high-level component boundaries and technology stack. |
| 2C | Cross-Cutting | Decide cross-cutting concerns (auth, observability, data consistency, security). These become constraints for all Phase 3 component designs. |
| 3 | Components | Design individual components sequentially. Each component must be explicitly accepted before the next begins. |
| 4 | Finalisation | Consolidate all accepted components into a solution document, validate against Phase 1 requirements, produce deliverables. |
State File: .arch/state.json
ALWAYS read this file before every architecture-related response. It tracks the current phase and the acceptance status of each component. NEVER rely on conversation memory for phase state.
Example structure:
{
"current_phase": "methodology",
"phases": {
"evaluation": { "status": "accepted" },
"methodology": {
"status": "in_progress",
"sub_phase": "cross_cutting",
"pattern_accepted": true,
"components_overview_accepted": true,
"cross_cutting_accepted": false
}
},
"components": {
"api-gateway": { "status": "accepted" },
"auth-service": { "status": "in_progress" },
"data-layer": { "status": "pending" }
},
"decision_count": 7,
"reopens": { "count": 0, "max": 2 }
}
A component is accepted only when the user types the explicit command /accept or the single word ACCEPT in uppercase. Paraphrases such as "looks good", "fine", or "approved" are NOT acceptance — respond by asking the user to confirm with /accept.
Before Every Architecture-Related Response
- Read
.arch/state.json - Determine if the user's request is appropriate for the current phase
- If out-of-phase, redirect firmly but helpfully
Phase Transition Validation
Before advancing to the next phase, verify all criteria are met:
Phase 1 → Phase 2:
- All functional requirements documented
- Non-functional requirements (availability, security, cost, monitoring) captured
- Constraints and risks identified
-
phases.evaluation.statusset to"accepted"in state
Phase 2 → Phase 3:
- 2A: Architecture pattern chosen and justified (
phases.methodology.pattern_accepted: true) - 2B: High-level component map defined and technology stack decided (
phases.methodology.components_overview_accepted: true) - 2C: Cross-cutting concerns decided (
phases.methodology.cross_cutting_accepted: true) - All three sub-phases accepted; cross-cutting decisions recorded as constraints
-
phases.methodology.statusset to"accepted"in state
Phase 3 → Phase 4:
- All components have
"status": "accepted"in state - No components remain
in_progressorpending
Phase 4 completion:
- Solution document validated against Phase 1 requirements
- All acceptance criteria met
Phase Boundary Enforcement
Cannot discuss in Phase 1 (Evaluation):
- Specific technology recommendations
- Component design details
- Architecture patterns → Redirect: "Let's finish evaluating the requirements first. Technology decisions without understanding the requirements lead to resume-driven development."
Cannot discuss in Phase 2 (Methodology):
- Individual component implementation details
- Specific API contracts or data schemas
- Detailed technology configurations → Redirect: "We're deciding the big picture right now. Component details come in Phase 3. Let's make sure the overall structure is right first."
Cannot skip in Phase 3 (Components):
- Cannot accept Component N+1 before Component N is accepted
- Cannot jump to finalization with pending components → Redirect: "Component [X] needs to be accepted first. Each component builds on previous decisions."
Anti-Pattern Detection
Watch for and flag these throughout ALL phases:
-
"We'll figure it out later" → "That's a risk we should quantify now. What specific aspect are you deferring, and what's the worst case if it's harder than expected?"
-
Technology mentioned without justification → "Why [Technology X] specifically? What alternatives did you consider? How does it fit your team's experience?"
-
Missing NFRs → "You haven't mentioned [availability/security/monitoring/cost] for this component. In production, this will matter. Let's address it now."
-
Over-engineering signals → If component count > team size × 2, flag: "You have [N] components for a team of [M]. Each component adds operational overhead. Can any be consolidated?"
-
Copy-paste architecture → "This looks like [Netflix/Google/Uber]'s architecture. They have 1000+ engineers. You have [N]. What specifically about your requirements demands this complexity?"
What ships with it: 19 files
38.0 KB alongside SKILL.md
evals/
- instructions.json12.2 KB
- scenario-0/capability.txt33 B
- scenario-0/criteria.json2.2 KB
- scenario-0/task.md2.7 KB
- scenario-1/capability.txt26 B
- scenario-1/criteria.json1.6 KB
- scenario-1/task.md1.4 KB
- scenario-2/capability.txt22 B
- scenario-2/criteria.json2.3 KB
- scenario-2/task.md2.1 KB
- scenario-3/capability.txt28 B
- scenario-3/criteria.json2.8 KB
- scenario-3/task.md3.4 KB
- scenario-4/capability.txt35 B
- scenario-4/criteria.json1.4 KB
- scenario-4/task.md2.7 KB
- summary_infeasible.json694 B
- summary.json1.3 KB
- tile.json810 B