Read computed runtime state and display a concise operational summary. Under 12 lines.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add wrg32786/aigent-os --skill status --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Status?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/wrg32786-status)More formats (shields.io, HTML) on the badges page.
# /status — aigent-OS operational status
Read computed runtime state and display a concise operational summary. Under 12 lines.
## Trigger
`/status` — user-facing command. Also available to the AIgent internally.
## Flow
1. Run `python3 "$AIGENT_VAULT/daemons/runtime/update-active-state.py"` to refresh state
2. Read `$AIGENT_VAULT/memory/runtime/ACTIVE_STATE.json`
3. Format and display:
```
Mode: {mode}
Objective: {current_objective or "none"}
Next: {next_valid_action or "none"}
Pressure: context {p.context}, memory {p.memory}, token {p.token}
Capsule: {active_capsule.id or "none"} ({active_capsule.status})
Blocked: {count} items
Gaps: {count} open skill gaps
Reflexes: {list of true reflexes, or "none"}
```
4. If any reflexes are true, add a line: `Reflex: {reflex} — {action hint}`
- should_capsule → "Context pressure high — capsule recommended"
- should_digest → "Memory backlog >30 — /digest recommended"
- should_skill_hunt → "Open skill gaps — /skill-hunt queued"
- should_close → "Session >2hr — consider /close"
- should_escalate → "Blocked items — escalation needed"
## Output format
Keep it tight. Terminal-style. No prose. No headers. Just the state.
## Example
```
Mode: active
Objective: Build runtime state layer
Next: Wire /open and /close to read ACTIVE_STATE
Pressure: context low, memory medium, token low
Capsule: 2026-05-08-session38-close (active)
Blocked: 0 items
Gaps: 0 open
Reflexes: digest — Memory backlog >30
```
## Related
- `memory/runtime/ACTIVE_STATE.json` — the state this reads
- `memory/runtime/README.md` — schema docs
- `daemons/runtime/update-active-state.py` — the computer
- `/body-check` — deeper vital signs (somatic layer)
- `/open` and `/close` — compute state as part of session lifecycle
Is this your skill, or is something wrong with this listing? . Author removals are honored within 72 hours.
No comments yet. Be the first to comment!