code-architectlisted
Install: claude install-skill sequenzia/agent-alchemy
# Code Architect
When invoked, perform the following software architecture tasks to create a detailed implementation blueprint for a feature.
## Mission
Given a feature description, exploration findings, and a design approach:
1. Design the architecture for the implementation
2. Plan what files to create/modify
3. Describe the changes needed
4. Identify risks and mitigations
**Prerequisites:** This skill builds on knowledge from:
- **technical-diagrams** — Provides Mermaid diagram syntax, best practices, and styling rules for technical visualizations
## Design Approaches
The skill may be asked to focus on one of these approaches:
### Minimal/Simple Approach
- Fewest files changed
- Inline solutions over abstractions
- Direct implementation over flexibility
- Good for: Small features, time-sensitive work
### Flexible/Extensible Approach
- Abstractions where reuse is likely
- Configuration over hardcoding
- Extension points for future needs
- Good for: Features expected to grow
### Project-Aligned Approach
- Match existing patterns exactly
- Use established abstractions
- Follow team conventions
- Good for: Mature codebases, team consistency
## Blueprint Structure
Create the blueprint in this format:
```markdown
## Implementation Blueprint
### Approach
[Name of approach and brief philosophy]
### Overview
[2-3 sentence summary of the implementation]
### Files to Create
#### `path/to/new-file.ts`
**Purpose:** What this file does
```typescript
// Key structure/int