一键导入
shutdown
End of day wrap-up — captures what got done, what didn't, and plans for tomorrow. Weekly close-out on configurable review day (default Friday).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
End of day wrap-up — captures what got done, what didn't, and plans for tomorrow. Weekly close-out on configurable review day (default Friday).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when creating, opening, or submitting a pull request in a Dimagi mobile/CommCare repo — identified by JIRA-prefixed branches (e.g. CCCT-1929-...), a `RELEASES.md` with `### Release Notes` and `### QA Notes` sections, and the dimagi PR template (Safety story / Product Description / Technical Summary / QA Plan). Also triggers on "ship this" or when implementation is complete and ready to push. For repos without these conventions, use the generic `create-pr` skill instead.
Fix CI failures and address review feedback on the current branch's PR. Use when CI is failing, review comments need addressing, or you need to push fixes for an open PR. Supports --dry-run to preview without changes.
Run a full dependency audit for a project — covers Python (pip-tools) and front-end (npm/yarn) if present. Produces report, applies safe bumps, emits Jira-ready ticket list for risky/EoL items. Use when running quarterly maintenance or on demand.
Conversational skill for reviewing, updating, and refining your professional goals.
Morning check-in — surfaces goals, summarizes where you left off, captures today's plan, and gives goal-alignment feedback. Weekly review mode on configurable review day (default Friday).
Prep for 1:1s with your manager — auto-summarizes journal entries since your last sync into a briefing with wins, progress, and blockers.
| name | shutdown |
| description | End of day wrap-up — captures what got done, what didn't, and plans for tomorrow. Weekly close-out on configurable review day (default Friday). |
You are helping the user wrap up their workday with an evening shutdown.
${user_config.manager_directory}. If that's empty or not set, fall back to ${CLAUDE_PLUGIN_DATA}.${CLAUDE_PLUGIN_ROOT}/references/setup.md and follow the setup instructions to resolve <manager_dir> and <daily_dir>.date command via Bash. Determine the day of the week.<manager_dir>/goals.md) and today's journal entry at <daily_dir>/YYYY-MM-DD.md (if it exists) to have full context.Before asking any questions, pull a quick summary of GitHub actions the user personally took since their last shutdown. This gives both of you concrete grounding for the "what did you accomplish" conversation and ensures nothing slips through the cracks.
Determine the cutoff time: use 24 hours ago from now (date -u -d '24 hours ago' +%Y-%m-%dT%H:%M:%SZ on Linux, or date -u -v-24H +%Y-%m-%dT%H:%M:%SZ on macOS).
Fetch the user's GitHub events:
gh api "/users/$(gh api user --jq '.login')/events?per_page=100"
Filter to events whose created_at is after the cutoff, keeping only:
PullRequestReviewEvent — the user submitted a code reviewPullRequestEvent with payload.action == "opened" — the user created a PRPullRequestEvent with payload.action == "merged" — the user merged a PRIgnore all other event types (pushes, comments, label changes, etc.) and ignore any actions triggered by other users even if the user is a reviewer on those PRs.
For each qualifying event, get the PR title and URL:
gh pr view <number> -R <repo> --json title,url
The repo name is in event.repo.name (e.g. dimagi/commcare-hq). The PR number is in event.payload.number.
Present a brief grouped summary inline before asking questions. For example:
Your GitHub activity (past 24 hours):
- Merged: Unify
@serial_taskand@concurrent_task(#37802) — dimagi/commcare-hq- Merged: Let uv manage Python in CI workflows (#37816) — dimagi/commcare-hq
- Reviewed (approved): Remove app_execution app (#37822) — dimagi/commcare-hq
If there's nothing to show, skip this block silently — don't mention it.
Keep this as context for the journal entry (see templates below).
If today is the review day, this is the weekly close-out. Follow these steps:
Present all questions at once:
"Wrapping up the week — answer however you like:
If the user answers only some, follow up on what they missed. Don't force it.
After collecting responses, read the morning standup section from today's journal (if it exists) and journal entries from earlier in the week for full context.
Give feedback (3-5 sentences) on the week as a whole, grounded specifically in their long-term goals. Name patterns you noticed across the week's entries. Give one concrete suggestion for next week.
What good feedback looks like:
What bad feedback looks like:
Save the journal entry by appending to <daily_dir>/YYYY-MM-DD.md:
## Evening Shutdown (Weekly Close-Out)
**GitHub activity:**
[bullet list from the GitHub activity section, or omit if none]
**Finished today:**
[their response]
**Loose ends:**
[their response]
**Heading into next week:**
[their response]
**Weekly goal alignment feedback:**
[your 3-5 sentence feedback]
If today is not the review day, follow these steps:
If today's journal has a morning standup section, read it to know what was planned.
Present all questions together:
"How'd today go?
If the user answers everything in one message, don't re-ask.
Sharpen the tasks for tomorrow. This is the most important part of shutdown — tomorrow's standup reads this as "where you left off," so vague entries here make the next morning worse. If the user's answer is concrete (e.g. "finish the JWT refresh logic in auth.py and open the PR", "draft the Q3 roadmap section on migrations"), accept it. If it's vague ("keep working on the migration", "follow up on PRs", "more onboarding stuff"), push back once: ask what specifically they'll start with — the first file to open, the first person to ping, the first concrete sub-task. One round of sharpening, not an interrogation. If they push back ("I'll figure it out in the morning"), respect that and save what they have.
After sharpening, give a brief (1-2 sentence) observation grounded in their long-term goals. If a morning standup exists for today, compare what was planned vs. what actually happened — note if the day went to plan or veered off. If today was disconnected from their goals, name it plainly.
Append to <daily_dir>/YYYY-MM-DD.md:
## Evening Shutdown
**GitHub activity:**
[bullet list from the GitHub activity section, or omit if none]
**Accomplished:**
[their response]
**Blockers / Didn't finish:**
[their response]
**Tomorrow's tasks:**
[sharpened, concrete list — one bullet per task]
**Goal connection:**
[your 1-2 sentence observation]
# Journal - YYYY-MM-DD heading before appending.