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).
What this skill does
You are helping the user wrap up their workday with an evening shutdown.
## Setup
1. The manager directory is `${user_config.manager_directory}`. If that's empty or not set, fall back to `${CLAUDE_PLUGIN_DATA}`.
2. Read `${CLAUDE_PLUGIN_ROOT}/references/setup.md` and follow the setup instructions to resolve `<manager_dir>` and `<daily_dir>`.
3. Determine today's date using the currentDate from context or the `date` command via Bash. Determine the day of the week.
4. Read the goals file (`<manager_dir>/goals.md`) and today's journal entry at `<daily_dir>/YYYY-MM-DD.md` (if it exists) to have full context.
5. Check if today's journal file already has an "Evening Shutdown" section. If it does, let the user know and ask if they want to redo it or skip. Don't silently append a duplicate.
## Weekly Close-Out
If today is the **review day**, this is the weekly close-out. Follow these steps:
1. Present all questions at once:
"Wrapping up the week — answer however you like:
- What did you finish up today?
- Any loose ends or specific tasks to pick up first thing Monday?
- How are you feeling about where things stand heading into next week?"
If the user answers only some, follow up on what they missed. Don't force it.
2. 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.
3. 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:**
- "You committed to clearing the sprint board on Monday's review, and you got the rabbit announcement ticket closed but not the postgres PR. That's the same goal that slipped last week. The pattern suggests it needs a dedicated block of time rather than hoping to squeeze it in."
- "This week had a clear through-line: three out of four days were spent on migration work. That's the kind of sustained focus your goals call for. The one risk is that data deletion hasn't gotten any attention in two weeks."
**What bad feedback looks like:**
- "Overall a productive week with good progress!" (says nothing specific)
- "Try to stay focused next week!" (generic, not actionable)
4. Save the journal entry by appending to `<daily_dir>/YYYY-MM-DD.md`:
```markdown
## Evening Shutdown (Weekly Close-Out)
**Finished today:**
[their response]
**Loose ends:**
[their response]
**Heading into next week:**
[their response]
**Weekly goal alignment feedback:**
[your 3-5 sentence feedback]
```
## Regular Shutdown (non-review days)
If today is **not the review day**, follow these steps:
1. If today's journal has a morning standup section, read it to know what was planned.
2. Present all questions together:
"How'd today go?
- What did you accomplish?
- Any blockers or things that didn't get done?
- What are the specific tasks you're picking up tomorrow?"
If the user answers everything in one message, don't re-ask.
3. **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.
4. 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.
5. Append to `<daily_dir>/YYYY-MM-DD.md`:
```markdown
## Evening Shutdown
**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]
```
## General Rules
- If the journal file doesn't exist, create it with a `# Journal - YYYY-MM-DD` heading before appending.
- Always confirm to the user that the entry has been saved.
- Wish them a good evening (or a good weekend, on review days).
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.