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/gitbosung/open-alio-mcp/agents-mdgit clone --depth 1 https://github.com/gitbosung/open-ALIO-mcpWrote 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/gitbosung/open-alio-mcp/agents-md)<a href="https://agentmods.dev/instructions/gitbosung/open-alio-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/gitbosung/open-alio-mcp/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 | $0.01196 | $0.01196 |
| Opus 5 | $0.00598 | $0.00598 |
| Sonnet 5 | $0.00239 | $0.00239 |
| Haiku 4.5 | $0.00120 | $0.00120 |
Grade A, and why
open-ALIO-mcp AGENTS.md 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.
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — 에이전트 작업 규칙
이 저장소는 여러 AI 에이전트(Codex, Claude Code 등)와 사람이 함께 작업한다.
모든 에이전트는 세션 시작 시 이 파일을 먼저 읽고 따른다.
(Claude Code는 CLAUDE.md를 통해 이 파일로 안내된다.)
0. 황금 규칙
- 진실의 원천은 git과 파일이다. 대화 기억을 믿지 마라.
- 불확실하면 실제 파일 ·
git· 보고서를 열어서 확인한다.
1. 세션 시작 절차 (Startup)
새 세션은 항상 이 순서로 시작한다:
git fetch origin
git status -sb
git log --oneline --decorate --graph -8
다른 기기 / 새 컴퓨터에서 시작할 때는 먼저 최신을 받는다 (fetch만으로는 작업트리가 안 바뀐다):
git pull # 현재 브랜치를 원격 최신으로
# 이어받을 브랜치가 따로 있으면: git switch <브랜치> && git pull
그다음 .ai/HANDOFF.md (현재 상태 · 다음 할 일)와
정확도 작업 트래커 docs/accuracy_improvement_plan.md 를 읽는다.
열린 PR이 있으면 gh pr view <번호> 로 확인한다.
2. 브랜치 규칙
- 한 에이전트 = 한 브랜치. 접두사: Codex는
codex/<주제>, Claude Code는claude/<주제>. - 항상 최신
origin/main에서 분기한다. main에 직접 커밋 · 푸시하지 않는다. 항상 브랜치 → PR.- 나중에 머지하는 브랜치가 최신 main을 자기 쪽으로 먼저 병합할 책임을 진다.
3. 핸드오프(인수인계) 규칙
멈추기 전에 반드시:
- 작업을 커밋하고 브랜치를 푸시한다. (더티 작업트리로 넘기지 않는다)
- .ai/HANDOFF.md 를 현재 상태로 갱신한다.
다음 에이전트는 AGENTS.md + HANDOFF.md를 읽고, fetch 후 해당 브랜치를 체크아웃한다.
(새 작업이면 최신 main에서 새 브랜치를 판다.)
사람(운영자)이 에이전트를 바꿀 때: 떠나는 쪽에 "커밋·푸시하고 HANDOFF 갱신 후 멈춰줘", 켜는 쪽에 "AGENTS.md 읽고 시작 절차 따라줘" 한 줄씩만 전달하면 된다. 내용을 사람이 직접 복붙 릴레이하지 않는다 — 브랜치와 HANDOFF.md가 그 역할을 한다.
4. 커밋 금지 대상 (생성물)
스크립트로 재생성되는 산출물은 커밋하지 않는다 (.gitignore 참조):
data/canonical/*.db,*.db-shm,*.db-wal,*.jsonldata/canonical/metrics_v2*/- 생성된 요약 JSON,
data/validation_reports/canonical_v2_*산출물
커밋 전 git status 로 산출물이 섞이지 않았는지 확인한다.
5. 데이터 · 설계 불변식 (깨지 말 것)
data/metrics/*.json(v1 정본)을 덮어쓰지 않는다. v2 후보는data/canonical/metrics_v2/에만 쓴다.- finance 응답 정책: 기본 호출은 대표값 +
basis(기준 설명)만 반환하고, 기준별 값은item_query로 요청할 때만 반환한다 (basis.mode == "context_query"). 되돌리지 않는다. - finance 충돌군에서 값을 자동으로 하나 선택하지 않는다.
executive_pay/budget은 targeted 비교에서 충돌 0이어도 성급히 promotion하지 않는다. readiness 기준을 먼저 정의한다.- v1/v2 이중 스택은 임시(transition)다. 최종 목표는 canonical → 파생지표 → MCP 단일 경로.
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.
- 4d ago First seen · 87 lines · 1,196 tokens per session scan A fbc7a20204fc
open-ALIO-mcp AGENTS.md is an instructions file published in the GitHub repository gitbosung/open-ALIO-mcp (1 stars, last pushed 1mo ago), licensed MIT. It adds 1,196 tokens to every session, about $0.0060 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-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).