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.
git clone --depth 1 https://github.com/noizu-labs-ml/NoizuPromptLingoWrote 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/commands/noizu-labs-ml/noizupromptlingo/npl-update-arch-doc)<a href="https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/npl-update-arch-doc"><img src="https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/npl-update-arch-doc/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.
<a href="https://agentmods.dev/commands/noizu-labs-ml/noizupromptlingo/npl-update-arch-doc"><img src="https://agentmods.dev/badge/commands/noizu-labs-ml/noizupromptlingo/npl-update-arch-doc.svg" alt="Reviewed on agentmods" width="80" 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.00000 | $0.00996 |
| Opus 5 | $0.00000 | $0.00498 |
| Sonnet 5 | $0.00000 | $0.00199 |
| Haiku 4.5 | $0.00000 | $0.00100 |
Grade A, and why
npl-update-arch-doc 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.
This is a copy
100% identical to update-arch-doc — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PROJ-ARCH.md — Maintenance Guide
Purpose
docs/PROJ-ARCH.md provides a high-level architectural overview of the project. It should remain concise and scannable, serving as an entry point for understanding system design.
Structure
docs/
├── PROJ-ARCH.md # Main architecture overview (keep small)
└── arch/
├── data-flow.md # Detailed section documents
├── api-design.md
├── infrastructure.md
└── ...
Content Guidelines
What to Include in PROJ-ARCH.md
- System overview (2-3 paragraphs max)
- Core components list with one-line descriptions
- High-level diagrams (mermaid preferred)
- Key design decisions and rationale (brief)
- Technology stack summary
- References to detailed
arch/*.mdfiles
Section Template
## [Section Name]
[2-4 sentence summary of this architectural concern]
→ *See [arch/section-name.md](arch/section-name.md) for details*
Size Limits
| Location | Target Size | Action When Exceeded |
|---|---|---|
| PROJ-ARCH.md | < 300 lines | Extract sections to arch/ |
| Individual sections | < 15 lines | Move to arch/{section}.md |
| arch/*.md files | < 200 lines | Consider further decomposition |
When to Extract
Move content to arch/{section}.md when:
- A section exceeds ~15 lines
- The section contains implementation details beyond "what" into "how"
- The section includes extensive code examples
- Multiple subsections emerge within a section
Extraction Process
- Create
docs/arch/{section-name}.mdwith full content - Replace section in PROJ-ARCH.md with:
- 2-4 sentence summary
- Link to detailed document
- Ensure the summary captures the essence without requiring the reader to click through for basic understanding
Example PROJ-ARCH.md
# Project Architecture
## Overview
Brief description of what the system does and its primary architectural style
(e.g., microservices, monolith, event-driven).
## System Diagram
\`\`\`mermaid
graph TB
A[Client] --> B[API Gateway]
B --> C[Service A]
B --> D[Service B]
C --> E[(Database)]
\`\`\`
## Core Components
| Component | Purpose |
|-----------|---------|
| API Gateway | Request routing, auth |
| Service A | Handles X domain |
| Service B | Handles Y domain |
## Data Flow
Requests enter through the gateway, authenticate via JWT, and route to
appropriate services. Events propagate via message queue.
→ *See [arch/data-flow.md](arch/data-flow.md) for details*
## Infrastructure
Deployed on Kubernetes with Postgres and Redis backing stores.
→ *See [arch/infrastructure.md](arch/infrastructure.md) for details*
## Key Decisions
- **Why microservices**: Scaling requirements for component X
- **Why Postgres**: ACID compliance needed for financial data
→ *See [arch/decisions.md](arch/decisions.md) for ADRs*
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 · 139 lines · 0 tokens per session scan A aed7c1cf4c8c
npl-update-arch-doc is a command published in the GitHub repository noizu-labs-ml/NoizuPromptLingo (13 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 996 tokens. A static security scan graded it A with 0 findings. It is 100% identical to update-arch-doc, differing in 0 lines, and is treated as a copy.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.