clawsweeper: Skill for Codex

.agents/skills/local-clawsweeper-review/SKILL.md

local-clawsweeper-review is a skill for Codex from openclaw/clawsweeper. It costs 24 tokens per session (1,411 once invoked), scanned A, original, MIT.

A read-only local review workflow for checking a ClawSweeper issue, pull request, or committed range before submission or re-review.

In plain words
What is it for?
It helps run exact-item or committed-range reviews and inspect the resulting local proof for ClawSweeper changes.
Why use it?
It provides local review evidence without posting comments, changing GitHub items, or applying automated fixes.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: installed under .agents/ (shared by several agents); mentions Codex; built for openclaw.

This is openclaw/clawsweeper's own configuration. It tells Codex how to work on clawsweeper itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything clawsweeper configures →

About the project

ClawSweeper is a maintenance bot for OpenClaw repositories that periodically reviews open issues and pull requests and identifies candidates for closure, repair, or guarded automerging. It is intended for repository maintainers running their own configured instance. The catalogue entries are skills and an instruction for its review and maintenance workflows.

openclaw/clawsweeper · 1,977 stars · on GitHub · clawsweeper.bot

Reuse

Borrowing it

Nothing to install: this file belongs to openclaw/clawsweeper. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/openclaw/clawsweeper/main/.agents/skills/local-clawsweeper-review/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/openclaw/clawsweeper

Made for: Codex.

Wrote 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.

agentmods badge for local-clawsweeper-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/openclaw/clawsweeper/local-clawsweeper-review/github.svg)](https://agentmods.dev/skills/openclaw/clawsweeper/local-clawsweeper-review)
Your own site
<a href="https://agentmods.dev/skills/openclaw/clawsweeper/local-clawsweeper-review"><img src="https://agentmods.dev/badge/skills/openclaw/clawsweeper/local-clawsweeper-review/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.

agentmods 80×15 button for local-clawsweeper-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/openclaw/clawsweeper/local-clawsweeper-review"><img src="https://agentmods.dev/badge/skills/openclaw/clawsweeper/local-clawsweeper-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 24 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,411 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00024 $0.01411
Opus 5 $0.00012 $0.00705
Sonnet 5 $0.00005 $0.00282
Haiku 4.5 $0.00002 $0.00141

Measured 9d ago against content hash 5590e3fe3f59, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

local-clawsweeper-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 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.

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.

.agents/skills/local-clawsweeper-review/SKILL.md · 177 lines

How it starts

The opening of the file, as written. The whole thing — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Local ClawSweeper Review

Use this skill when someone wants read-only local ClawSweeper output before submitting, updating, or re-reviewing an issue or PR.

Safety Boundary

  • Run only pnpm run review -- --local-only for an existing GitHub item, or pnpm run review -- --local-range for a pre-submission committed range.
  • Do not run apply-artifacts, apply-decisions, GitHub comment posting, or merge/autofix commands unless the user explicitly asks for that mutation.
  • Do not print OPENAI_API_KEY, CODEX_API_KEY, CODEX_ACCESS_TOKEN, GitHub tokens, or Codex auth material.
  • Treat generated review artifacts as local proof. Do not claim ClawSweeper posted or synced anything unless a separate explicit mutation command did it.

Locate ClawSweeper

Prefer the current repository when its package.json name is @openclaw/clawsweeper. Otherwise use a known clean local checkout:

  • Windows: C:\oc-work\clawsweeper-source
  • POSIX fallback: ~/Projects/clawsweeper

Inspect git status --short before making changes. If another ClawSweeper clone is dirty or ambiguous, do not use it for the local review runner.

First-Time Setup

From the ClawSweeper checkout:

corepack enable
pnpm install
pnpm run build:all
pnpm run codex:local:check

If the Codex check says the CLI is not logged in, have the operator authenticate their own Codex CLI. Device auth is the simplest shareable setup:

codex login --device-auth -c 'service_tier="fast"'

For API-key setup, pass the key through the shell only for the login command and then clear it from the environment. Do not put the key in docs, scripts, shell history, or committed files.

PowerShell:

$env:OPENAI_API_KEY = Read-Host "OpenAI API key"
$env:OPENAI_API_KEY | codex login --with-api-key -c 'service_tier="fast"'
Remove-Item Env:OPENAI_API_KEY

POSIX shell:

printf '%s' "$OPENAI_API_KEY" | codex login --with-api-key -c 'service_tier="fast"'
unset OPENAI_API_KEY

Read the full file on GitHub · 177 lines

Files

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.

Changes

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.

  1. 9d ago First seen · 177 lines · 24 tokens per session scan A 5590e3fe3f59

Subscribe to this mod's changes

local-clawsweeper-review is a skill published in the GitHub repository openclaw/clawsweeper (1,977 stars, last pushed today), licensed MIT. It adds 24 tokens to every session and 1,411 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

code-review

A code-review and quality-analysis skill written in Chinese. It is intended to inspect code, find potential problems, and suggest improvements.

RTGS2017/NagaAgent · 42 tokens

gh-issues

Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5]…

SafeAI-Lab-X/ClawKeeper · 116 tokens

openclaw-pr-maintainer

Maintainer workflow for reviewing, triaging, preparing, closing, or landing OpenClaw pull requests and related issues. Use when Codex needs to validate bug-fix claims, search for related issues or PRs, apply or recommend close/reason labels, prepare GitHub comments safely, check review-thread follow-up, or perform…

SafeAI-Lab-X/ClawKeeper · 84 tokens

code-reviewer

A code-reviewing role that checks code for bugs, security weaknesses, readability problems, design issues, and performance concerns.

AlekseiUL/agentforge-openclaw · 51 tokens

bugfix-review

Diagnose a reported defect, verify its cause, and review the proposed fix.

agentpipe/pipebuilder · 20 tokens

chaos-review

Adversarial code review that assumes the worst. Finds failure modes, race conditions, blast radius, and edge cases that optimistic reviewers miss. Use when you want brutal honesty about code resilience.

TrevorEdris/fellowship-of-the-workflows · 42 tokens