indonesia-civic-stack AGENTS.md

indonesia-civic-stack AGENTS.md is an instructions file for Codex, OpenCode from suryast/indonesia-civic-stack. It costs 2,095 tokens per session, scanned C, original, MIT.

Repository instructions for an AI agent working on an Indonesian government-data SDK, MCP server, and REST API. An SDK is a programming library, while an API is a way for other software to request data.

In plain words
What is it for?
They are for guiding development across modules that combine data from 11 Indonesian government portals, including scrapers, API routes, and MCP servers.
Why use it?
They explain the repository structure and shared rules so changes fit the project’s existing architecture.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions Claude Code; mentions AGENTS.md; mentions Codex.

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 instructions/suryast/indonesia-civic-stack/agents-md
Clone the repo
git clone --depth 1 https://github.com/suryast/indonesia-civic-stack

Made for: Codex, OpenCode.

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 indonesia-civic-stack AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/suryast/indonesia-civic-stack/agents-md.svg)](https://agentmods.dev/instructions/suryast/indonesia-civic-stack/agents-md)
Your own site
<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>
Per session 2,095 This file is loaded in full into every session.
When invoked 2,095 The same file — it is already loaded in full.
Security scan C 2 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.1 $0.02095 $0.02095
Opus 5 $0.01047 $0.01047
Sonnet 5 $0.00419 $0.00419
Haiku 4.5 $0.00210 $0.00210

Measured 6d ago against content hash da64dc6dcac3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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:
AGENTS.md · 186 lines

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)

Read the full file on GitHub · 186 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. 6d ago First seen · 186 lines · 2,095 tokens per session scan C da64dc6dcac3

Subscribe to this mod's changes

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.

Related

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).

alevizio/curb · 6,277 tokens

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).

alevizio/curb · 2,305 tokens

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.

xmpuspus/ph-civic-data-mcp · 4,321 tokens

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.

jayanthmb14/forthepeople · 1,732 tokens

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.

npstorey/civic-ai-tools · 1,549 tokens

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/).

civdotiq/civ.iq · 803 tokens