Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add pitimon/8-habit-ai-dev/plugin install 8-habit-ai-devWrote 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/pitimon/8-habit-ai-dev/review-ai)<a href="https://agentmods.dev/skills/pitimon/8-habit-ai-dev/review-ai"><img src="https://agentmods.dev/badge/skills/pitimon/8-habit-ai-dev/review-ai/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/skills/pitimon/8-habit-ai-dev/review-ai"><img src="https://agentmods.dev/badge/skills/pitimon/8-habit-ai-dev/review-ai.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.00041 | $0.02897 |
| Opus 5 | $0.00020 | $0.01448 |
| Sonnet 5 | $0.00008 | $0.00579 |
| Haiku 4.5 | $0.00004 | $0.00290 |
Grade A, and why
review-ai 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.
How it starts
The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Step 5: Review (อย่าไว้ใจทาง อย่าวางใจ AI)
Habit: H4 — Think Win-Win | Anti-pattern: Shipping AI-generated code without reading it
Process
-
Get the diff:
git diff --name-only HEADto see what changed. -
Read the tests first — before judging the implementation, open the new or changed test files. Tests declare the intended behavior; reading them first gives you the specification to review the code against. If new logic has no corresponding test, record that as a Completeness finding in step 6.
-
Security check (CRITICAL — block if found):
- Hardcoded secrets (API keys, passwords, tokens)
- SQL injection (string interpolation in queries)
- Missing input validation on new endpoints
- XSS vulnerabilities (unsanitized HTML output)
-
Quality check (HIGH):
- Functions >50 lines → break down
- Files >800 lines → extract
- Nesting >4 levels → simplify
- Missing error handling on external calls
console.logorprint()in production code
-
Performance check (HIGH):
- N+1 queries, unbounded loops, or sync blocking in hot paths
- Missing pagination on list endpoints
- Unindexed queries on large tables
- Memory leaks (unclosed streams, unbounded caches, retained references)
Performance findings follow the same evidence standard as the other axes: cite
file:linewith the measured or obvious-on-inspection cost. -
Completeness check (MEDIUM):
- Edge cases handled (null, empty, malformed input)
- Tests written for new functions (cross-check with step 2)
- Docs updated if API changed
-
AI-work budget and health check (MEDIUM, guidance only):
- Did the work enter repeated loops, retries, or re-generation without new evidence?
- Was context compacted or summarized, and was any summary verified against source files?
- Is there enough audit evidence to explain what changed and why?
- Does token, cost, or elapsed time look disproportionate to the task value?
- Can the next session recover state from committed docs, issues, PRs, or handoff notes?
- Does this PR add review burden, validator brittleness, generated-content noise, or contract drift?
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 · 219 lines · 41 tokens per session scan A 70065888f767
review-ai is a skill published in the GitHub repository pitimon/8-habit-ai-dev (3 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 2,897 once invoked, about $0.0002 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
two-axis-review
Two-axis review: Standards vs Spec, unmerged.
code-review
Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/spec asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use…
crap-analyzer
Use to produce a risk-based refactor + test plan for recently-changed code on a diff/branch/PR by computing CRAP (complexity × untested) on changed methods. Multi-language — TypeScript, JavaScript, Python, Java, Kotlin, Go, Ruby, C#, Rust, PHP — auto-discovers how the repo generates coverage. Triggers …
github-commenting
How to post clean, rich, deduplicated GitHub PR review comments — suggestion blocks, multi-line anchors, markers, formatting rules. Load before posting or fixing any PR comment.
procoder
Work like a senior developer in a repository governed by procoder: run the commit gate before calling anything done, format and lint through the binary, and drive the spec, plan, todo, backlog, and sprint chain in .procoder/. Use this skill when the repository contains a .procoder/ directory or an AGENTS.md naming…
code-review
The depth half of a review - the dimensions a diff is read against (correctness, boundaries, concurrency, failure paths, secrets, data access, structure, test quality) and the rule that a finding is refuted before it is reported. The verdict stays with the reviewer agent. Use when reviewing a diff or a pull request…