Agent Skillsopenclaw/clawsweeper › local-clawsweeper-review

local-clawsweeper-review

GitHub

用于在本地执行只读的ClawSweeper代码审查,支持对现有GitHub项目或提交范围进行静态分析。该技能确保不修改远程仓库、不发布评论,严格限制为本地验证模式,保障操作安全与数据隐私。

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

触发场景

用户希望在提交前预览代码审查结果 需要离线或本地运行ClawSweeper以检查潜在问题 用户明确要求不进行任何GitHub交互的只读审查

安装

npx skills add openclaw/clawsweeper --skill local-clawsweeper-review -g -y
更多选项

非标准路径

npx skills add https://github.com/openclaw/clawsweeper/tree/main/.agents/skills/local-clawsweeper-review -g -y

不安装直接使用

npx skills use openclaw/clawsweeper@local-clawsweeper-review

指定 Agent (Claude Code)

npx skills add openclaw/clawsweeper --skill local-clawsweeper-review -a claude-code -g -y

安装 repo 全部 skill

npx skills add openclaw/clawsweeper --all -g -y

预览 repo 内 skill

npx skills add openclaw/clawsweeper --list

SKILL.md

Frontmatter
{
    "name": "local-clawsweeper-review",
    "description": "Run local ClawSweeper exact-item or committed-range reviews without GitHub mutation."
}

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

If the wrong Codex binary is used, set CODEX_BIN in the local shell for that run. Otherwise, --local-only uses the first spawnable codex command on PATH, including on Windows. If no Windows PATH command is spawnable, it falls back to the installed Codex Desktop binary.

Target Checkout Modes

By default, an exact local PR review manages its own target checkout under artifacts/local-review-<pr-number>/target.

By default, --local-range reviews the clean checkout where the command was invoked. It does not manage or switch that checkout. Pass --target-dir when the branch to review is elsewhere.

Pass --target-dir when the operator wants to review an existing checkout or an issue.

Use a clean target checkout of the repository being reviewed. Prefer a dedicated review checkout if the normal worktree is dirty:

  • Windows: C:\oc-work\clawsweeper-local-target-openclaw
  • POSIX fallback: ../openclaw

Before reviewing against main, update the target checkout only when it is clean:

git -C <target-dir> status --short
git -C <target-dir> fetch origin main
git -C <target-dir> switch main
git -C <target-dir> pull --ff-only origin main

Do not switch branches, pull, or overwrite files in a dirty target checkout.

Run A Local Review

Use the exact issue or PR number. If the number is not provided and the current branch has an open PR, use gh pr view --json number,url,headRefOid to identify it.

From the ClawSweeper checkout:

pnpm run review -- --local-only --item-number <pr-number>

To use a supplied checkout or review an issue:

pnpm run review -- --local-only \
  --item-number <issue-or-pr-number> \
  --target-dir <target-dir>

To review committed branch work before a PR exists:

pnpm run review -- --local-range \
  --target-repo <owner/repo> \
  --base origin/main

The range is merge-base(<base>, HEAD)..HEAD. It must be clean and contain at least one commit beyond the base. This path withholds GitHub credentials, isolates cached gh auth, disables web search, and skips host-side URL/media preprocessing. It still calls the configured Codex model service; do not call it air-gapped or fully network-offline.

The exact local command prints a human-readable progress summary by default. Add --verbose only when debugging checkout, selection, or Codex process details.

For quick smoke tests, lower --batch-size, --shard-count, --max-pages, and --codex-timeout-ms, but label the result as a smoke run rather than a full local review.

Read The Artifact

The default OpenClaw report is written to:

<artifact-dir>/<issue-or-pr-number>.md

Read the artifact and summarize:

  • review_status
  • main_sha
  • pull_head_sha for PRs
  • decision/confidence/action fields when present
  • findings or blockers
  • exact Codex/auth/runtime failure if the run failed

If the failure is Codex auth, stop after providing the local setup command. If the failure is runner/runtime behavior, include the artifact path and a concise stderr or log summary.

Closeout

Before reporting success:

  • Confirm the command used review --local-only or review --local-range.
  • Confirm no GitHub comments, labels, merges, or apply commands were run.
  • Confirm the target checkout is still clean.
  • If findings exist, list the actionable items and the next local fix/test step.
  • If no blockers exist, say the local ClawSweeper artifact found no blockers and include the reviewed main_sha and PR head SHA when available.

版本历史

  • 8c67769 当前 2026-07-24 11:32

同 Skill 集合

.agents/skills/crabbox/SKILL.md

元信息

文件数
0
版本
03f0344
Hash
5590e3fe
收录时间
2026-07-24 11:32

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-08 23:19
浙ICP备14020137号-1 $访客地图$