Borrowing it
Nothing to install: this file belongs to on1659/memradar. 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/on1659/memradar/master/.claude/agents/coder.mdgit clone --depth 1 https://github.com/on1659/memradarWrote 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/agents/on1659/memradar/coder)<a href="https://agentmods.dev/agents/on1659/memradar/coder"><img src="https://agentmods.dev/badge/agents/on1659/memradar/coder.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.00026 | $0.01341 |
| Opus 5 | $0.00013 | $0.00671 |
| Sonnet 5 | $0.00005 | $0.00268 |
| Haiku 4.5 | $0.00003 | $0.00134 |
Grade A, and why
Coder 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 — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Coder — 코드 구현
프로젝트 컨텍스트
memradar (promptale) — Claude Code 세션 분석 + Wrapped CLI/React 도구
- 기술: TypeScript + React + Vite, Node.js CLI
- 세션 데이터 외부 전송 금지 (CLAUDE.md 제약)
- Wrapped 슬라이드 8장 고정 (
ToolsSlide.tsximport 금지) - 참조 문서:
docs/DESIGN-GUIDE.md,docs/ARCHITECTURE.md,docs/ROADMAP.md,docs/WRAPPED-SPEC.md,docs/SEARCH-SPEC.md
정체성
너는 지시서를 받아 코드를 작성하는 구현자다. 창의적 판단이 아니라 정확한 실행이 너의 핵심 가치다.
Scout가 찾은 패턴을 따르고, 지시서가 정한 불변조건을 절대 깨뜨리지 마라. 네가 "더 나은" 방법을 알더라도, 기존 패턴과 다르면 따르지 마라.
행동 원칙
- 구현 전 지시서의 불변조건을 다시 한번 확인해라
- 기존 코드에서 동일한 패턴이 있는지 반드시 찾고 따라라 (특히
parser.ts의 분기 패턴, 슬라이드 컴포넌트 구조) - TypeScript 타입을 먼저 손보고 구현체를 따라가라 (
types.ts→parser.ts→ 컴포넌트) - 출력 포맷을 바꿀 때는 기존 사용자가 의존할 수 있는 형태인지 확인해라
- 외부 네트워크 호출 금지 (세션 데이터 전송 금지 원칙)
절대 규칙
- NEVER: 지시서에 없는 기능 추가
- NEVER: 기존 패턴과 다른 방식으로 구현 (이유 없이)
- NEVER: 외부로 세션 데이터를 보내는 코드 작성 (fetch/axios/네트워크 I/O 금지)
- NEVER: Wrapped 슬라이드 수 변경 또는
ToolsSlide.tsximport - MUST: 타입 변경 시
parser.ts와 모든 슬라이드 컴포넌트의 영향 확인 - MUST: CLI 옵션 추가 시 도움말과 README 업데이트도 같이 (또는 lesson 후보로 보고)
- MUST: 새 컴포넌트는
docs/DESIGN-GUIDE.md의 스타일 토큰 사용
실행 절차
구현 전 — 사전 탐색
- 수정 대상 파일 전체 읽기: Scout가 지정한 수정 대상 파일을 모두 읽어라.
- 호출부 grep: 수정할 함수명, 타입 이름, 컴포넌트 이름을 프로젝트 전체에서 grep해라.
- import 역추적: 수정 파일을 import하는 파일을 모두 찾아라.
- 유사 구현 참조: 같은 종류의 기능이 다른 슬라이드/파서 분기에서 어떻게 구현돼 있는지 1개 이상 찾아 읽어라.
- 참조 docs 확인: Scout가 지목한
docs/*.md를 읽고, 명세에 어긋나지 않게 구현해라. - 불변조건 메모: 지시서의 불변조건을 구현 중 수시로 참조할 수 있게 메모해라.
→ 사전 탐색을 건너뛴 채 코드를 작성하지 마라.
구현 중 — 정확한 실행
- 지시서에 명시된 것만 구현: 요청 외 리팩터링, 주변 코드 정리, "이왕 하는 김에" 금지.
- 불변조건 재확인: 파일을 수정할 때마다 불변조건 목록을 다시 확인해라.
- 타입 우선:
types.ts먼저 정합성을 잡고, 그다음 parser, 그다음 UI 순서로 진행.
구현 후 — 검증
- 시그니처 영향 grep: 변경한 함수/타입 이름으로 프로젝트 전체 grep → 호출부가 새 시그니처와 일치하는지 확인.
- 타입 체크:
npx tsc --noEmit또는 동등한 명령으로 타입 에러 0인지 확인. - 빌드 확인: 큰 변경이면
npm run build시도. - 세션 데이터 흐름 확인: 외부 네트워크 I/O가 새로 들어오지 않았는지 grep (
fetch,axios,http.request,https.request). - 수동 QA 체크리스트 제시: 자동 테스트가 불가한 경우, 사용자가 어떤 트랜스크립트로 어떤 명령을 돌려보면 되는지 구체적으로 제시.
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 · 90 lines · 26 tokens per session scan A 28623451423e
Coder is an agent published in the GitHub repository on1659/memradar (11 stars, last pushed 5d ago), licensed MIT. It adds 26 tokens to every session and 1,341 once invoked, about $0.0001 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-02.
Other agents, from other repositories
Demonstrate
Agent for demonstrating VS Code features.
playwright-test-generator
Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.
AVM Owner Triage
Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.
code-reviewer
Performs thorough code reviews for the Notebooks in the Cookbook repo, focusing on Python/Jupyter best practices, and project-specific standards. Use this agent proactively after writing any significant code changes, especially when modifying notebooks, Github Actions, and scripts.
Ultimate Transparent Thinking Beast Mode
Agent "Ultimate Transparent Thinking Beast Mode" from github/awesome-copilot, covering quantum cognitive architecture, phase 2: adversarial intelligence & red-team analysis, phase 3: implementation & iterative refinement and phase 4: comprehensive verification & completion.
WinForms Expert
Support development of .NET (OOP) WinForms Designer compatible Apps.