architect

architect is an agent for Claude Code from smorky850612/Aurakit. It costs 41 tokens per session (722 once invoked), scanned A, original, MIT.

An agent for designing software architecture, including database structures, API agreements, and boundaries between components. It can record important design choices as architecture decision records.

In plain words
What is it for?
Use it to design database tables and indexes, REST or GraphQL interfaces, component structure, shared abstractions, and significant technical decisions.
Why use it?
It helps turn a complex build into a consistent plan and exposes mismatches between the database, API, and user interface before implementation.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the aurakit plugin — 3 skills, 23 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/smorky850612/aurakit/architect
Clone the repo
git clone --depth 1 https://github.com/smorky850612/Aurakit

Made for: Claude Code.

Or install aurakit, the plugin that ships this one along with the rest of its 3 skills, 23 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/smorky850612/aurakit/architect.svg)](https://agentmods.dev/agents/smorky850612/aurakit/architect)
Your own site
<a href="https://agentmods.dev/agents/smorky850612/aurakit/architect"><img src="https://agentmods.dev/badge/agents/smorky850612/aurakit/architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 722 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00041 $0.00722
Opus 5 $0.00020 $0.00361
Sonnet 5 $0.00008 $0.00144
Haiku 4.5 $0.00004 $0.00072

Measured 6d ago against content hash fffad73b43ab, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, 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 6d 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.

agents/architect.md · 118 lines

How it starts

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

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.


Responsibilities

  1. Design database schema (tables, relations, indexes)
  2. Define API contracts (REST/GraphQL endpoints, request/response types)
  3. Draw component boundaries (what belongs together, what should be separate)
  4. Identify shared abstractions (base classes, interfaces, middleware)
  5. Write ADRs for significant decisions
  6. Cross-check DB ↔ API ↔ UI consistency

Design Output Format

Database Schema

## Database Schema

### Table: users
| Column | Type | Constraints | Notes |
|--------|------|-------------|-------|
| id | UUID | PRIMARY KEY DEFAULT gen_random_uuid() | |
| email | VARCHAR(255) | UNIQUE NOT NULL | Indexed for lookup |
| password_hash | TEXT | NOT NULL | bcrypt/argon2 |
| created_at | TIMESTAMPTZ | NOT NULL DEFAULT NOW() | |
| updated_at | TIMESTAMPTZ | NOT NULL DEFAULT NOW() | Auto-update trigger |

### Indexes
- users_email_idx ON users(email) — login lookup
- users_created_at_idx ON users(created_at) — admin pagination

### Relations
users 1:N sessions (user_id → sessions.user_id)

API Contract

## API Contract

### POST /api/auth/login
Request:
```json
{
  "email": "string (required, valid email)",
  "password": "string (required, min 8 chars)"
}

Response 200:

{ "success": true, "user": { "id": "uuid", "email": "string" } }

Response 401: { "success": false, "error": "Invalid credentials" } Headers: Set-Cookie: session=...; HttpOnly; SameSite=Strict; Secure


### ADR Format

```markdown
## ADR-{N}: {Decision Title}

Date: YYYY-MM-DD
Status: Proposed | Accepted | Deprecated

Context:
[Why this decision was needed]

Decision:
[What was decided]

Alternatives Considered:
- Alternative A: [why rejected]
- Alternative B: [why rejected]

Consequences:
- [Positive consequence]
- [Negative consequence / trade-off]

Read the full file on GitHub · 118 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. 6d ago First seen · 118 lines · 41 tokens per session scan A fffad73b43ab

Subscribe to this mod's changes

architect is an agent published in the GitHub repository smorky850612/Aurakit (41 stars, last pushed 4mo ago), licensed MIT. It adds 41 tokens to every session and 722 once invoked, about $0.0002 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.