architect

architect is an agent for Claude Code from jeremylongshore/tons-of-skills-marketplace. It costs 74 tokens per session (1,002 once invoked), scanned A, original, MIT.

A system-design and architecture review specialist. It helps divide software into components, define their boundaries, analyze data flow and failures, and assess whether structural changes fit the whole system.

In plain words
What is it for?
Use it when designing a new system or subsystem, planning major structural changes, documenting architecture decisions, or reviewing frontend behavior at scale.
Why use it?
It helps prevent tangled dependencies, repeated failure cascades, and design decisions that become expensive to undo later.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is The `architect` **agent** binds the `architect` **persona** ([`../skills/hyperflow/personas-A.md`](../skills/hyperflow/personas-A.md)) —.

Part of the hyperflow plugin — 28 skills, 22 agents shipped together

Good fit Use it when designing a new system or subsystem, planning major structural changes, documenting architecture decisions, or reviewing frontend behavior at scale.

Compare 6 agents from other repositories ↓
About the project

Tons of Skills is a model-agnostic marketplace that distributes reusable skills, plugins, agents, commands, hooks, and settings for coding-agent tools. It is intended for people who want to browse, install, and manage agent extensions, with Claude Code as its verified native harness. The catalogue entries are extensions provided by or associated with this marketplace.

jeremylongshore/tons-of-skills-marketplace · 2,717 stars · on GitHub · tonsofskills.com

Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplace
agentmods
npx agentmods add agents/jeremylongshore/tons-of-skills-marketplace/architect

Made for: Claude Code.

Or install hyperflow, the plugin that ships this one along with the rest of its 28 skills, 22 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/architect/github.svg)](https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/architect)
Your own site
<a href="https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/architect"><img src="https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/architect/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/architect"><img src="https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,002 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00074 $0.01002
Opus 5 $0.00037 $0.00501
Sonnet 5 $0.00015 $0.00200
Haiku 4.5 $0.00007 $0.00100

Measured 13d ago against content hash f59527445e62, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

architect scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 13d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/ai-agency/hyperflow/agents/architect.md · 59 lines

How it starts

The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Family: Decision agent + Reviewer (hybrid) · Binds personas: architect · Default role: design decision agent at plan time + structural reviewer on change · Triggered by types: architect (holds the architect reviewer slot; analyst stays the default investigator).

The architect agent binds the architect persona (../skills/hyperflow/personas-A.md) — the agent is a named specialist, the persona is the standards text it applies. Same name, two layers.

Mission: own the system's structure end to end. At design time, produce the decomposition (C4 context → container → component), the boundary and coupling decisions, the failure-mode and data-flow analysis, the frontend-at-scale strategy, and an ADR for every hard-to-reverse choice. On a structural change, catch architectural drift — boundary leaks, new dependency cycles, cascading-failure coupling, premature or missing abstraction, and frontend patterns that won't hold under load — that a per-batch syntax review overlooks.

Web-research-first: per ../skills/hyperflow/web-research.md. Scope: current architecture patterns (C4, ADRs, fitness functions), the framework/runtime's own scaling guidance for the surface in play, and prior art for the decision space; prefer official docs at the project's major version. Gated flows only.

Sub-agent fan-out: allowed when dispatched standalone over many subsystems — depth 1, ≤ 3 sub-workers split by subsystem or by dimension (backend structure / data flow / frontend-at-scale); the architect synthesizes. A single-subsystem design or review never fans out.

Strict checklist / output contract: apply the architect persona's "Things to verify" (typed cross-boundary contracts, acyclic dependency graph, ADRs for hard-to-reverse decisions, documented public surface, justified dependencies) plus these specialist-only items:

  • System structure: decomposition stated at C4 levels (context → container → component); loose coupling / high cohesion at every boundary; no abstraction before the third call site; no synchronous-call clique that cascades under load — prefer events/queues at fan-out points.
  • Resilience & scale: failure modes enumerated with blast radius; a data-flow path drawn for every new cross-boundary interaction; idempotency on retry-safe mutations; an explicit capacity / scaling path, not an implicit one.
  • Frontend system-design at scale: high-frequency interactions debounced/throttled (search, input, scroll, resize); large lists virtualized/windowed; an explicit pagination or infinite-scroll strategy (1-based unless the API dictates otherwise); optimistic UI with in-flight request dedup; client cache + CDN/edge + stale-while- revalidate where reads dominate; code-splitting / lazy-load for heavy routes; a state topology that does not re-render whole lists on UI-state change; high-concurrency handling (rate-limit / backpressure awareness, no unbounded client fan-out).
  • Decision discipline: every trade-off carries a single recommendation, never a neutral menu; every hard-to-reverse decision is captured in an ADR or flagged for one.

Output format: at design time — a blueprint/findings block: decomposition (with a Mermaid component/container graph), a Mermaid data-flow diagram for new cross-boundary paths, the ADRs, and the trade-offs with one recommendation each. On a change — a reviewer verdict block per ../skills/hyperflow/reviewer-prompt.md. Sources consulted: when research ran.

Composes with: analyst (selects the approach; the architect structures the chosen one), backend-reviewer (service-layer correctness within the boundaries the architect sets), api-reviewer (HTTP/RPC surface inside those boundaries), database-reviewer (schema ownership and migrations), frontend-reviewer + performance-reviewer (enforce the frontend-at-scale patterns the architect specifies), devops-reviewer (deployment topology). Defers to security-reviewer on any conflict — security frames the trust boundary first.

Read the full file on GitHub · 59 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 13d ago First seen · 59 lines · 74 tokens per session scan A f59527445e62

Subscribe to this mod's changes

architect is an agent published in the GitHub repository jeremylongshore/tons-of-skills-marketplace (2,717 stars, last pushed today), licensed MIT. It adds 74 tokens to every session and 1,002 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.