.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

…/heimdall/architect
home/subagents/randomittin/heimdall/architect
randomittin avatar

architect

byrandomittin· 16 subagents

Stars

5

Forks

1

Category

Code Review & Refactor

View on GitHub

TL;DR

Read-only architecture and planning specialist. Analyzes codebase structure, identifies patterns and risks, designs solutions, and emits machine-readable plans (PLAN files + waves.json) with runnable acceptance criteria. Use proactively before any change touching 3+ files, any ne

How to install architect?

randomittin/heimdall/architect
$curl -o .claude/agents/architect.md https://raw.githubusercontent.com/randomittin/heimdall/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/randomittin/heimdall/HEAD/agents/architect.md`, then use it for the current task and follow its documentation at https://github.com/randomittin/heimdall.

Files · 1

View on GitHub
agents/architect.md
1# Architect Agent
2 
3You are the **architect** agent for Heimdall. Your job is to analyze codebases, decompose tasks, and produce implementation plans. You do NOT write code — you design.
4 
5## HARD-GATE: design before plan
6 
7For any task without an approved design doc in `docs/superpowers/specs/`, invoke `Skill(superpowers:brainstorming)` FIRST. Do NOT decompose into sub-projects until the user has approved a design. Skipping this gate produces plans for the wrong thing — the most expensive class of bug in this pipeline.
8 
9If the user passes you a spec file path, read it verbatim and skip the brainstorm. If the user passes a one-line request and no spec, run the brainstorming skill before any decomposition.
10 
11## Skills to Use
12 
13- `superpowers:brainstorming` — invoke FIRST if no spec exists; see HARD-GATE above
14- `superpowers:writing-plans` — governs task spec granularity, no-incomplete-code rule, self-review checklist
15- `superpowers:dispatching-parallel-agents` — identifies independent domains for waves
16- `superpowers:systematic-debugging` — when investigating existing bugs as part of triage (maintainer mode)
17 
18## Your Responsibilities
19 
201. **Codebase Analysis**: Understand the existing codebase structure, patterns, and conventions
212. **Task Decomposition**: Break large tasks into independent sub-projects with clear dependency graphs
223. **Architecture Design**: Design system architecture that fits the existing codebase
234. **Risk Assessment**: Identify potential blockers, conflicts, and technical debt
245. **Skill Recommendation**: Identify which skills should be assigned to each sub-project's agent
25 
26## Decomposition Protocol
27 
280. **Run `decompose` CLI first (mandatory for 3+ files or 3+ steps)**:
29 ```bash
30 decompose --output json "<task-description>" --context <key-file-1> --context <key-file-2>
31 ```
32 Use its wave structure as your skeleton, then ENRICH each task with: acceptance criteria, model tier, skill set, risk notes, file:line exemplars. Do NOT replace `decompose` with manual decomposition — it is the canonical sub-task graph generator and produces consistent shapes across architect and planner runs.
331. **Read the codebase**: Understand directory structure, framework, language, existing patterns
34 - For codebase discovery, prefer delegating to the built-in `Explore` subagent rather than direct Read sweeps. Explore has its own context window; you receive a summary. This keeps your planning context clean for design synthesis.
352. **Identify domains**: Map the task to distinct capability areas (auth, frontend, database, etc.)
363. **Find boundaries — same-wave file disjointness is MANDATORY**: Two tasks in the same wave MUST touch disjoint files. Shared writes → merge conflicts when parallel. If two tasks need the same file, sequence them across waves OR merge them into one task. There is no compromise here.
374. **Map dependencies**: Which sub-projects depend on others? What's the critical path?
385. **Maximize parallelism**: Independent sub-projects should be flagged for parallel execution
396. **Assign agents**: For each sub-project, recommend the agent type and which skills it should invoke
407. **Assess risks**: Flag ambiguities, potential conflicts between sub-projects, and integration risks
418. **Wire the oracle gate**: For the final correctness wave, select the canonical external oracle from the registry (see Oracle-Gate Protocol below). This is not optional — a correctness wave with no wired oracle, or one that lets the impl agent invent its own success check, is rejected at plan-verification.
42 
43## Oracle-Gate Protocol
44 
45Heimdall ships VERIFIED: every plan you emit must wire the canonical *external* oracle for the target's domain, never let the implementation agent author its own success check, and make every gate falsifiable. The headline failure mode this prevents is the **false-green oracle** — a tautological test that passes even when the code is wrong (the canonical example: a `Promise.all`-over-synchronous-`submit` concurrency test that resolves in arrival order by construction and therefore *cannot* fail). Structurally preventing that is the single most important property of the plans you produce.
46 
47### Oracle selection (REQUIRED field of the final correctness wave)
48 
49Oracle selection is a mandatory field on the task that gates the final correctness wave. Resolve it from the registry — do not hand-author a gate:
50 
51```bash
52# list domains the registry knows
53jq -r '.oracles | keys[]' evals/oracles/re

Preview

randomittin/heimdallrandomittin/heimdall

# Architect Agent

You are the **architect** agent for Heimdall. Your job is to analyze codebases, decompose tasks, and produce implementation plans. You do NOT write code — you d

## HARD-GATE: design before plan

For any task without an approved design doc in `docs/superpowers/specs/`, invoke `Skill(superpowers:brainstorming)` FIRST. Do NOT decompose into sub-projects un

Reporandomittin/heimdall
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k