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 skills add kok-o/koko-contextos-agents --skill architecture-diagramsgit clone --depth 1 https://github.com/kok-o/koko-contextos-agentsWrote 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/skills/kok-o/koko-contextos-agents/architecture-diagrams)<a href="https://agentmods.dev/skills/kok-o/koko-contextos-agents/architecture-diagrams"><img src="https://agentmods.dev/badge/skills/kok-o/koko-contextos-agents/architecture-diagrams/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/skills/kok-o/koko-contextos-agents/architecture-diagrams"><img src="https://agentmods.dev/badge/skills/kok-o/koko-contextos-agents/architecture-diagrams.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.00036 | $0.01246 |
| Opus 5 | $0.00018 | $0.00623 |
| Sonnet 5 | $0.00007 | $0.00249 |
| Haiku 4.5 | $0.00004 | $0.00125 |
Grade A, and why
architecture-diagrams 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 — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
architecture-diagrams
Overview
Visual architecture engineering skill inspired by tt-a1i/archify. Replaces static ASCII art and rigid default diagrams with crisp, self-contained SVG and responsive HTML diagrams featuring modern dark-mode palettes, pulse animations for event flows, and strict C4-model component boundaries.
When to Use
Activate whenever:
- Designing or explaining distributed systems, microservices, or full-stack architectures.
- Visualizing complex auth flows (OAuth2, PKCE), multi-step payment sagas, or CDC outbox data pipelines.
- User requests an architecture diagram, flow chart, sequence diagram, or visual system design.
Rules & Patterns
1. Diagram Types Supported
- System Landscape / C4 Container Diagram:
- Clients (Web, Mobile, Third-party) → API Gateway / CDN → Microservices / Serverless → Storage / Event Brokers.
- Sequence Flow Diagram:
- Step-by-step lifecycles with synchronous requests, asynchronous pub/sub events, and compensating transactions.
- Data Pipeline & Event-Driven Topology:
- Primary DB → Transactional Outbox → CDC (Debezium) → Kafka Topic → Consumers → Materialized Views.
2. Aesthetic & Visual Invariants
- Dark Theme by Default: Surface
#0B0F19, containers#1E293B, borders#334155, text#F8FAFC. - Semantic Component Accents:
- Client / Frontend: Sky Blue (
#38BDF8) - API Gateway / Router: Indigo (
#818CF8) - Business Services: Emerald Green (
#34D399) - Databases / Storage: Amber / Orange (
#F59E0B) - Message Brokers / Event Buses: Purple (
#A855F7)
- Client / Frontend: Sky Blue (
- Active Data-Flow Motion: Use subtle CSS
@keyframeson SVG stroke dashes (stroke-dasharray,stroke-dashoffset) to show active direction of messages and data streams.
Code Examples
Standalone Animated SVG Data-Flow Pattern
<svg viewBox="0 0 800 200" xmlns="http://www.w3.org/2000/svg" class="bg-slate-950 rounded-xl p-4 w-full">
<defs>
<style>
.flow-line { stroke: #38BDF8; stroke-width: 2; stroke-dasharray: 6,6; animation: flow 1.5s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -12; } }
.box { fill: #1E293B; stroke: #334155; stroke-width: 1.5; rx: 8; }
.text-title { fill: #F8FAFC; font-family: sans-serif; font-size: 14px; font-weight: 600; }
.text-sub { fill: #94A3B8; font-family: monospace; font-size: 11px; }
</style>
</defs>
<!-- Client Node -->
<rect x="30" y="70" width="160" height="60" class="box" />
<text x="110" y="96" text-anchor="middle" class="text-title">Next.js Client</text>
<text x="110" y="114" text-anchor="middle" class="text-sub">React 19 / RSC</text>
<!-- Data Flow -->
<line x1="190" y1="100" x2="330" y2="100" class="flow-line" />
<!-- API Gateway -->
<rect x="330" y="70" width="160" height="60" class="box" />
<text x="410" y="96" text-anchor="middle" class="text-title">API Gateway</text>
<text x="410" y="114" text-anchor="middle" class="text-sub">Auth & Rate Limiting</text>
<!-- Flow to Database -->
<line x1="490" y1="100" x2="630" y2="100" class="flow-line" />
<!-- Database -->
<rect x="630" y="70" width="140" height="60" class="box" />
<text x="700" y="96" text-anchor="middle" class="text-title">PostgreSQL</text>
<text x="700" y="114" text-anchor="middle" class="text-sub">Prisma / Outbox</text>
</svg>
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 109 lines · 36 tokens per session scan A c1fc438ce69b
architecture-diagrams is a skill published in the GitHub repository kok-o/koko-contextos-agents (2 stars, last pushed 7d ago), licensed MIT. It adds 36 tokens to every session and 1,246 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-05.
Other skills, from other repositories
event_driven
Structure systems around asynchronous, event-based communication to decouple producers and consumers for improved scalability and resilience. Use when building loosely coupled systems with asynchronous message-based communication.
cache_patterns
Instruction set for enabling and operating the Spring Cache abstraction in Spring Boot when implementing application-level caching for performance-sensitive workloads.
event_driven
Structure systems around asynchronous, event-based communication to decouple producers and consumers for improved scalability and resilience. Use when building loosely coupled systems with asynchronous message-based communication.
angular-http-client
Integrate HttpClient, Interceptors, and API interactions in Angular. Use when integrating HttpClient, writing interceptors, or handling API calls in Angular.
write-zot-themes
Help the user create, install, or package zot themes, including theme-only extensions.
code-quality-principles
Applies KISS, YAGNI, and SOLID principles for clean code with reduced complexity. Use when refactoring or reviewing code for over-engineering.