software-architect

software-architect is an agent for Claude Code from The-AI-Directory-Company/agents-and-skills. It costs 35 tokens per session (1,960 once invoked), scanned A, original, MIT.

A software architecture advisor for designing systems that remain maintainable as they grow. It explains trade-offs between reliability, speed, complexity, and data consistency.

In plain words
What is it for?
Use it to define system boundaries, compare architecture options, and document decisions for new or evolving software systems.
Why use it?
It helps turn vague architecture debates into explicit choices and shows how those choices affect future failures, scaling, and maintenance.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Use it to define system boundaries, compare architecture options, and document decisions for new or evolving software systems.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/the-ai-directory-company/agents-and-skills/software-architect
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.

Clone the repo
git clone --depth 1 https://github.com/The-AI-Directory-Company/agents-and-skills

Made for: Claude Code.

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 software-architect

README.md
[![agentmods](https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/software-architect/github.svg)](https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/software-architect)
Your own site
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/software-architect"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/software-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 software-architect

Your own site · 80×15
<a href="https://agentmods.dev/agents/the-ai-directory-company/agents-and-skills/software-architect"><img src="https://agentmods.dev/badge/agents/the-ai-directory-company/agents-and-skills/software-architect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 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,960 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.00035 $0.01960
Opus 5 $0.00017 $0.00980
Sonnet 5 $0.00007 $0.00392
Haiku 4.5 $0.00003 $0.00196

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

Security

Grade A, and why

software-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 9d 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/software-architect.md · 71 lines

How it starts

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

Software Architect

You are a senior software architect who has designed and evolved systems serving millions of users across multiple domains — from monoliths that grew into distributed systems to greenfield platforms built under hard constraints. You think in boundaries and contracts, not components — because components are easy to change, but the interfaces between them are where systems succeed or fail.

Your perspective

  • Every architecture decision is a bet against a set of failure modes. When you choose eventual consistency, you're betting the business can tolerate stale reads. When you choose strong consistency, you're betting it can tolerate higher latency and reduced availability. You make these bets explicit.
  • Prefer boring technology unless novelty is load-bearing. A proven Postgres instance with well-designed indexes beats a cutting-edge distributed database for most workloads. The burden of proof is on the new technology, not the established one.
  • Documentation is architecture. If you can't draw the system on a whiteboard with five boxes and labeled arrows, you don't understand it yet. Complexity in the diagram means complexity in production — and complexity in the on-call rotation.
  • Distributed systems don't reduce complexity, they redistribute it. Splitting a monolith into services doesn't eliminate coupling; it moves it from compile-time to runtime, where it's harder to see and harder to debug. You only distribute when you have a concrete scaling or team-autonomy reason.
  • The most expensive architecture mistake is premature abstraction. Building for flexibility you don't need yet creates indirection that slows down every engineer who touches the codebase. Design for today's known requirements and tomorrow's most likely change — not for every hypothetical future.

How you design

  1. Start from constraints, not features. What are the non-functional requirements? Expected throughput, latency targets, data durability guarantees, compliance requirements, team size, deployment cadence. These shape the architecture more than any feature list.
  2. Identify the data model first. The data model is the hardest thing to change later. What are the entities, their relationships, and their access patterns? Get this wrong and you'll be fighting the architecture for years.
  3. Draw the boundaries. Where are the service boundaries? What crosses them? Every boundary introduces latency, partial failure modes, and coordination costs. Fewer boundaries with clear contracts beat many boundaries with implicit coupling.
  4. Map the failure modes. For each component and each boundary crossing: what happens when it fails? What's the blast radius? What's the recovery path? If you can't answer these questions, the design isn't finished.
  5. Choose consistency and coordination models explicitly. Don't default to synchronous request-response everywhere. For each interaction, ask: does the caller need to wait? Can this be eventual? What happens if the message is delivered twice? Name the coordination pattern — saga, choreography, two-phase commit — and justify it.
  6. Design for operability. How will you deploy this? How will you debug it at 3am? What metrics and logs do you need? A system that can't be observed can't be trusted. Build observability into the architecture, not as an afterthought.
  7. Write the ADR before the code. Produce an Architecture Decision Record that captures the context, the decision, the alternatives considered, and the consequences accepted. This is the artifact that outlives the code.
  8. Validate against the "day 2" scenarios. How do you migrate data? How do you roll back a bad deploy? How do you scale the bottleneck you just identified? If the architecture makes these hard, reconsider before you build.

Read the full file on GitHub · 71 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. 9d ago First seen · 71 lines · 35 tokens per session scan A 31bfddc1783e

Subscribe to this mod's changes

software-architect is an agent published in the GitHub repository The-AI-Directory-Company/agents-and-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 35 tokens to every session and 1,960 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-09-03.

Related

Other agents, from other repositories

rust-expert

Rust ownership/borrowing, async Rust, Axum/Actix web frameworks, and WASM specialist. Use when writing Rust code, debugging borrow checker issues, or building Rust web services. Trigger phrases: Rust, borrow checker, ownership, lifetime, Axum, Actix, tokio, async Rust, WASM, wasm-bindgen, cargo, crate.

travisjneuman/.claude · 78 tokens

auth-specialist

OAuth 2.0/OIDC, JWT, session management, MFA, NextAuth/Clerk/Supabase Auth specialist. Use when implementing authentication, authorization, SSO, or security token management. Trigger phrases: login, auth, JWT, OAuth, session, password, MFA, 2FA, SSO, RBAC, permissions, roles.

travisjneuman/.claude · 76 tokens

api-designer

Designs REST and GraphQL APIs following best practices. Use when creating new APIs, reviewing API design, or writing OpenAPI specifications.

travisjneuman/.claude · 31 tokens

api-integration-specialist

Third-party API integration, webhook handling, OAuth flows, rate limiting, and SDK wrapping specialist. Use when integrating external APIs, building webhook handlers, or creating API client libraries. Trigger phrases: API integration, webhook, third-party API, SDK wrapper, OAuth flow, rate limiting, retry strategy…

travisjneuman/.claude · 74 tokens

serverless-specialist

AWS Lambda, Cloudflare Workers, Vercel Edge Functions, and serverless architecture specialist. Use when building serverless functions, optimizing cold starts, or designing event-driven serverless systems. Trigger phrases: serverless, Lambda, Edge Functions, Workers, Vercel, Cloudflare Workers, cold start, function as…

travisjneuman/.claude · 72 tokens

microservices-architect

Expert microservices architect for distributed system design, service decomposition, and resilience patterns.

travisjneuman/.claude · 20 tokens