nuke
- Repo stars 330
- License MIT
- Author repo claude-skill-registry
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:
lsof -i :47100-47200 -P -n -t 2>/dev/null | xargs -r kill -9Kill any remaining shella-related node processes (if needed):
pkill -f "shella" 2>/dev/null || trueOptionally clear state (ask user first):
rm -f ~/.local/state/shella/registry.json rm -f ~/.local/state/shella/dev.logVerify clean:
lsof -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- Fluxly category
- Data
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 94 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @majiayu000 · MIT
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Guided setup
- External API key
- No requirement detected
- Detected OS requirements
- macOS · Linux · Windows
- Runtime requirements
- Node.js
- Detected file/system behavior
-
- Read-only
- Write / modify
- Shell exec
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Confirm with user before proceeding. This will: Kill all processes on ports 47100-47200 Optionally delete registry.json (layout and instance state)
Tell the user to restart with: Or for full stack:
# Nuke Shella State
Kill all shella processes and optionally clear state. This is destructive - only run when explicitly requested.
## Steps
1. **Confirm with user** before proceeding. This will:
- Kill all processes on ports 47100-47200
- Optionally delete registry.json (layout and instance state)
2. **Kill processes on shella ports**:
```bash
lsof -i :47100-47200 -P -n -t 2>/dev/null | xargs -r kill -9
```
3. **Kill any remaining shella-related node processes** (if needed):
```bash
pkill -f "shella" 2>/dev/null || true
```
4. **Optionally clear state** (ask user first):
```bash
rm -f ~/.local/state/shella/registry.json
rm -f ~/.local/state/shella/dev.log
```
5. **Verify clean**:
```bash
lsof -i :47100-47200 -P -n 2>/dev/null | grep LISTEN
```
Should return nothing.
## After Nuking
Tell the user to restart with:
```bash
npm run dt dev daemon
```
Or for full stack:
```bash
npm run dt dev all
``` Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Steps → After Nuking
terms -> Confirm with user · Kill processes on shella ports · Kill any remaining shella-related node processes · Optionally clear state · Verify clean
files/cmd -> registry.js · dev/null · .local/state/shella/registry.json · .local/state/shella/dev.log
body sha256 -> 68e4315d1786
Decide Fit First
Design Intent
How To Use It
Boundaries And Review