architecture-suite
v1.0.0Architecture baselines, current-state documentation, target designs, decisions, diagrams, and migration plans.
by Lev NikolaevichMIT534updated 2 days ago
Source
git clone https://github.com/levnikolaevich/claude-code-skillsClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/architecture-suite/ inside the repository.
Layout
├── .codex-plugin/plugin.json├── plugin.json├── skills/ln-71-system-design-baseline-builder/SKILL.md├── skills/ln-72-current-architecture-documenter/SKILL.md├── skills/ln-73-system-design-proposal-builder/SKILL.md├── skills/ln-74-architecture-decision-recorder/SKILL.md├── skills/ln-75-architecture-diagram-builder/SKILL.md└── skills/ln-76-architecture-migration-planner/SKILL.md
Skills6
Creates a project baseline of architecture drivers and constraints. Use before design or planning; not for target design, plan review, implementation, or architecture audit.
Documents implemented current-state architecture from repository evidence. Use for onboarding or migration baselines; not for target design, audit verdicts, or code changes.
Creates a decision-complete target system design from requirements and constraints. Use before implementation planning; not for requirements baselines, reviews, audits, or code changes.
Records one architecture decision with context, alternatives, tradeoffs, and consequences. Use for a significant choice; not for broad design, audit, or implementation.
Creates evidence-backed current or target architecture diagrams when the diagram is the primary deliverable. Not for UI design, architecture audit, or invented structure.
Plans a reversible architecture migration with compatibility, data movement, rollout, and rollback. Use for current-to-target transitions; not execution, generic planning, or delivery review.
Manifests2
{
"name": "architecture-suite",
"version": "1.0.0",
"description": "Architecture baselines, current-state documentation, target designs, decisions, diagrams, and migration plans.",
"author": {
"name": "Lev Nikolaevich",
"email": "levnikolaevich.com@gmail.com",
"url": "https://github.com/levnikolaevich"
},
"homepage": "https://github.com/levnikolaevich/claude-code-skills",
"repository": "https://github.com/levnikolaevich/claude-code-skills",
"license": "MIT",
"keywords": [
"architecture",
"system-design",
"adr",
"diagrams",
"migration"
],
"skills": "./skills/",
"interface": {
"displayName": "Architecture Suite",
"shortDescription": "Build architecture artifacts",
"longDescription": "Create and update evidence-backed architecture baselines, current-state maps, target designs, decision records, diagrams, and reversible migration plans.",
"developerName": "Lev Nikolaevich",
"websiteURL": "https://github.com/levnikolaevich/claude-code-skills",
"category": "Productivity",
"capabilities": [
"Interactive",
"Read",
"Write"
],
"defaultPrompt": [
"Document or design the architecture for this project.",
"Record an architecture decision or create a diagram.",
"Plan a reversible migration from the current architecture to the target."
]
}
}{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "architecture-suite"
}