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.
npx agentmods add agents/smorky850612/aurakit/architectgit clone --depth 1 https://github.com/smorky850612/AurakitWrote 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.
[](https://agentmods.dev/agents/smorky850612/aurakit/architect)<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>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.
| Model | Per session | Once 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 |
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.
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
- Design database schema (tables, relations, indexes)
- Define API contracts (REST/GraphQL endpoints, request/response types)
- Draw component boundaries (what belongs together, what should be separate)
- Identify shared abstractions (base classes, interfaces, middleware)
- Write ADRs for significant decisions
- 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]
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.
- 6d ago First seen · 118 lines · 41 tokens per session scan A fffad73b43ab
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.
Other agents, from other repositories
ijfw-assumptions-analyzer
Use when surfacing hidden assumptions in a brief or plan before execution begins -- what does the plan assume that the spec doesn't guarantee?
ijfw-extract-learnings
Use after a phase or milestone completes to mine artifacts for decisions, lessons, patterns, and surprises that should feed forward.
ijfw-accessibility-reviewer
Design-phase WCAG 2.1 AA review of UI artefacts: contrast, semantics, focus, ARIA. Trigger per design review pass.
ring:qa
Senior QA Analyst for financial systems. Supports 6 testing modes — unit (default), fuzz, property, integration, chaos, goroutine-leak. Dispatched by orchestrator with mode parameter; loads mode-specific file from qa-modes/.
atomic-auditor
Final gate for a finished implementation. Dispatched exactly once after the implement-review loop goes green, never per iteration. Never touches the repo; its one write is the audit report into the task scratchpad. Audits the delivered work as a whole: cumulative spec compliance, cross-iteration coherence…
scout
Fast exploration agent. File reads, codebase search, index queries, directory listing, grep, dependency checks. Use when speed matters more than depth.