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 skills/tigu77/tiguclaw/code-reviewnpx skills add tigu77/tiguclaw --skill code-reviewgit clone --depth 1 https://github.com/tigu77/tiguclawWrote 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/skills/tigu77/tiguclaw/code-review)<a href="https://agentmods.dev/skills/tigu77/tiguclaw/code-review"><img src="https://agentmods.dev/badge/skills/tigu77/tiguclaw/code-review.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.00278 | $0.04154 |
| Opus 5 | $0.00139 | $0.02077 |
| Sonnet 5 | $0.00056 | $0.00831 |
| Haiku 4.5 | $0.00028 | $0.00415 |
Grade A, and why
code-review 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 yesterday.
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 — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Review · 버그 진단 + diff/브랜치 리뷰 방법론
★왜 빌트인인가 — 파리티다 (2026-08-30 사용자 결정). 이 스킬엔 tiguclaw 고유 지식이 거의 없다(실측: 160줄 중 2건, 그마저 "어댑터 무관" 이라는 면책 문구다). 그래서 "일반적인 방법론이니 빼도 되지 않나" 로 읽히기 쉬운데 반대다 — Claude Code 가 코드 리뷰를 빌트인으로 주므로, 없으면 1번 원칙(슈퍼셋)의 누락 = 버그다.
즉 빌트인 자격은 축이 둘이다: ①tiguclaw 고유 지식을 담거나 ②Claude Code 파리티. 이건 ②다. 고유 밀도로만 재면 틀린 결론이 나온다 — 실제로 한 번 그랬다.
두 겹으로 동작한다. 아래 §A 방법론(발견의 질)은 항상 적용되고, §B 워크플로우(리뷰의 범위·강도)는 요청에 맞춰 선택한다. 간결함을 유지하되 correctness 는 절대 놓치지 않는다.
A. 발견 방법론 (모든 발견이 통과해야 하는 질 기준 — 절대 보존)
솔로든 팬아웃이든, 리뷰 차원 서브든, 각 발견은 아래를 만족해야 한다.
A1. 근본 원인 진단 (증상 아닌 원인)
- 증상("모드가 Normal 로 나감")이 아니라 왜 그 값이 그렇게 되는지 메커니즘을 짚는다. 생성·전달·소비 지점을 추적해 실제 원인을 특정한다.
- "여기서 채워지고 → 저기서 재계산되어 → 값이 섞인다" 처럼 경로로 설명한다. 추측 금지 — 코드를 읽고 확정한다.
A2. ★확장 점검 (correctness — 항상 한다)
- 같은 근본 원인이 인접한 필드·경로·호출부에도 있는지 반드시 확인한다. 하나만 고치고 형제 버그를 남기지 마라.
- 예:
GameMode가 "종료 시점 재계산"이라 stale 이면 — 같은 방식으로 채워지는Round·Level도 stale 아닌가? 를 반드시 본다. - 체크리스트: "이 값이 잘못됐다면, 같은 패턴으로 만들어지는 다른 값들도 같은 함정에 빠지지 않나?" — 명시적으로 훑는다. 취향이 아니라 정확성이다.
★위가 값을 따라가는 축이라면, 아래는 변경을 따라가는 축이다. 2차 결함은 대부분 여기서 난다 — A를 바꾸고 A에 의존하던 B를 안 본 것. 수정을 제안·검토할 때 「무엇을 바꿨나」에서 「무엇을 다시 봐야 하나」가 자동으로 따라 나와야 한다:
| 바꾼 것 | 전수로 다시 봐야 하는 것 |
|---|---|
| 계약 — 시그니처·반환값·throw 여부·에러 타입 | 그 함수의 호출부 전부. 특히 반환을 안 쓰던 곳, try 로 안 감싼 곳(안 던지던 게 던지기 시작하면 그 경로가 죽는다) |
| 조건을 반전·확대했다 | 그 조건에 도달하는 입력 전부. ★파급이 가장 크다 — 조건이 바뀌면 거기 들어오던 모든 것의 의미가 같이 바뀐다 |
| 새 값을 만들었다 — 상태·에러 종류·로그 레벨·enum 항목 | 그 값을 분기·열거·필터하는 곳 전부. 열거에서 빠지면 그 값만 조용히 버려진다(에러 없이) |
| 새 가드·검증을 달았다 | 같은 것을 받는 진입점 전부. 한 경로에만 달면 나머지는 그냥 통과한다 |
대개 grep 한 번이면 보인다 — 못 보는 게 아니라 안 보는 것이다.
- ★테스트가 초록인 것은 이 점검을 대신해주지 않는다. 검사는 만든 사람이 생각한 것만 지킨다 — 생각 못 한 것은 검사도 못 본다. 그래서 확장 점검은 스위트에 맡기지 말고 읽어서 한다(그리고 그게 B3 적대적 검증이 필요한 이유다).
A3. 최소 수정 (관용구 정합)
- 코드베이스의 기존 관용구·패턴에 맞춰 수정한다(이미
xxxCache패턴이 있으면 그걸 따른다). 새 추상화를 함부로 들이지 않는다. - 범위를 최소화하고 정확히 어느 파일·어느 줄을 어떻게 바꾸는지 명시한다.
- ★고치기 전에 셋을 묻는다 — 「누가 정하나 · 어디 사나 · 언제까지 사나」. 그 값·판단의 주인이 누구인지(사용자 설정인가, 코드 상수인가, 외부가 주는 값인가), 어느 계층에 살아야 하는지, 언제까지 유효한지. 하나라도 답을 못 하면 그 수정은 증상 자리에 놓인 것이고 곧 두 번째 보정을 부른다. ★방금 고친 곳을 또 만지고 있다면 패치를 하나 더 얹지 말고 A1(근본 원인)로 돌아가라 — 두 번째 보정은 이 셋을 건너뛴 신호다.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- yesterday Changed 41001aa5949f
- 5d ago First seen · 170 lines · 278 tokens per session scan A e94f8fb5646c
code-review is a skill published in the GitHub repository tigu77/tiguclaw (6 stars, last pushed today), licensed Apache-2.0. It adds 278 tokens to every session and 4,154 once invoked, about $0.0014 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 skills, from other repositories
commonly
You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…
github
Interact with GitHub (issues, PRs, repos, releases) using the gh CLI. Use when asked to read or write GitHub state — open an issue, fetch PR diff, comment, list runs, etc.
pandic-office
Convert Markdown to PDF (or DOCX/EPUB/HTML) using the pandoc CLI. Use when asked to produce a PDF report, brief, summary, or any document where the input is Markdown and the output should be a polished, paginated file.
Manipulate PDF files — extract text, count pages, render thumbnails, merge or split documents. Use for PDF-specific operations that don't fit markdown-converter (general read) or pandic-office (write from markdown).
tmux
Manage long-running shell sessions with tmux — start a detached session, run a long task, reattach later, capture output. Use when a task takes longer than a single tool call (build, test, log tail).
community-research-insight
Extract structured insight briefs from community research transcripts or notes. Produces pain points, stakeholder needs, opportunity maps, risks, and follow-up questions. Requires human review before publication.