what-we-done
$
npx mdskill add Soul-Brews-Studio/arra-oracle-skills-cli/what-we-doneGenerate factual progress reports on commits, PRs, issues, and releases.
- Delivers concise updates on shipped work within specified time windows.
- Integrates with git, GitHub CLI, and GitHub API for data retrieval.
- Executes parallel queries to aggregate metrics across multiple categories.
- Outputs structured markdown lists or a single status message.
SKILL.md
.github/skills/what-we-doneView on GitHub ↗
--- name: what-we-done description: 'Facts-only progress report — commits, PRs merged, issues closed, releases in a time window. No diary, no reflection. Use when user says "what we done", "what shipped", "progress report", "what happened".' argument-hint: "[3h | 6h | 12h | 1d | 3d | 7d]" zombie: true origin: arra-symbiosis-skills --- # /what-we-done — Facts Only Progress Report List what got done. No diary, no reflection — just facts. ## Usage ``` /what-we-done # Last 3 hours (default) /what-we-done 6h # Last 6 hours /what-we-done 1d # Last 24 hours /what-we-done 7d # Last week ``` ## Steps ### 1. Parse time window Default: `3 hours ago`. Accept: 3h, 6h, 12h, 1d, 2d, 3d, 7d. ### 2. Gather facts (parallel) ```bash # Commits git log --since="$SINCE" --oneline --all # PRs merged gh pr list --state merged --search "merged:>$DATE" --json number,title \ --jq '.[] | "#\(.number) \(.title)"' 2>/dev/null # Issues closed gh issue list --state closed --search "closed:>$DATE" --json number,title \ --jq '.[] | "#\(.number) \(.title)"' 2>/dev/null # Releases gh release list --limit 5 2>/dev/null | head -5 ``` ### 3. Output ```markdown ## What We Done (last 3h) ### Commits (N) - abc1234 feat: add /whats-next skill ### PRs Merged (N) - #106 fix: arra rebrand ### Issues Closed (N) - #99 refactor: oracle_ -> arra_ ### Releases - v3.3.0-alpha.10 ``` If nothing in a category, skip silently. If nothing at all: "Nothing shipped in the last 3h." ARGUMENTS: $ARGUMENTS
More from Soul-Brews-Studio/arra-oracle-skills-cli
- about-oracleWhat is Oracle — told by the AI itself. Origin story, stats, family count, ecosystem overview. Use when someone asks "what is oracle", "about oracle", "tell me about this project", or wants the origin story. Do NOT trigger for "who are you" (use /who-are-you), "philosophy" (use /philosophy), or session status questions.
- alpha-featureFull skill development pipeline — create, compile, test, commit, install. Use when user says "new skill", "create skill", "alpha-feature", or wants to build a skill end-to-end.
- auto-retrospectiveConfigure auto-rrr and auto-forward triggers based on context window usage. Use when user says "auto rrr", "auto-scale", "configure auto triggers", "change rrr interval", "toggle auto", or wants to adjust when /rrr and /forward auto-trigger. Do NOT trigger for running /rrr manually (use /rrr) or creating handoffs (use /forward).
- awakenGuided Oracle birth and awakening ritual. Default is Soul Sync (~20min), or --fast (~5min). Use when creating a new Oracle in a fresh repo, when user says 'awaken', 'birth oracle', 'create oracle', 'new oracle', or wants to set up Oracle identity in an empty repository. Do NOT trigger for general repo setup, git init, or project scaffolding without Oracle context.
- bampenpienบำเพ็ญเพียร — diligent practice. A guided conversation between human and Oracle about doing hard things without knowing why. Like /awaken but repeatable — a practice, not a birth. Use when user says 'bampenpien', 'บำเพ็ญเพียร', 'why am I doing this', 'hard work', 'keep going', 'what am I building', or needs to reconnect with purpose through difficulty.
- birthPrepare Oracle birth props for a new repo — Issue #1, MCP thread, identity data. Use when user says "birth", "new oracle", "prepare repo", or wants to bootstrap a new Oracle before /awaken.
- budCreate a new oracle via maw bud — yeast-colony reproduction. Use when user says "bud", "new oracle", "create oracle", "spawn oracle", or wants to create a new permanent oracle from the current one.
- create-shortcutCreate local skills as shortcuts — makes real /commands in .claude/skills/. Use when user says "create shortcut", "create skill", "make a command for", "add shortcut", or wants a quick custom /slash-command. Also lists and deletes local skills. ALSO triggers on "Unknown skill", "skill not found", or any unrecognized /slash-command — auto-creates it on the fly.
- digMine Claude Code sessions — timeline, gaps, repo attribution, session history. Use when user says "dig", "sessions", "past sessions", "timeline", "what did I work on", or wants to see session history. Do NOT trigger for finding code/projects (use /trace), exploring repos (use /learn), or current session status (use /recap).
- feelCapture how the system feels — energy, momentum, burnout, breakthrough. Emotional intelligence for Oracle-human collaboration. Use when user says 'feel', 'how are we', 'energy check', 'burnout', 'momentum', or wants emotional awareness of the work.