architecture-workshop
Framework for designing new architectural mechanisms when existing patterns don't fit
Best use case
architecture-workshop is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Framework for designing new architectural mechanisms when existing patterns don't fit
Teams using architecture-workshop should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/architecture-workshop/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How architecture-workshop Compares
| Feature / Agent | architecture-workshop | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Framework for designing new architectural mechanisms when existing patterns don't fit
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Architecture Workshop This skill provides a framework for designing options when changes don't fit cleanly into existing codebase architecture. ## When to Use Load this skill when architecture fit evaluation returns NO_FIT or when you're compensating for architectural gaps with workarounds. ## Core Principle Your job is NOT to find workarounds that force a fit. If the right answer requires new architectural mechanisms, say so — even if a hacky fit is technically possible. At the same time, don't over-engineer. If a light-touch structural improvement solves the problem cleanly, that's often better than a full architectural shift. ## Process ### 1. Understand Why It Doesn't Fit - Why doesn't this fit cleanly? - Is it a localized mismatch or a systemic gap? - What's the actual constraint violation vs. what's just unfamiliar? ### 2. Research Deeper (if needed) Use the `research` skill to understand: - What patterns exist for the type of problem this change introduces? - Are there any partial implementations or footholds for the needed mechanism? - What would be the natural extension points? ### 3. Generate Options **Light-Touch Options** (consider first): - Add a new module boundary + interface seam - Introduce an adapter layer in one location - Extract a small abstraction that makes the fit clean - Add migration guardrails for incremental adoption **Architecture Options** (when light-touch won't work): - Introduce eventing/pubsub where none exists - Add state-machine-driven workflow - Change concurrency model - Introduce new infrastructure component ### 4. Evaluate Each Option For each option, assess: - **Blast radius**: Which domains/components change (not individual files) - **Incremental path**: Can we keep repo green throughout? - **Long-term impact**: How this affects future changes, maintainability - **Reversibility**: How hard to undo if wrong? ## When to Recommend Light-Touch vs Architecture Shift **Light-Touch** is right when: - The problem is localized to 1-2 domains - An interface seam or adapter solves it cleanly - The repo already has similar patterns elsewhere - Future changes won't keep hitting this same wall **Architecture Shift** is right when: - Multiple modules need to participate in a new coordination model - The same problem will recur for future features - The light-touch path creates inconsistent patterns - The change represents a genuine evolution in what the system does ## Output Format Document your options: ```markdown ## Architecture Options ### Option A: <Name> - **Description**: <What this entails — stay high-level> - **Blast Radius**: <Which domains/components change> - **Incremental Path**: <Phases to adopt while keeping repo green> - **Long-Term Impact**: <How this affects future changes> - **Tradeoffs**: <Honest pros and cons> ### Option B: <Name> <Same structure> ### Option C: <Name> (if meaningfully different) <Same structure> ### Recommendation <Which option and why — optimize for codebase health, not just "easiest fit"> ``` ## Design Principles - **Codebase health is the objective**: Don't contort just to fit - **Light-touch is often best**: A well-placed interface seam can solve many problems - **Incremental path is mandatory**: "Big bang" is not acceptable - **Blast radius matters**: Prefer smaller when it solves the problem equally well - **Keep it high-level**: Architectural guidance, not implementation planning - **Ground everything in repo reality**: Options must be grounded in what actually exists
Related Skills
astro-architecture
Technical architecture for Astro lead generation websites. Use when setting up new projects, configuring build tools, or establishing project foundations. For images use astro-images skill. For SEO use astro-seo skill.
assessing-architecture-quality
Use when assessing codebase architecture and you feel pressure to soften critique, lead with strengths, or frame problems diplomatically - provides evidence-based critical assessment resisting relationship and economic pressures
architecture
Comprehensive system architecture design and implementation workflow that orchestrates expert analysis, technical decision-making, and architectural pattern selection using the integrated toolset. Handles everything from initial system analysis to implementation-ready technical specifications.
architecture-validator
Validate hexagonal architecture (Domain, Application, Infrastructure, Presentation). Use when creating new files in src/, reorganizing code, or when the user requests architecture validation.
architecture-validation
Dynamically validate codebase compliance with architectural decisions and constraints
architecture-to-json
Guide for extracting architectural diagrams, flowcharts, and sequence diagrams into a structured JSON format. Use this skill when you need to transform a visual or textual description of a system architecture or workflow into a clear, structured JSON representation.
architecture-tech-lead
This skill should be used when the user asks to 'review my architecture', 'improve testability', 'refactor for testing', 'reduce mocking in tests', 'too many mocks', 'extract pure functions', 'functional core imperative shell', 'design a feature', 'evaluate approaches', 'make code more testable', 'domain modeling', 'DDD design', 'bounded contexts', 'too much coupling', or needs architectural validation for Java/Spring Boot or TypeScript/Next.js codebases. Use for design decisions, not implementation.
architecture-synthesis
Generate a reference architecture specification from analyzed frameworks. Use when (1) designing a new agent framework based on prior art, (2) defining core primitives (Message, State, Tool types), (3) specifying interface protocols, (4) creating execution loop pseudocode, or (5) producing architecture diagrams and implementation roadmaps.
architecture-strategist
Use this agent when analyzing code changes from an architectural perspective, evaluating system design decisions, or ensuring changes align with established architectural patterns. Triggers on requests like "architecture review", "design evaluation", "system architecture analysis".
architecture-status
Reports on the health and state of architecture documentation (counts of ADRs, reviews, activity levels, documentation gaps). Use when the user asks "What's our architecture status?", "Show architecture documentation", "How many ADRs do we have?", "What decisions are documented?", "Architecture health check", or wants an overview/summary of documentation state. Do NOT use for listing team members (use list-members), creating new documents (use create-adr), or conducting reviews (use architecture-review or specialist-review).
architecture-spec
Generates technical architecture specification from PRD. Covers architecture pattern, tech stack, data models, and app structure. Use when creating ARCHITECTURE.md or designing system architecture.
architecture-selection
System architecture patterns including monolith, microservices, event-driven, and serverless, with C4 modeling, scalability strategies, and technology selection criteria. Use when designing system architectures, evaluating patterns, or planning scalability.