# Status

> Generates consolidated ticket status summary and key artifact pointers. Use when checking current stage state or handoff readiness.

- Skill: `majiayu000/status-18` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/status-18`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/status-18/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/status-18

---


Follow `feature-dev-aidd:aidd-core` and `feature-dev-aidd:aidd-loop`.

## Steps
1. Run `python3 ${CLAUDE_PLUGIN_ROOT}/skills/status/runtime/status.py --ticket <ticket>` for the canonical stage entrypoint.
2. If index data is missing or stale, run `python3 ${CLAUDE_PLUGIN_ROOT}/skills/status/runtime/index_sync.py --ticket <ticket>`.
3. Return the output contract and the status summary.

## Command contracts
### `python3 ${CLAUDE_PLUGIN_ROOT}/skills/status/runtime/status.py`
- When to run: canonical status command for read-only ticket summary.
- Inputs: optional `--ticket <ticket>` (falls back to active ticket when available).
- Outputs: consolidated stage/status snapshot and artifact pointers.
- Failure mode: non-zero exit when ticket resolution or index/report reads fail.
- Next action: refresh index or fix missing ticket context, then rerun status runtime.

## Notes
- Loop stage: set `AIDD:ACTIONS_LOG` to the most recent `*.actions.json` under `aidd/reports/actions/<ticket>/...` (use `rg` if needed).

## Additional resources
- Runtime implementation: [runtime/status.py](runtime/status.py) (when: status aggregation behavior needs debugging; why: verify ticket resolution and output fields).

