Agent skill
nuke
Kill all shella processes and reset state. Nuclear option when things are broken. Use with caution.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/devops/nuke
SKILL.md
Nuke Shella State
Kill all shella processes and optionally clear state. This is destructive - only run when explicitly requested.
Steps
-
Confirm with user before proceeding. This will:
- Kill all processes on ports 47100-47200
- Optionally delete registry.json (layout and instance state)
-
Kill processes on shella ports:
bashlsof -i :47100-47200 -P -n -t 2>/dev/null | xargs -r kill -9 -
Kill any remaining shella-related node processes (if needed):
bashpkill -f "shella" 2>/dev/null || true -
Optionally clear state (ask user first):
bashrm -f ~/.local/state/shella/registry.json rm -f ~/.local/state/shella/dev.log -
Verify clean:
bashlsof -i :47100-47200 -P -n 2>/dev/null | grep LISTENShould return nothing.
After Nuking
Tell the user to restart with:
npm run dt dev daemon
Or for full stack:
npm run dt dev all
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?