From reload-and-reset
Updates the AI instruction system to the latest version and resets AI behavior to follow instructions
npx claudepluginhub dobachi/claude-skills-marketplace --plugin reload-and-resetThis skill uses the workspace's default tool permissions.
> **Language:** Respond in the user's language. If unclear, default to the language of the user's message.
Guides strict Test-Driven Development (TDD): write failing tests first for features, bugfixes, refactors before any production code. Enforces red-green-refactor cycle.
Guides systematic root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Guides A/B test setup with mandatory gates for hypothesis validation, metrics definition, sample size calculation, and execution readiness checks.
Language: Respond in the user's language. If unclear, default to the language of the user's message.
Updates the AI instruction system to the latest version and corrects AI behavior to properly follow instructions.
Save current task state
echo "Saving current task state..."
scripts/checkpoint.sh pending > /tmp/ai_tasks_backup.txt 2>&1 || echo "No task information"
Update submodule (skip if this is the project itself)
if [ -d "instructions/ai_instruction_kits/.git" ]; then
echo "Updating AI instruction system..."
git submodule update --remote instructions/ai_instruction_kits
else
echo "Running in AI instruction kit dev environment (skipping submodule update)"
fi
Verify update status
echo "Current instruction system status:"
if [ -d "instructions/ai_instruction_kits/.git" ]; then
git submodule status instructions/ai_instruction_kits
else
echo "Dev environment: $(git rev-parse --short HEAD)"
fi
System reset declaration Reset the AI system with the following procedure:
I have now been reset to the following state:
Reload ROOT_INSTRUCTION
Auto-detect path and load:
instructions/ja/system/ROOT_INSTRUCTION.md or
instructions/ai_instruction_kits/instructions/ja/system/ROOT_INSTRUCTION.md
Check saved task state
if [ -f "/tmp/ai_tasks_backup.txt" ]; then
echo "Saved tasks:"
cat /tmp/ai_tasks_backup.txt
rm /tmp/ai_tasks_backup.txt
fi
/reload-and-reset
No arguments required. The AI system will be fully reset and will operate according to the latest instructions.