From forgeproof
Clean up ForgeProof local state for an issue or all issues. Deletes provenance chains, bundles, ephemeral keys, and optionally branches. Use when you need to re-run ForgeProof on an issue or clean up after testing. Triggers on "reset forgeproof", "clean up forgeproof", or "forgeproof reset".
How this skill is triggered — by the user, by Claude, or both
Slash command
/forgeproof:forgeproof-reset [issue-number|--all][issue-number|--all]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Remove ForgeProof artifacts and optionally delete branches for a fresh run.
Remove ForgeProof artifacts and optionally delete branches for a fresh run.
The provenance engine script is at ${CLAUDE_PLUGIN_ROOT}/skills/forgeproof/scripts/forgeproof.py.
If $ARGUMENTS contains an issue number, set $ISSUE to that number.
If $ARGUMENTS is --all or empty, clean up all ForgeProof state.
For a single issue:
python ${CLAUDE_PLUGIN_ROOT}/skills/forgeproof/scripts/forgeproof.py reset --issue $ISSUE
For all issues:
python ${CLAUDE_PLUGIN_ROOT}/skills/forgeproof/scripts/forgeproof.py reset --all
Check if currently on a forgeproof branch:
git branch --show-current
If on a forgeproof/* branch, switch to main first:
git checkout main
For a single issue, check for the local branch:
git branch --list forgeproof/$ISSUE
If it exists, delete it:
git branch -D forgeproof/$ISSUE
For all issues, list all forgeproof branches:
git branch --list 'forgeproof/*'
Delete each one.
Ask the user if they also want to delete remote branches.
If yes, for a single issue:
git push origin --delete forgeproof/$ISSUE
For all issues, delete each remote forgeproof branch.
Report what was cleaned up: files deleted, branches removed. Confirm the
workspace is ready for a fresh /forgeproof run.
npx claudepluginhub ryanjmichie-git/forgeproof-plugin --plugin forgeproofProvides CDSS development patterns for drug interaction checking, dose validation, clinical scoring (NEWS2, qSOFA), and alert classification integrated into EMR workflows.