Borrowing it
Nothing to install: this file belongs to episodic-rush/korean-law-mcp-unclean. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/episodic-rush/korean-law-mcp-unclean/main/CLAUDE.mdgit clone --depth 1 https://github.com/episodic-rush/korean-law-mcp-uncleanWrote 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/episodic-rush/korean-law-mcp-unclean/claude-md)<a href="https://agentmods.dev/instructions/episodic-rush/korean-law-mcp-unclean/claude-md"><img src="https://agentmods.dev/badge/instructions/episodic-rush/korean-law-mcp-unclean/claude-md/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/instructions/episodic-rush/korean-law-mcp-unclean/claude-md"><img src="https://agentmods.dev/badge/instructions/episodic-rush/korean-law-mcp-unclean/claude-md.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.03444 | $0.03444 |
| Opus 5 | $0.01722 | $0.01722 |
| Sonnet 5 | $0.00689 | $0.00689 |
| Haiku 4.5 | $0.00344 | $0.00344 |
Grade A, and why
korean-law-mcp-unclean CLAUDE.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 10d 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 korean-law-mcp-unclean CLAUDE.md — 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 — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
⚠️ 배포 — 통합 호스트 (2026-07-02부터)
프로덕션은 이 레포가 아니라 gomdori-mcp 통합 호스트(fly 앱
korean-law-mcp1대, MCP 5종 동거)가 서빙한다.
- 공식 주소:
https://mcp.gomdori.app/law(구korean-law-mcp.fly.dev/mcp는 하위호환으로 유지)- 반영 절차: 이 레포 커밋·푸시 →
npm publish→~/workspace/gomdori-mcp/Dockerfile의[email protected]핀 갱신 →cd ~/workspace/gomdori-mcp && fly deploy -c fly.production.toml- 🚫 이 레포에서
fly deploy직접 실행 절대 금지 — 통합 이미지를 law 단독 이미지로 덮어써 stats·patent·archhub·school까지 전부 죽는다. 자세한 배경: docs/FLY-COST.md
Korean Law MCP Server v4.9.1 - 법제처 42개 API → 10개 통합 도구 (내부 98개) + 9개 시나리오 + 자연어 CLI + HTTP stateless + 판례 토큰 74% 감축 + legal_research (체인 8종 통합, task 파라미터) + legal_analysis (인용검증·판례생사·행위시법·영향그래프 통합, mode 파라미터) + time_travel (시점 diff) + action_plan (이럴 땐 이렇게, 5단계 안내) + 시행예정 감지 (search_law가 제명변경·미시행 개정 자동 병기) + ordinance_radar (조례 정비 레이더 — 근거 상위법 개정 자동 대조, v4.7.0) + 인용 검증 표기 내성 (낫표·가운뎃점·같은 법 조응, v4.9.0)
Structure
src/
├── index.ts # 엔트리포인트 (STDIO/HTTP 모드)
├── cli.ts # CLI v2.0 (자연어 라우팅 + REPL)
├── tool-registry.ts # 98개 도구 등록, V3_EXPOSED 10개만 노출 (TOOL_COUNTS 파생값)
├── tools/ # 도구 구현 (50개 파일, 각 200줄 미만)
├── lib/
│ ├── api-client.ts # API 클라이언트 (throwIfError/checkHtmlError 통일)
│ ├── query-router.ts # 자연어 → 도구 라우팅 엔진 (verify/비교/시간필터 패턴 포함)
│ ├── fetch-with-retry.ts # 타임아웃/재시도 + maskSensitiveUrl (API키 로그 유출 방지)
│ ├── session-state.ts # 요청별 API 키 격리 (AsyncLocalStorage, stateless)
│ ├── xml-parser.ts # 공통 XML 파싱
│ ├── errors.ts # 에러 표준화
│ ├── schemas.ts # 날짜/응답크기 검증 (truncateResponse)
│ ├── search-normalizer.ts # 검색어 정규화 (LexDiff, 약칭 52개)
│ ├── upcoming-laws.ts # 시행예정 법령 감지 (eflaw 보조검색 — 제명변경·미시행 개정 병기)
│ ├── law-parser.ts # JO 코드 변환 (LexDiff)
│ ├── annex-file-parser.ts # 별표 파일 파서 (kordoc 통합 파서)
│ ├── tool-profiles.ts # 도구 카테고리 + TOOL_ALIASES (한국어 별칭 매칭)
│ ├── article-parser.ts # 조문 파서 (항/호/목 단일객체 정규화)
│ ├── decision-compact.ts # 판례 토큰 최적화 + compactLongSections (14도메인 후처리)
│ ├── cache.ts # LRU 캐시 (TTL, 만료 우선 eviction)
│ ├── three-tier-parser.ts # 3단 비교 파서
│ ├── cli-format.ts # CLI 출력 포맷팅
│ ├── cli-executor.ts # CLI 쿼리 실행 엔진
│ ├── risk-rules.ts # 문서 분석 리스크 규칙
│ ├── date-parser.ts # 자연어 날짜 파서
│ ├── document-analysis.ts # 문서유형 분류/금액추출/리스크 탐지
│ └── types.ts # 공통 타입
└── server/ # HTTP 서버 (Express)
└── http-server.ts # Streamable HTTP stateless + scrubError + TRUST_PROXY 환경변수
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.
- 10d ago First seen · 170 lines · 3,444 tokens per session scan A ba962ed832e3
korean-law-mcp-unclean CLAUDE.md is an instructions file published in the GitHub repository episodic-rush/korean-law-mcp-unclean (0 stars, last pushed 25d ago), licensed MIT. It adds 3,444 tokens to every session, about $0.0172 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to korean-law-mcp-unclean CLAUDE.md, differing in 0 lines, and is treated as a copy.
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).