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/osouthgate/agent-plus/code-reviewernpx skills add osouthgate/agent-plus --skill code-reviewergit clone --depth 1 https://github.com/osouthgate/agent-plusWhat 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.00042 | $0.01607 |
| Opus 5 | $0.00021 | $0.00804 |
| Sonnet 5 | $0.00008 | $0.00321 |
| Haiku 4.5 | $0.00004 | $0.00161 |
Grade A, and why
code-reviewer 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 2d 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 — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
code-reviewer
Reviews changed code only. Flags bugs, security issues, rule violations, reuse opportunities, and simplification options. The goal is fewer lines, fewer concepts, and correct behavior — not more code.
When invoked
- Get scope when unclear — If no diff and no files indicated, ask: "Review uncommitted changes, a branch diff, or specific files?" Do this before any other step.
- See what changed —
git diffor the files the user points to. Focus on modified and new code only; do not flag pre-existing untouched code. - Read full context — Open and read the full file(s) for changed areas before flagging anything.
- Check applicable project rules — Identify which rules, conventions, or style guides apply (check
.cursor/rules/,AGENTS.md, or similar). Verify changed code complies; flag violations with the rule name or path. - Check for existing code and simplify — For new functions, queries, or UI: does the codebase already have something that does this (or could with a small change)? Flag as a refactor opportunity. Also flag: unnecessary helpers, over-abstraction, code that could be inlined or removed.
- Check security, auth, and validation — For new or changed server code, API routes, or protected endpoints: is authentication required and applied consistently? Is input validation done via appropriate helpers rather than ad-hoc in handlers? Admin-only paths properly restricted? Flag missing or incorrect auth/validation as Critical or Warning.
- Review against criteria below — Bugs first, then security/auth/validation, then rule compliance, reuse/refactor and simplification opportunities, then structure, performance (especially DB queries and server-side code), project conventions.
- Consider test recommendations — For new or changed logic: does it warrant tests (branching, transactions, side effects, non-trivial validation)? If yes, add a Test recommendations section. Don't recommend tests for thin pass-throughs or constants.
- Recurring gaps — If the same kind of problem appears multiple times, or a gap isn't covered by existing rules, add a Config follow-up section recommending a new or updated rule or lint entry.
- Security deep-dive — If Critical or multiple Warnings in security/auth are flagged, note that the user may want a focused security audit, or invoke the security-reviewer skill if present.
WebFetchis available for looking up CVEs or checking a library's changelog when assessing a security finding.
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.
- 2d ago First seen · 83 lines · 42 tokens per session scan A df00481d3aab
code-reviewer is a skill published in the GitHub repository osouthgate/agent-plus (4 stars, last pushed 1mo ago), licensed MIT. It adds 42 tokens to every session and 1,607 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
add-provider
Add or extend an open-source OOMOL Connect provider under src/providers, including provider definition, action schemas, local executors, credential validation, examples, and generated catalog updates.
vs-product-qa
Answer Viking AI Search product questions, CLI usage questions, API/auth questions, configuration questions, and troubleshooting questions by grounding every claim in either the installed vs CLI's own output or official Volcengine documentation. Never fabricate.
vs-search
Search runtime and scene management: verify queries, inspect scenes, debug app readiness, and diagnose recall or scene-config issues.
vs-shared
Shared SearchCLI setup: install, authenticate, run doctor, and verify the local environment.
local-search
Skill "local-search" from taxueseek/argo, covering local search 子技能, 设计原则, 本地引擎列表(33 个,29 个默认启用), 调用方式 and 直接调用子技能(单引擎).
scrape-structured-data
Get the repeating records off a web page (product grids, search results, job listings, news feeds, tables) as JSON, without writing CSS selectors and without spending a model call to read the HTML. Works on sites with no API, including ones behind a login or bot protection. Runs locally, one binary, no API key. Use…