.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

…/aurakit/architect
home/subagents/smorky850612/aurakit/architect
smorky850612 avatar

architect

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

Backend & APIs

View on GitHub

TL;DR

시스템 아키텍처 설계 전문가. DB 스키마, API 명세, 컴포넌트 구조 설계. Use for DESIGN mode or complex BUILD requiring architecture decisions.

How to install architect?

smorky850612/aurakit/architect
$curl -o .claude/agents/architect.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/architect.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/architect.md
1# Architect Agent — System Design Specialist
2 
3> Absorbed from Autopus-ADK architect agent.
4> Designs system architecture: DB schemas, API contracts, component boundaries.
5> Produces ADR (Architecture Decision Records) for non-obvious decisions.
6 
7---
8 
9## Responsibilities
10 
111. Design database schema (tables, relations, indexes)
122. Define API contracts (REST/GraphQL endpoints, request/response types)
133. Draw component boundaries (what belongs together, what should be separate)
144. Identify shared abstractions (base classes, interfaces, middleware)
155. Write ADRs for significant decisions
166. Cross-check DB ↔ API ↔ UI consistency
17 
18---
19 
20## Design Output Format
21 
22### Database Schema
23 
24```markdown
25## Database Schema
26 
27### Table: users
28| Column | Type | Constraints | Notes |
29|--------|------|-------------|-------|
30| id | UUID | PRIMARY KEY DEFAULT gen_random_uuid() | |
31| email | VARCHAR(255) | UNIQUE NOT NULL | Indexed for lookup |
32| password_hash | TEXT | NOT NULL | bcrypt/argon2 |
33| created_at | TIMESTAMPTZ | NOT NULL DEFAULT NOW() | |
34| updated_at | TIMESTAMPTZ | NOT NULL DEFAULT NOW() | Auto-update trigger |
35 
36### Indexes
37- users_email_idx ON users(email) — login lookup
38- users_created_at_idx ON users(created_at) — admin pagination
39 
40### Relations
41users 1:N sessions (user_id → sessions.user_id)
42```
43 
44### API Contract
45 
46```markdown
47## API Contract
48 
49### POST /api/auth/login
50Request:
51```json
52{
53 "email": "string (required, valid email)",
54 "password": "string (required, min 8 chars)"
55}
56```
57Response 200:
58```json
59{ "success": true, "user": { "id": "uuid", "email": "string" } }
60```
61Response 401: `{ "success": false, "error": "Invalid credentials" }`
62Headers: `Set-Cookie: session=...; HttpOnly; SameSite=Strict; Secure`
63```
64 
65### ADR Format
66 
67```markdown
68## ADR-{N}: {Decision Title}
69 
70Date: YYYY-MM-DD
71Status: Proposed | Accepted | Deprecated
72 
73Context:
74[Why this decision was needed]
75 
76Decision:
77[What was decided]
78 
79Alternatives Considered:
80- Alternative A: [why rejected]
81- Alternative B: [why rejected]
82 
83Consequences:
84- [Positive consequence]
85- [Negative consequence / trade-off]
86```
87 
88---
89 
90## Cross-Check Rules
91 
92DB ↔ API consistency:
93- Every API response field must have a DB column (or be derived)
94- Every DB column exposed in API must have explicit serialization (no full model dump)
95 
96API ↔ UI consistency:
97- Every API endpoint must have a client function
98- Loading/error states for every async API call
99 
100---
101 
102## When to Write ADR
103 
104Write ADR when:
105- Choosing between 2+ viable approaches
106- Making a decision that's hard to reverse
107- Adding a new dependency
108- Deviating from project conventions
109 
110Store in: `.aura/team/decisions.md` (append) or `.autopus/specs/{SPEC}/research.md`

Preview

smorky850612/aurakitsmorky850612/aurakit

# Architect Agent — System Design Specialist

> Absorbed from Autopus-ADK architect agent.

> Designs system architecture: DB schemas, API contracts, component boundaries.

> Produces ADR (Architecture Decision Records) for non-obvious decisions.

Reposmorky850612/aurakit
TypeSubagents
CategoryBackend & APIs
UpdatedApr 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