Install
openclaw skills install @silronin/config-review-flowReview and finalize configuration topics through a structured item-by-item confirmation flow. Use when the user wants a documented configuration review flow, wants to逐条核对配置 or 逐项确认配置, or needs a process that inventories all in-scope settings first, records decisions in a workspace configuring/ file, and requires a final explicit pre-apply confirmation before any real configuration change. Do not use for single-setting Q&A or direct config editing without a review pass.
openclaw skills install @silronin/config-review-flowUse this skill when the user wants a configuration topic reviewed and finalized one item at a time.
Define the review scope first.
Collect all configurable items from trusted sources before making recommendations.
Normalize and de-duplicate the inventory.
Present the full inventory to the user for review.
After the user confirms the inventory, create a tracking file under workspace/configuring/.
browser.md or openclaw-browser.md.Walk through one item at a time.
Handle revisions and branching explicitly.
Use an explicit review state machine.
inventory, in-review, awaiting-final-confirmation, or approved-to-apply.inventory until the item inventory is complete and user-approved for walkthrough.in-review when item-by-item confirmation starts.confirmed or explicitly not-applicable, automatically switch to awaiting-final-confirmation.awaiting-final-confirmation, return to in-review, update the tracking file, and only re-enter final confirmation after the review is fully confirmed again.approved-to-apply after a fresh explicit apply confirmation from the user after the final summary.approved-to-apply means apply permission has been granted. It does not mean the real configuration has already been changed.Trigger the final pre-apply confirmation automatically and stop there.
awaiting-final-confirmation.go ahead, use your judgment, apply defaults, or gave broad approval earlier in the review.awaiting-final-confirmation, do not continue with new recommendations, new item walkthrough, real config edits, or execution.configuring/ markdown file is the source of truth for the in-progress review.awaiting-final-confirmation is a hard stop. Do not modify the real target config, restart services, reload processes, run migrations, or deploy changes until the user gives a fresh explicit apply confirmation after the final summary.awaiting-final-confirmation, move back to in-review before continuing.Use this structure unless the topic needs a better one:
Mechanical constraints:
Source inventory and Decisions.Source inventory and Decisions.pending, the overall review status must not move to awaiting-final-confirmation.# <Topic>
- scope: ...
- target: ...
- status: inventory | in-review | awaiting-final-confirmation | approved-to-apply
## Unknowns
- ...
## Source inventory
### <item-name>
- current/detected value: ...
- options: ...
- default: ...
- dependencies: ...
- risk level: low | medium | high | unknown
- irreversible: yes | no | unknown
- requires-user-input: yes | no
- runtime impact: restart | reload | migration | deploy | none | unknown
- notes: ...
- sources: ...
## Decisions
### <item-name>
- status: pending | confirmed | not-applicable
- chosen: ...
- rationale: ...
- confirmed-at: ...
- last-updated-at: ...
- revision-notes: ...
- downstream-checks: ...
A review is not complete until all of these are true:
inventory, in-review, and awaiting-final-confirmationapproved-to-apply