@@ -31,11 +31,13 @@ clawpatch init
3131clawpatch map
3232clawpatch review --limit 3 --jobs 3
3333clawpatch review --mode deslopify --limit 3
34+ clawpatch ci --since origin/main --output clawpatch-report.md
3435clawpatch report
3536clawpatch next
3637clawpatch show --finding < id>
3738clawpatch triage --finding < id> --status false-positive --note " covered by tests"
3839clawpatch fix --finding < id>
40+ clawpatch open-pr --patch < patchAttemptId> --draft
3941clawpatch revalidate --finding < id>
4042clawpatch revalidate --all --status open
4143```
@@ -122,11 +124,13 @@ Supported provider names today:
122124- ` clawpatch status ` : show project, dirty state, feature/finding counts
123125- ` clawpatch review ` : review pending or selected features
124126- ` clawpatch review --mode deslopify ` : review only for locally provable slop cleanup
127+ - ` clawpatch ci ` : initialize if needed, map, review, write a report, and append a GitHub step summary
125128- ` clawpatch report ` : print or write a Markdown findings report
126129- ` clawpatch next ` : print the next actionable finding
127130- ` clawpatch show --finding <id> ` : inspect one finding with evidence and suggested validation
128131- ` clawpatch triage --finding <id> --status <status> ` : mark a finding with optional history note
129132- ` clawpatch fix --finding <id> ` : run the explicit patch loop for one finding
133+ - ` clawpatch open-pr --patch <id> ` : commit an applied patch attempt and open a GitHub PR
130134- ` clawpatch revalidate --finding <id> ` : re-check one finding
131135- ` clawpatch revalidate --all ` : re-check open findings with report-style filters
132136- ` clawpatch doctor ` : check provider availability
@@ -180,7 +184,8 @@ to features so runs can resume and be audited.
180184- Review does not edit files.
181185- Fix is explicit and selected by finding ID.
182186- Fix refuses a dirty source worktree by default.
183- - Clawpatch never commits, pushes, opens PRs, or lands changes today.
187+ - Clawpatch commits, pushes, and opens PRs only from explicit patch commands such as ` open-pr ` .
188+ - Clawpatch does not land changes today.
184189- Provider output is parsed through strict schemas.
185190- Symlinked directories and generated build output are skipped during mapping.
186191
0 commit comments