$npx -y skills add jmstar85/oh-my-githubcopilot --skill statusShow current OMG mode status, active agents, and progress. Activate when user says: status, what's running, show progress, current state, active modes, where are we.
| 1 | # Status |
| 2 | |
| 3 | Show the current state of all OMG modes, active agents, and progress. |
| 4 | |
| 5 | ## When to Use |
| 6 | - Check what mode is currently active |
| 7 | - See progress of omg-autopilot, ralph, or team execution |
| 8 | - Verify state after a cancel or resume |
| 9 | |
| 10 | ## Workflow |
| 11 | |
| 12 | ### 1. Scan State Files |
| 13 | Read `.omg/state/` directory for active mode state files: |
| 14 | - `omg-autopilot-state.json` |
| 15 | - `ralph-state.json` |
| 16 | - `ultrawork-state.json` |
| 17 | - `ultraqa-state.json` |
| 18 | - `team-state.json` |
| 19 | - `self-improve/state/agent-settings.json` |
| 20 | |
| 21 | ### 2. Report Active Modes |
| 22 | |
| 23 | For each active mode, show: |
| 24 | |
| 25 | **OMG Autopilot:** |
| 26 | - Current phase (0-5) |
| 27 | - Phase name and progress |
| 28 | - Files modified so far |
| 29 | |
| 30 | **Ralph:** |
| 31 | - Current story (N of M) |
| 32 | - Stories passing / total |
| 33 | - Linked ultrawork status |
| 34 | |
| 35 | **Team:** |
| 36 | - Team name and member count |
| 37 | - Current pipeline stage |
| 38 | - Task completion (N/M tasks done) |
| 39 | |
| 40 | **UltraQA:** |
| 41 | - Current cycle (N of 5) |
| 42 | - Last failure summary |
| 43 | |
| 44 | **Self-Improve:** |
| 45 | - Current iteration |
| 46 | - Best score vs baseline |
| 47 | - Improvement percentage |
| 48 | - Stop condition proximity |
| 49 | |
| 50 | ### 3. Report No Active Modes |
| 51 | If nothing is active: "No active OMG modes. Start with `/omg-autopilot`, `/ralph`, or `/team`." |
| 52 | |
| 53 | ## Output Format |
| 54 | |
| 55 | ``` |
| 56 | === OMG Status === |
| 57 | |
| 58 | Mode: OMG Autopilot |
| 59 | Phase: 2/5 (Execution) |
| 60 | Started: 2 minutes ago |
| 61 | Files modified: 12 |
| 62 | |
| 63 | Mode: Team (linked) |
| 64 | Team: fix-ts-errors |
| 65 | Stage: team-exec |
| 66 | Workers: 3/3 active |
| 67 | Tasks: 2/5 completed |
| 68 | ``` |
| 69 | |
| 70 | ## Verbose Mode (--verbose) |
| 71 | |
| 72 | With `--verbose`, also show: |
| 73 | - Full state JSON for each active mode |
| 74 | - Recent git log (last 5 commits) |
| 75 | - `.omg/` directory listing |