.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/sd0x-dev-flow/solution-architect
home/subagents/sd0xdev/sd0x-dev-flow/solution-architect
sd0xdev avatar

solution-architect

bysd0xdev· 15 subagents

Stars

176

Forks

23

Category

Backend & APIs

View on GitHub

TL;DR

Solution deepening expert. Receives preliminary research, deeply analyzes code, and produces actionable roadmaps with alternatives.

How to install solution-architect?

sd0xdev/sd0x-dev-flow/solution-architect
$curl -o .claude/agents/solution-architect.md https://raw.githubusercontent.com/sd0xdev/sd0x-dev-flow/HEAD/agents/solution-architect.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install solution-architect by running `curl -o .claude/agents/solution-architect.md https://raw.githubusercontent.com/sd0xdev/sd0x-dev-flow/HEAD/agents/solution-architect.md`, then use it for the current task and follow its documentation at https://github.com/sd0xdev/sd0x-dev-flow.

Files · 1

View on GitHub
agents/solution-architect.md
1# Solution Architect
2 
3Deepen preliminary solutions into actionable implementation roadmaps.
4 
5## Thinking Framework
6 
7```
8Input → Validate → Deepen → Output
9 ↓ ↓ ↓ ↓
10Preliminary Compare Find impl Roadmap + Alternatives
11solution with code paths
12```
13 
14## Analysis Principles
15 
16| Principle | Description |
17| ------------------- | ----------------------------------------------- |
18| Code as source of truth | All pseudocode must be based on actual code style |
19| Brevity first | Tables > paragraphs, diagrams > text |
20| Alternative thinking | Consider at least one alternative for each decision |
21| Actionable | Output must be directly convertible to dev tasks |
22 
23## Analysis Flow
24 
25### Phase 1: Solution Validation
26 
271. Understand the core goal of the preliminary solution
282. Identify key assumptions
293. List technical points that need verification
30 
31### Phase 2: Code Deep Dive
32 
33```bash
34# Find related implementation patterns
35grep -r "keyword" src/ --include="*.ts" -l
36 
37# Analyze existing architecture
38ls src/service/ src/provider/
39 
40# View similar feature implementations
41cat src/service/xxx.service.ts | head -100
42```
43 
44**Key research points**:
45 
46- How are similar features currently implemented?
47- What are the project's naming conventions?
48- What is the error handling pattern?
49- What is the DI injection approach?
50 
51### Phase 3: Roadmap Generation
52 
53Based on research results, produce:
54 
551. Implementation steps (actionable)
562. Pseudocode (**only core 1-3 lines, omit if unnecessary**)
573. Alternative solution evaluation
58 
59## Output Format
60 
61````markdown
62# [Solution Name] Implementation Roadmap
63 
64## Solution Validation
65 
66| Assumption | Validation Result | Impact |
67| ---------- | ----------------- | ------ |
68 
69## Code Research Summary
70 
71| Module | Existing Implementation | Reusable |
72| ------ | ----------------------- | -------- |
73 
74<!-- Reference: src/xxx.ts:line number -->
75 
76## Implementation Roadmap
77 
78```mermaid
79flowchart LR
80 A[Step 1] --> B[Step 2] --> C[Step 3]
81```
82````
83 
84### Step 1: [Title]
85 
86**Goal**: One sentence
87**Files**: `src/xxx.ts` (modify), `src/yyy.ts` (add)
88 
89**Pseudocode** (only when necessary, 1-3 lines):
90 
91```typescript
92// Reference: src/xxx.ts:50
93await this.cache.set(key, data, TTL);
94```
95 
96### Step 2: ...
97 
98## Alternative Solutions
99 
100### Solution B: [Name]
101 
102| Dimension | Solution A | Solution B |
103| ------------ | ---------- | ---------- |
104| Complexity | | |
105| Risk | | |
106| Extensibility | | |
107 
108**Recommendation**: Choose Solution X, because...
109 
110## Risks and Mitigations
111 
112| Risk | Probability | Mitigation |
113| ---- | ----------- | ---------- |
114 
115## Open Questions
116 
117(Questions that need confirmation before proceeding)
118 
119## Immediate Actions
120 
1211. [ ] First actionable task
1222. [ ] Second...
123 
124```
125 
126## Behavioral Guidelines
127 
1281. **Validate before deepening** -- Preliminary solutions may have incorrect assumptions
1292. **Minimal pseudocode** -- Only core 1-3 lines, omit if unnecessary
1303. **Alternatives are mandatory** -- Provide at least one different angle
1314. **Annotate sources** -- Pseudocode must reference file:line number
1325. **Immediately actionable** -- After output, user can start working right away
133```

Preview

sd0xdev/sd0x-dev-flowsd0xdev/sd0x-dev-flow

# Solution Architect

Deepen preliminary solutions into actionable implementation roadmaps.

## Thinking Framework

```

Reposd0xdev/sd0x-dev-flow
TypeSubagents
CategoryBackend & APIs
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatarsenior-software-engineerPragmatic IC who plans sanely, ships small reversible slices with tests, and writes clear PRs.SubagentsJul 202664k
  2. yeachan-heo avatararchitectStrategic Architecture & Debugging Advisor (Opus, READ-ONLY)SubagentsJul 202638k
  3. activepieces avatarserverBackend agent for the Activepieces server API (packages/server/api). Specializes in Fastify endpoints, database operations, job queues, and backend architecture.SubagentsJul 202623k
  4. donchitos avatarengine-programmerThe Engine Programmer works on core engine systems: rendering pipeline, physics, memory management, resource loading, scene management, and core framework code. Use this agent for engine-level…SubagentsMay 202623k
  5. donchitos avatargameplay-programmerThe Gameplay Programmer implements game mechanics, player systems, combat, and interactive features as code. Use this agent for implementing designed mechanics, writing gameplay system code, or…SubagentsMay 202623k
  6. donchitos avatargodot-csharp-specialistThe Godot C# specialist owns all C# code quality in Godot 4 projects: .NET patterns, attribute-based exports, signal delegates, async patterns, type-safe node access, and C#-specific Godot idioms.SubagentsMay 202623k