resonance-strategy-architect

Designs system architecture through C4 diagrams, ADRs, domain maps, and failure registries.

Updated Dec 1, 2025
One-click install
npx skills add https://github.com/manusco/wolfgang --skill resonance-strategy-architect-manusco
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: resonance-strategy-architect
Source: https://github.com/manusco/wolfgang/tree/main/.agents/skills/strategy/architect
Command: npx skills add https://github.com/manusco/wolfgang --skill resonance-strategy-architect-manusco

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Teams often start coding before defining system boundaries, leading to tangled services, duplicated business rules, and undocumented decisions. This Skill forces structural thinking first: it produces C4 diagrams, Architecture Decision Records, data-flow audits, and failure mode registries before any implementation begins. ## Core Features & Use Cases - System Design with C4 Models: Generates Level 1 Context and Level 2 Container diagrams (Mermaid or ASCII) so a new developer can understand system topology in minutes. - Architecture Decision Records: Records every major stack, database, or framework choice in a standardized ADR template capturing context, alternatives, and consequences. - Data-Flow and Drift Audits: Traces business rules across layers, flags rules duplicated in multiple places, and produces a drift-risk ranking with a single-source-of-truth recommendation. - Failure Mode Registry: Maps every codepath through Happy, Nil, Empty, and Error paths to eliminate silent failures before they reach production. - Use Case: When decomposing a monolith into services, use this Skill to draw the target container diagram, define bounded contexts with ubiquitous language, and write ADRs for each service boundary decision. ## Quick Start Ask the architect to design the system architecture for your multi-tenant SaaS app, producing C4 context and container diagrams plus an ADR for the decomposition decision.

Frequently Asked Questions about resonance-strategy-architect

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I document a system architecture decision?▼

Write an Architecture Decision Record using the standard ADR template: status, context, decision drivers, considered options, and positive and negative consequences. Store it in docs/adr/ with a numbered filename so the decision history is traceable.

What is the C4 model for software architecture diagrams?▼

The C4 model visualizes a system at four levels: System Context, Container, Component, and Code. Level 1 shows users and external systems, Level 2 shows applications and databases with technology labels, and Levels 3-4 are optional for complex internals.

How do I find duplicated business logic across frontend and backend?▼

Run a data-truth audit: trace each business rule through every layer, flag any rule implemented in more than one place, and produce a drift-risk ranking. Then recommend which single layer owns the rule as the source of truth.

When should I write an ADR versus skipping documentation?▼

Write an ADR whenever you add a database, change a major framework, adopt a third-party service, or restructure a monorepo. Even deciding where ambiguous utility logic lives is an architectural decision that needs its rationale recorded.

What are the limitations of an architecture-only review skill?▼

This Skill stays at the structural level and does not write implementation code, configure infrastructure, or design AI prompts and retrieval pipelines. Those tasks are delegated to backend, DevOps, and AI engineering specialists respectively.