Claude-kit reset-project
Restore a project's .claude/ directory to the dotforge template from scratch, with backup and rollback option.
install
source · Clone the upstream repo
git clone https://github.com/luiseiman/dotforge
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/luiseiman/dotforge "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/reset-project" ~/.claude/skills/luiseiman-claude-kit-reset-project && rm -rf "$T"
manifest:
skills/reset-project/SKILL.mdsource content
Reset Project
Restore the current project's
.claude/ directory completely to the dotforge template, from scratch.
Step 1: Confirm with the user (MANDATORY)
Show warning before proceeding:
╔══════════════════════════════════════════════════╗ ║ RESET: .claude/ will be fully replaced ║ ║ ║ ║ The following will be lost: ║ ║ - Customizations in settings.json ║ ║ - Custom rules ║ ║ - Custom hooks ║ ║ - Any manually created files in .claude/ ║ ║ ║ ║ The following will be preserved: ║ ║ - settings.local.json (not touched) ║ ║ - CLAUDE.md (regenerated from template) ║ ║ - CLAUDE_ERRORS.md (preserved if it exists) ║ ║ ║ ║ A backup will be created at .claude.backup-YYYY-MM-DD/ ║ ╚══════════════════════════════════════════════════╝ Confirm reset? (yes/no)
If the user says "no", cancel immediately. DO NOT proceed without explicit confirmation.
Step 2: Detect stacks
Use detection rules from
$DOTFORGE_DIR/stacks/detect.md.
Confirm detected stacks with the user.
Step 3: Create backup
- Create directory
in the project root.claude.backup-{YYYY-MM-DD}/ - Copy ALL of
to the backup:.claude/cp -R .claude/ .claude.backup-$(date +%Y-%m-%d)/ - If
exists, copy it separately (it will be restored afterwards)CLAUDE_ERRORS.md - Verify the backup exists and has content
Step 4: Re-run full bootstrap
- Delete the current
:.claude/rm -rf .claude/ - Run the
skill in full from scratch/bootstrap-project - If
existed, restore the original file (not the empty template)CLAUDE_ERRORS.md
Step 5: Show diff between backup and new
Compare backup vs new
.claude/:
═══ RESET COMPLETE ═══ New files (did not exist before): + .claude/rules/agents.md + .claude/agents/researcher.md Updated files (differences from backup): ~ .claude/settings.json — 3 new permissions in allow ~ .claude/hooks/block-destructive.sh — 2 new patterns Deleted files (were in backup, not in template): - .claude/rules/custom-strategy.md Preserved files: = CLAUDE_ERRORS.md (restored from backup)
Step 6: Offer rollback
Backup available at: .claude.backup-YYYY-MM-DD/ To restore: rm -rf .claude && mv .claude.backup-YYYY-MM-DD .claude Delete backup? (yes/no — recommended: no, at least until verified)
If the user wants to restore, execute the rollback immediately. If the user wants to delete the backup, do it. If the user does not decide, leave the backup (it can be cleaned up manually later).
Installation
This skill is installed automatically if the symlink from
skills/ already exists in ~/.claude/skills/. If not, create the symlink:
ln -sf $DOTFORGE_DIR/skills ~/.claude/skills