Create a Capsule v2 with `status: paused` capturing full execution state for later resume.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add wrg32786/aigent-os --skill pause --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pause?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wrg32786-pause)More formats (shields.io, HTML) on the badges page.
# /pause — Pause current work with resumable state
Create a Capsule v2 with `status: paused` capturing full execution state for later resume.
## Trigger
`/pause` or `/pause waiting on {blocker}`
## Flow
1. **Capture state** — gather from current session:
- Objective (what we were working on)
- Files touched (from tool call history)
- Skills and agents used
- Last verified state (what was confirmed working)
- Open questions and blockers
2. **Determine waiting_on** — from argument or ask:
- `will` — needs the operator's decision or input
- `agent` — waiting on a sub-agent to complete
- `tool` — waiting on external tool/API/deploy
- `external` — waiting on someone outside the system (a colleague, a client, etc.)
3. **Set resume_trigger**:
- `will` → `manual` (the operator decides when to resume)
- `agent` → `open` (resumes at next session boot, which checks agent status)
- `tool` → `manual` (check tool status on resume)
- `external` → `open` (resumes at next session boot, surfacing the wait)
4. **Write capsule** — use `/context-capsule` schema with `status: paused`
5. **Update BODY_STATE.json** — set `state.last_capsule` with paused capsule info
6. **Output**:
```
Paused: {objective}
Waiting on: {waiting_on}
Resume trigger: {resume_trigger}
Next action: {next_valid_action}
Resume with /resume (offered automatically at next session boot).
```
## Related
- `/resume` — pick up paused work
- `/context-capsule` — the underlying capsule system
- [[concepts/Capsule v2 Doctrine]] — design rationale
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!