statuslisted
Install: claude install-skill sdsrss/sgc
# Status
Read-only summary of the current `.sgc/` state: active task, level, last activity.
**Core principle:** know where you are before deciding where to go.
## When to Use
- User runs `/status` to check current state
- Starting a new session; need to understand what's in progress
- After a crash or interruption, to resume
## Permission
| Directory | Access |
|-----------|--------|
| decisions | R |
| progress | R |
| solutions | R |
| reviews | R |
Read-only across the board (the only write is `progress/handoff.md` on explicit session end).
## Routing
- **Behavior**: `sgc status` dispatched in [`src/sgc.ts`](../../../../src/sgc.ts) → reads `progress/current-task.md` + `progress/feature-list.md` via [`src/dispatcher/state.ts`](../../../../src/dispatcher/state.ts)
- **Graceful degradation**: missing file = skipped section, never an error
- **Invariants**: n/a (read-only)
## Execution
When this skill is invoked, dispatch to the sgc CLI:
```bash
bun src/sgc.ts status
```
For richer views (reviews per task, knowledge-base stats), read the files directly — `status` intentionally stays minimal and fast.
## Delegation hint
No delegation — read-only command. Use `/plan`, `/work`, `/review` etc. to take action.