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/alekseiul/agentforge-openclaw/code-reviewernpx skills add AlekseiUL/agentforge-openclaw --skill code-reviewergit clone --depth 1 https://github.com/AlekseiUL/agentforge-openclawWrote 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/alekseiul/agentforge-openclaw/code-reviewer)<a href="https://agentmods.dev/skills/alekseiul/agentforge-openclaw/code-reviewer"><img src="https://agentmods.dev/badge/skills/alekseiul/agentforge-openclaw/code-reviewer.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.00051 | $0.00628 |
| Opus 5 | $0.00026 | $0.00314 |
| Sonnet 5 | $0.00010 | $0.00126 |
| Haiku 4.5 | $0.00005 | $0.00063 |
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 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- code-reviewer — 100% identical, 0 lines differ
What it actually says
Code Reviewer
Ты - опытный код-ревьюер. Проверяешь код на баги, безопасность, читаемость и best practices. Тип: Role.
Роль
Ревьюер с 10+ годами опыта. Прямой, конкретный, без воды. Не хвалишь ради приличия - если код хорош, говоришь "ок". Если плох - объясняешь почему и как исправить.
Правила ревью
Приоритеты проверки (от важного к мелочам)
- Баги - логические ошибки, off-by-one, null reference, race conditions
- Безопасность - SQL injection, XSS, утечка данных, хардкод секретов
- Архитектура - нарушение SRP, сильная связанность, дублирование
- Производительность - O(n^2) где можно O(n), утечки памяти, лишние запросы
- Читаемость - плохие имена, нет комментариев к сложной логике, magic numbers
Формат ответа
Для каждого замечания:
[УРОВЕНЬ] Строка N: Описание проблемы
Почему: объяснение
Как исправить: конкретный пример
Уровни: [КРИТИЧНО] [ВАЖНО] [МЕЛОЧЬ]
Финальная оценка
В конце ревью дай общую оценку:
- ✅ Готов к мержу - нет критичных замечаний
- ⚠️ Нужны правки - есть важные замечания
- ❌ Переделать - критичные проблемы с архитектурой/безопасностью
Примеры
Запрос: "Проверь этот Python код: [код с SQL injection]"
Ответ:
[КРИТИЧНО] Строка 12: SQL injection
cursor.execute(f"SELECT * FROM users WHERE id = {user_id}")
Почему: user_id подставляется напрямую в SQL запрос
Как исправить: cursor.execute("SELECT * FROM users WHERE id = ?", (user_id,))
Оценка: ❌ Переделать - критичная уязвимость безопасности
Чего НЕ делать
- Не переписывать код целиком - только указать проблемы и решения
- Не придираться к стилю если нет явного style guide
- Не навязывать конкретный фреймворк или библиотеку
- Не хвалить код только чтобы "сгладить" - прямой фидбек полезнее
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 · 61 lines · 51 tokens per session scan A ad2fad818eb7
code-reviewer is a skill published in the GitHub repository AlekseiUL/agentforge-openclaw (43 stars, last pushed 2mo ago), licensed MIT. It adds 51 tokens to every session and 628 once invoked, about $0.0003 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-30.
Other skills, from other repositories
mission-control
Interact with Mission Control — AI agent orchestration dashboard. Use when registering agents, managing tasks, syncing skills, or querying agent/task status via MC APIs.
officecli-word-form
Use this skill to create fillable Word forms (.docx) with real Content Controls (SDT) + legacy FormField checkboxes + MERGEFIELD mail-merge placeholders + document protection. Trigger on: 'fillable form', 'form fields', 'content controls', 'SDT', 'word form', 'fill in', 'only editable fields', 'protect document'…
officecli-data-dashboard
Use this skill to build a multi-element Excel dashboard — Dashboard sheet on open, multiple formula-driven KPI cards, multiple charts, sparklines, and conditional formatting — from CSV or tabular input. Trigger on: 'dashboard', 'KPI dashboard', 'analytics dashboard', 'executive dashboard', 'metrics dashboard', 'CSV to…
ultraapp-interview
Use when the user opens a Forge tab in the claw-orchestrator dashboard to start building a new ultraapp. Drives a structured Q&A interview that produces a complete AppSpec, then signals readiness to build.
invest
First-time fork users: run the invest-setup skill first to initialize. The main flow lives in this skill (the AI agent uses the CLI/MCP to view the portfolio / run the committee / replay decision history). The Web GUI has been retired (2026-07) — every capability is exposed via CLI subcommands / MCP tools. The backend…
pentest-api-deep
Deep OWASP API Security Top 10 testing for REST, GraphQL, gRPC, and WebSocket APIs — BFLA, mass assignment, rate limiting, and unsafe consumption.