Display the current status of an active mission — read-only, no mutations.
Display a formatted summary of the current mission state. This skill is read-only and never modifies mission files.
Find the active mission directory under .mission/.
Read these files:
.mission/<slug>/state.json.mission/<slug>/features.json.mission/<slug>/validation-state.json.mission/<slug>/progress_log.jsonl (last 5 events)Print a formatted summary:
Mission: <slug>
State: <state>
Working directory: <workingDirectory>
Features: <completed>/<total> completed | <pending> pending | <blocked> blocked | <failed> failed | <skipped> skipped
Current: <currentFeatureId or "none">
Assertions: <passed>/<total> passed | <failed> failed | <pending> pending | <blocked> blocked | <skipped> skipped
Last commit: <explicit lastCommitId or derived latest mission commit or "none">
Last activity: <latest progress event timestamp or updatedAt>
Recent events:
[timestamp] eventType — summary
...
continueHere exists in state.json, show:Continue here:
Last: <lastAction>
Next: <nextStep>
Derive the displayed "Last commit" in this order:
git rev-list -1 HEAD -- .mission/<slug>/state.json .mission/<slug>/progress_log.jsonl .mission/<slug>/validation-state.jsonstate.json.lastCommitId"none"Derive the displayed "Last activity" in this order:
progress_log.jsonlstate.json.updatedAtDo not modify any files. Do not start execution.