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 agentmods add instructions/suryast/indonesia-civic-stack/agents-mdgit clone --depth 1 https://github.com/suryast/indonesia-civic-stackWrote 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/instructions/suryast/indonesia-civic-stack/agents-md)<a href="https://agentmods.dev/instructions/suryast/indonesia-civic-stack/agents-md"><img src="https://agentmods.dev/badge/instructions/suryast/indonesia-civic-stack/agents-md.svg" alt="Measured on agentmods" 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.02095 | $0.02095 |
| Opus 5 | $0.01047 | $0.01047 |
| Sonnet 5 | $0.00419 | $0.00419 |
| Haiku 4.5 | $0.00210 | $0.00210 |
Grade C, and why
indonesia-civic-stack AGENTS.md scanned grade C with 2 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
4. Check portal HTML structure: `curl -s "https://portal.go.id" | python -m bs4` Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
async def fetch(query: str, *, proxy_url: str | None = None) -> CivicStackResponse: How it starts
The opening of the file, as written. The whole thing — 186 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — AI Agent Development Guide
This file helps AI coding agents (Claude Code, Codex, Cursor, etc.) work effectively in this repo.
Project Overview
indonesia-civic-stack is a Python SDK + MCP server + REST API that wraps 11 Indonesian government data portals into a unified interface. Every module returns CivicStackResponse.
Architecture
indonesia-civic-stack/
├── civic_stack/ # The installable package
│ ├── shared/ # Core shared code (DO NOT break these)
│ │ ├── schema.py # CivicStackResponse — the universal envelope
│ │ ├── http.py # civic_client(), fetch_with_retry(), proxy support
│ │ └── mcp.py # CivicStackMCPBase — base class for MCP servers
│ ├── bpom/ # Example module (Food & Drug registry)
│ │ ├── scraper.py # fetch() + search() — core logic
│ │ ├── normalizer.py # Raw HTML/JSON → structured dict
│ │ ├── router.py # FastAPI routes
│ │ ├── server.py # MCP server (FastMCP)
│ │ ├── app.py # FastAPI app entry point
│ │ ├── Dockerfile
│ │ └── README.md
│ └── ... (one directory per government portal)
├── proxy/ # CF Worker proxy for geo-blocked portals
├── tests/ # VCR-based tests (no live portal calls in CI)
└── app.py # Unified FastAPI app (all modules)
Key Patterns
Every module MUST follow this contract:
# civic_stack/<name>/scraper.py
async def fetch(query: str, *, proxy_url: str | None = None) -> CivicStackResponse:
"""Single-record lookup by ID."""
async def search(keyword: str, *, proxy_url: str | None = None) -> list[CivicStackResponse]:
"""Multi-result keyword search. Returns [] on not-found, never raises."""
HTTP client — always use civic_client():
from civic_stack.shared.http import civic_client, fetch_with_retry
async with civic_client(proxy_url=proxy_url) as client:
response = await fetch_with_retry(client, "GET", url, rate_limiter=_limiter)
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 · 186 lines · 2,095 tokens per session scan C da64dc6dcac3
indonesia-civic-stack AGENTS.md is an instructions file published in the GitHub repository suryast/indonesia-civic-stack (6 stars, last pushed 25d ago), licensed MIT. It adds 2,095 tokens to every session, about $0.0105 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
curb CLAUDE.md
Claude Code instructions for alevizio/curb, covering curb — sf street parking, block by block, what it is, stack (intentionally minimal), spatial queries (verified working) and key product decisions / constraints (don't regress these).
curb AGENTS.md
AGENTS.md instructions for alevizio/curb, covering curb — sf street parking, block by block, what it is, stack (intentionally minimal), spatial queries (verified working) and key product decisions / constraints (don't regress these).
ph-civic-data-mcp CLAUDE.md
Claude Code instructions for xmpuspus/ph-civic-data-mcp, covering claude.md - ph-civic-data-mcp, what this is, contracts every change must hold, registration and module layout and psa openstat landmines.
forthepeople CLAUDE.md
Claude Code instructions for jayanthmb14/forthepeople, covering claude.md — forthepeople.in project instructions, project, database schema changes (critical — changed june 2026), documentation location and completed prompts archive.
civic-ai-tools AGENTS.md
AGENTS.md instructions for npstorey/civic-ai-tools, covering agents.md, boundaries, commands, mcp configuration and where the detail lives.
civ.iq CLAUDE.md
Claude Code instructions for civdotiq/civ.iq, covering claude.md - civ.iq ai assistant instructions, quick context, critical rules (never violate), project structure and domain rules (in .claude/rules/).