architect

architect is a command for coding agents from dansasser/claude-code-marketplace. It costs 0 tokens per session (943 once invoked), scanned A, original, MIT.

A command for analyzing a project's architecture, meaning how its parts, dependencies, and design decisions fit together.

In plain words
What is it for?
Use `/architect` on a file or folder to request pattern, scalability, security, dependency, or comprehensive architecture analysis.
Why use it?
It helps reveal structural patterns, dependency relationships, scalability concerns, and security issues across a file or directory.

Command

Part of the ollama-agents plugin — 5 commands, 3 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 commands/dansasser/claude-code-marketplace/architect
Clone the repo
git clone --depth 1 https://github.com/dansasser/claude-code-marketplace

Or install ollama-agents, the plugin that ships this one along with the rest of its 5 commands, 3 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/commands/dansasser/claude-code-marketplace/architect.svg)](https://agentmods.dev/commands/dansasser/claude-code-marketplace/architect)
Your own site
<a href="https://agentmods.dev/commands/dansasser/claude-code-marketplace/architect"><img src="https://agentmods.dev/badge/commands/dansasser/claude-code-marketplace/architect.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 943 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.00000 $0.00943
Opus 5 $0.00000 $0.00472
Sonnet 5 $0.00000 $0.00189
Haiku 4.5 $0.00000 $0.00094

Measured 4d ago against content hash 7fbf1d35dc8a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 4d 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/claude-ollama-agents/commands/architect.md · 141 lines

How it starts

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

Architecture Analysis with Ollama

Analyze system architecture, design patterns, and structural decisions.

Usage: /architect <file_or_directory> [aspect]

Aspects:

  • patterns: Design patterns and architectural patterns
  • scalability: Scalability analysis
  • security: Security architecture
  • dependencies: Dependency analysis
  • all: Comprehensive architecture review (default)

Examples:

  • /architect src/ - Full architecture analysis
  • /architect docs/architecture.md patterns - Pattern analysis
  • /architect src/api/ scalability - Scalability review

You are performing architecture analysis by orchestrating ollama agents.

Target: $1 Aspect: ${2:-all}

Your Process:

  1. Understand Scope:

    • Check if target is file or directory
    • For directories: Use @./dir/:tree as PRIMARY input for architecture analysis
    • Read architecture documentation if available
    • Map dependencies and relationships
  2. Directory Operations for Architecture:

    Architecture analysis is IDEAL for directory operations:

    Aspect Primary Operation Purpose
    all @./dir/:tree Full structure overview
    patterns @./dir/:tree + @./dir/:search:class Structure + class patterns
    scalability @./dir/:tree Module organization
    security @./dir/:tree + @./dir/:search:auth Security boundaries
    dependencies @./dir/:search:import Import analysis

    Example Architecture Prompt:

    ollama-prompt --prompt "Architecture analysis:
    
    Project Structure:
    @./src/:tree
    
    Import Dependencies:
    @./src/:search:^import
    @./src/:search:^from
    
    Analyze:
    - Layer separation
    - Module boundaries
    - Design patterns
    - Coupling and cohesion"
    
  3. Invoke Appropriate Agent:

    Specific Aspect Analysis: Use ollama-task-router agent with focused prompt:

    • Target: $1
    • Aspect: ${2:-all}
    • For directories: Agent uses @./dir/:tree for structure
    • Request specific analysis (patterns, scalability, security, dependencies)

    Comprehensive Analysis (aspect=all): Use ollama-parallel-orchestrator agent:

    • Perspectives: architecture, security, scalability, maintainability
    • Target: $1
    • Each perspective uses appropriate directory operations
    • Multi-angle deep analysis
  4. Analysis Framework (for agent to apply):

    Structure:

    • Separation of Concerns: Are responsibilities clearly separated?
    • Modularity: Are modules cohesive and loosely coupled?
    • Layering: Is there clear layering (presentation, business, data)?
    • Abstraction: Are abstractions at appropriate levels?

    Quality Attributes:

    • Scalability: Can system handle growth?
    • Maintainability: Is code easy to modify?
    • Testability: Can components be tested independently?
    • Security: Are security principles followed?
    • Performance: Are performance requirements met?

    Design Principles:

    • SOLID principles
    • DRY (Don't Repeat Yourself)
    • YAGNI (You Aren't Gonna Need It)
    • KISS (Keep It Simple)
  5. Your Role:

    • Invoke appropriate agent based on aspect
    • Receive architectural analysis
    • Format findings for user
    • Highlight key insights and recommendations
  6. Report Format:

    ## Architecture Analysis
    
    **Target:** $1
    **Aspect:** ${2:-all}
    
    ### Architecture Overview
    - High-level structure
    - Key components
    - Design patterns identified
    
    ### Strengths
    - What's working well
    - Good architectural decisions
    
    ### Concerns
    - Architectural issues
    - Anti-patterns found
    - Technical debt
    
    ### Recommendations
    - Specific improvements
    - Refactoring suggestions
    - Pattern applications
    

Why Tree View is Essential for Architecture:

  • Shows complete module hierarchy in ~500 tokens
  • Reveals layer separation (or lack thereof)
  • Exposes coupling through directory structure
  • Identifies module boundaries instantly

Read the full file on GitHub · 141 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. 4d ago First seen · 141 lines · 0 tokens per session scan A 7fbf1d35dc8a

Subscribe to this mod's changes

architect is a command published in the GitHub repository dansasser/claude-code-marketplace (9 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 943 tokens. 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.