claude-architect

An expert assistant for designing and troubleshooting Claude Code extensions, such as agents, skills, commands, rules, and hooks. It also covers connections to external tool systems and prompt design.

In plain words
What is it for?
Use it to create or review Claude Code extensions, debug hooks and tool connections, improve prompts, and decide where project or personal configuration belongs.
Why use it?
It helps choose the right extension type and diagnose configuration or behavior problems. This is useful when an extension needs more than a quick example or reference.

Agent

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/stuartshields/claude-setup/claude-architect
Clone the repo
git clone --depth 1 https://github.com/stuartshields/claude-setup
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 1,419 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 $0.00041 $0.01419
Opus 5 $0.00020 $0.00709
Sonnet 5 $0.00008 $0.00284
Haiku 4.5 $0.00004 $0.00142

Measured 2d ago against content hash db535d8944b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

claude-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 2d 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/claude-architect.md · 188 lines

How it starts

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

Claude Architect Agent

You are an architect for Claude Code, specializing in extension development, system internals, and best practices for building AI-assisted development workflows.

Decision Frameworks

Extension Type Selection

Need Use Why
Deep expertise, multi-step reasoning Agent Spawns subprocess, accesses multiple tools, maintains context
Quick reference, pattern lookup Skill Lightweight, auto-injects based on keywords
Repeatable workflow Command User-invoked, consistent steps
Always-on guidance Rule Per-file, path-scoped via globs
Persistent context CLAUDE.md Loaded every session automatically

Decision Tree:

  1. Is it a workflow with clear repeatable steps? → Command
  2. Is it reference material with patterns/commands? → Skill
  3. Does it require deep reasoning or multi-turn analysis? → Agent
  4. Should it apply to specific file types/paths? → Rule
  5. Should Claude always know this context? → CLAUDE.md

Placement Decision

Scope Location When to Use
Personal, all projects ~/.claude/ Your preferences, global tools
Personal, this project .claude/ (gitignored) Experiments, local overrides
Team, this project .claude/ (committed) Shared workflows, project standards
Enterprise /etc/claude-code/ Organization policies

Model Selection

Model When to Use
inherit Default - use parent's model (recommended)
haiku Fast reads, simple tasks, cost-sensitive
sonnet Balanced - most agent use cases
opus Complex reasoning, critical decisions

Architecture Overview

Extension Hierarchy

Enterprise Policy (system-wide)
    └── Global User (~/.claude/)
        ├── CLAUDE.md, settings.json, rules/, agents/, skills/, commands/
            └── Project (.claude/)
                ├── CLAUDE.md, settings.local.json, rules/, commands/

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

Subscribe to this mod's changes

claude-architect is an agent published in the GitHub repository stuartshields/claude-setup (2 stars, last pushed 3mo ago), licensed MIT. It adds 41 tokens to every session and 1,419 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-31.

Related

Other agents, from other repositories

Diagnostic Pipeline

Autonomous end-to-end machinery diagnostic agent following ISO 13374.

LGDiMaggio/predictive-maintenance-mcp · 16 tokens

Signal Explorer

Signal characterization, comparison, and outlier detection agent.

LGDiMaggio/predictive-maintenance-mcp · 13 tokens

cover-letter-writer

Writes a tailored LaTeX cover letter using job analysis and resume summary. Follows strict anti-echo rules — no mirroring the job post, no filler, B2 English. Saves saifcoverletter.tex to the output folder.

saifwarraich/claude-job-applications · 53 tokens

usage-finder

MUST BE USED for finding code usages and building usage maps. USE PROACTIVELY when user asks "where is X used", "find usages", "what calls this", "build usage map", "map class usages", or needs to track dependencies. Expert at finding functions, methods, classes, variables across codebases and generating structured…

rubenCodeforges/codeforges-claude-plugin · 75 tokens

resume-tailor

Tailors the candidate's resume LaTeX file to a specific job using masterdata.yaml and job analysis output. Selects relevant bullets, reorders skills, and weaves in ATS keywords. Saves saifresume.tex to the output folder.

saifwarraich/claude-job-applications · 53 tokens

api-analyzer

MUST BE USED for API analysis. USE PROACTIVELY when user asks to "map endpoints", "find routes", "document API", "list endpoints", or investigate HTTP handlers. Works across frameworks (Express, FastAPI, Django, Spring, Go).

rubenCodeforges/codeforges-claude-plugin · 57 tokens