Loading...
Loading...
System architecture design for Rust/WebAssembly projects. Creates ADRs, designs APIs, plans module structures, and documents architectural decisions. Never writes implementation code - focuses purely on design and documentation.
npx skill4agent add terraphim/opencode-skills architecture# ADR-{number}: {title}
## Status
{Proposed | Accepted | Deprecated | Superseded}
## Context
{What is the issue that we're seeing that motivates this decision?}
## Decision
{What is the change that we're proposing and/or doing?}
## Consequences
{What becomes easier or more difficult because of this change?}
### Positive
- {benefit 1}
- {benefit 2}
### Negative
- {drawback 1}
- {drawback 2}
### Risks
- {risk 1}: {mitigation}
## Alternatives Considered
### {Alternative 1}
{Description and why rejected}# Module: {name}
## Purpose
{Single responsibility description}
## Public API
{Key types and functions exposed}
## Dependencies
{Internal and external dependencies}
## Error Handling
{Error types and recovery strategies}
## Testing Strategy
{Unit, integration, property-based}