From Ottonomous
Resets workflow artifacts (.otto/ directory) by clearing sessions, tasks, and specs. Useful for starting over with a clean state.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ottonomous:resetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reset workflow data. Selectively or fully clears the `.otto/` directory.
Reset workflow data. Selectively or fully clears the .otto/ directory.
| Target | Directory | Contents |
|---|---|---|
tasks | .otto/tasks/ | Task lists |
specs | .otto/specs/ | Specifications |
sessions | .otto/sessions/ | Browser sessions |
all | Above targets | Everything except docs (default) |
reset - Clear everything (prompts for confirmation)reset tasks - Clear only task listsreset specs tasks - Clear specs and tasksreset sessions - Clear browser sessions onlyreset all - Explicit full resetif [[ ! -d ".otto" ]]; then
echo "No .otto/ directory found. Nothing to reset."
exit 0
fi
If no .otto/ exists, report and stop.
Map targets to directories:
tasks -> .otto/tasks/
specs -> .otto/specs/
sessions -> .otto/sessions/
all -> tasks + specs + sessions (NOT docs)
If no arguments or all specified, target tasks, specs, and sessions. Docs are always preserved.
Show what will be removed with sizes:
du -sh <target_dirs> 2>/dev/null
Display to user:
Will remove:
.otto/tasks/ (4K)
.otto/specs/ (8K)
Prompt the user to confirm before proceeding:
"This will delete the selected workflow data. Continue?" Options: "Yes, reset" / "Cancel"
After confirmation, remove only the targeted directories:
rm -rf <target_dirs>
For all, remove tasks, specs, and sessions (preserving docs):
rm -rf .otto/tasks .otto/specs .otto/sessions .otto/otto
Reset complete. Cleared: tasks, specs
Run otto or spec to continue.
npx claudepluginhub brsbl/ottonomous --plugin ottonomousCleans up workspace artifacts: design-refs screenshots, test-results, playwright-report, and temp files. Supports --all and --dry-run flags.
Removes files installed by /optimus:init and /optimus:permissions from the project, comparing against plugin templates and always asking before deletion. Skips tests and user-modified files.
Resets Hypo-Workflow runtime artifacts (state, logs, reports) safely without deleting core project instructions. Supports full and hard reset modes with safety confirmations.