Borrowing it
Nothing to install: this file belongs to agno-agi/agentos-render. 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/agno-agi/agentos-render/main/.agents/skills/review-and-improve/SKILL.mdgit clone --depth 1 https://github.com/agno-agi/agentos-renderWrote 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/agno-agi/agentos-render/review-and-improve)<a href="https://agentmods.dev/skills/agno-agi/agentos-render/review-and-improve"><img src="https://agentmods.dev/badge/skills/agno-agi/agentos-render/review-and-improve/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/agno-agi/agentos-render/review-and-improve"><img src="https://agentmods.dev/badge/skills/agno-agi/agentos-render/review-and-improve.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.00064 | $0.01337 |
| Opus 5 | $0.00032 | $0.00668 |
| Sonnet 5 | $0.00013 | $0.00267 |
| Haiku 4.5 | $0.00006 | $0.00134 |
Grade A, and why
review-and-improve scanned grade A with 1 finding 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 9d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
`curl -sSf http://localhost:8000/health` returns 200 (Step 4 needs it). Suggest `git checkout -b review/$(date +%Y%m%d)`. This is a copy
98% identical to review-and-improve — 2 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 — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Review and Improve
Coding-agent workflow: run as
/review-and-improveor by describing the task.
Sweep the repo for docs accuracy, reachability, and consistency. Fix mechanical drift in place; surface the rest. AGENTS.md is the source of truth (CLAUDE.md symlinks to it).
Auto-fix: stale doc paths; example.env entries missing for vars the code reads, or stale ones nothing reads (keep those a comment marks optional/future); a registered agent or workflow missing from an architecture diagram; an agent file on disk not imported in app/main.py; a missing app/config.yaml manifest entry (draft one and flag it); broken links between docs and skills; a single-line claim in one doc contradicted by another doc or by code (fix the doc).
Flag, don't fix: section-level rewrites; code beyond imports; pyproject.toml; anything in db/, compose.yaml, Dockerfile; failing evals or live agents.
0. Preconditions
curl -sSf http://localhost:8000/health returns 200 (Step 4 needs it). Suggest git checkout -b review/$(date +%Y%m%d).
1. Scope
Restate in a few lines: README.md, AGENTS.md, example.env; .agents/skills/*/SKILL.md; app/, agents/, teams/, workflows/, db/, evals/, scripts/; compose.yaml, Dockerfile, pyproject.toml, render.yaml. Skip .venv/, caches, .git/. Fold in any concern the user names.
2. Inventory
Read first, fix once. Build the picture: registered agents/teams/workflows in app/main.py; files on disk; what app/registry.py declares and imports; env vars read (getenv(, os.environ, plus env_flag/_int_env helpers); the manifest; eval cases; register_schedules() targets; what each script does.
3. Consistency pass
| Check | Where |
|---|---|
| Every agent/team/workflow file is registered | agents/, teams/, workflows/ ↔ app/main.py |
| Every registered component has a manifest entry | app/main.py ↔ app/config.yaml |
| Every env var in code is documented, and every documented var is read | code ↔ AGENTS.md table ↔ example.env (RUNTIME_ENV is deliberately absent from example.env) |
| Every path and script named in docs exists and does what's claimed | README.md, AGENTS.md, skills ↔ filesystem |
| Architecture diagram matches registrations | AGENTS.md |
| Eval cases reference real agents and tools | evals/cases.py |
| Every schedule hits a real workflow id | app/schedules.py ↔ workflows/ |
Registry inventory prose matches app/registry.py |
AGENTS.md |
| Key Files table matches the tree | AGENTS.md |
Skill name: equals its folder; ../../../ links resolve; .claude/skills symlink resolves |
.agents/skills/ |
.mcp.json servers agree with the docs |
.mcp.json |
MCP endpoint claims match mcp= in app/main.py; scripts/mcp_check.sh calls a registered agent |
docs ↔ code |
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.
- 9d ago First seen · 78 lines · 64 tokens per session scan A 704a83ac29d8
review-and-improve is a skill published in the GitHub repository agno-agi/agentos-render (3 stars, last pushed 9d ago), licensed Apache-2.0. It adds 64 tokens to every session and 1,337 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 98% identical to review-and-improve, differing in 2 lines, and is treated as a copy.
Other skills, from other repositories
autoreview
Pre-commit/ship code review: Codex default; optional Claude or Pi.
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
omh-code-review
This is a Hermes-native code-review workflow skill.
code-reviewer
Code review specialist focused on patterns, bugs, security, and performance.
full-repo-review
Comprehensive four-wave review of all repo source files, producing a prioritized issue backlog.
agent-teams-simplify-and-harden
Implementation + audit loop using parallel agent teams with structured simplify, harden, and document passes. Spawns implementation agents to do the work, then audit agents to find complexity, security gaps, and spec deviations, then loops until code compiles cleanly, all tests pass, and auditors find zero issues or…