Weekly Status
Generates a structured weekly accomplishment report by pulling activity from all connected work tools. Covers what got done, key metrics, blockers, and upcoming priorities.
When to Activate
- User says "weekly status", "status report", "weekly update"
- User asks "what did I do this week?" or "what did I accomplish?"
- User needs to prepare for a standup, skip-level, or weekly sync
Input
Optional overrides:
- Date range: Defaults to last 7 days. User can specify "last 2 weeks" or specific dates.
- Focus area: Limit to a specific project, team, or epic.
- Audience: "for my manager", "for the team", "for skip-level" (adjusts detail level).
Execution
Step 1: Determine Date Range
Default: 7 days back from today. Use the system date command to get the current date.
Step 2: Parallel Data Gathering (Fan-Out)
Launch parallel searches across all connected MCP sources.
| Source |
Query |
Extract |
| Jira |
Issues transitioned to Done/Closed in date range, assigned to user |
Completed work, story points |
| Jira |
Issues currently In Progress, assigned to user |
Active work |
| Jira |
Issues with blockers or impediments |
Blockers |
| GitHub |
PRs merged by user in date range |
Code shipped |
| GitHub |
PRs opened and still in review |
Pending reviews |
| Confluence |
Pages created or updated by user in date range |
Documentation work |
| Slack |
Threads where user posted substantive messages |
Key discussions, decisions |
Step 3: Categorize and Synthesize
Group findings into categories:
- Shipped: Completed Jira issues, merged PRs, published docs
- In Progress: Active issues, open PRs
- Blocked: Issues with impediments, stalled PRs
- Discussions: Key decisions made in Slack/email
Step 4: Generate Report
Output Format
Output directly in conversation (do NOT create a file unless asked):
# Weekly Status: {Date Range}
## Accomplishments
### Shipped
- {Completed item} ({source}: {link or ID})
- {Completed item} ({source}: {link or ID})
### Documentation
- {Page created/updated} ({Confluence link})
### Decisions Made
- {Decision}: {context} ({Slack channel or meeting})
## Metrics
- Issues completed: {count} ({story points} points)
- PRs merged: {count}
- Pages published: {count}
## In Progress
- {Active item}: {status/next step} ({source})
## Blockers
- {Blocker}: {what's needed to unblock} ({source})
## Next Week
- {Priority 1}: {brief description}
- {Priority 2}: {brief description}
- {Priority 3}: {brief description}
Rules
- Facts only: Every line item must come from an actual source. No padding.
- Cite sources: Include Jira IDs, PR numbers, Confluence links.
- Audience awareness: If user specifies audience, adjust detail level. Manager reports are higher-level; team reports include technical detail.
- Metrics matter: Always include quantitative summary.
- Next Week from backlog: Pull upcoming priorities from Jira sprint or backlog, not invented.
Fallback
If MCP tools are unavailable:
- Note which sources were unreachable.
- Ask the user to list accomplishments manually.
- Help structure whatever they provide into the report format.
1---2name: weekly-status3description: Weekly accomplishment report. Pulls from Jira, GitHub, Confluence, and Slack to produce a structured status report with accomplishments, metrics, blockers, and next week plan. Triggers on: "weekly status", "status report", "what did I do this week".4---56# Weekly Status78Generates a structured weekly accomplishment report by pulling activity from all connected work tools. Covers what got done, key metrics, blockers, and upcoming priorities.910## When to Activate1112- User says "weekly status", "status report", "weekly update"13- User asks "what did I do this week?" or "what did I accomplish?"14- User needs to prepare for a standup, skip-level, or weekly sync1516## Input1718Optional overrides:19- **Date range**: Defaults to last 7 days. User can specify "last 2 weeks" or specific dates.20- **Focus area**: Limit to a specific project, team, or epic.21- **Audience**: "for my manager", "for the team", "for skip-level" (adjusts detail level).2223## Execution2425### Step 1: Determine Date Range2627Default: 7 days back from today. Use the system `date` command to get the current date.2829### Step 2: Parallel Data Gathering (Fan-Out)3031Launch parallel searches across all connected MCP sources.3233| Source | Query | Extract |34|:-------|:------|:--------|35| Jira | Issues transitioned to Done/Closed in date range, assigned to user | Completed work, story points |36| Jira | Issues currently In Progress, assigned to user | Active work |37| Jira | Issues with blockers or impediments | Blockers |38| GitHub | PRs merged by user in date range | Code shipped |39| GitHub | PRs opened and still in review | Pending reviews |40| Confluence | Pages created or updated by user in date range | Documentation work |41| Slack | Threads where user posted substantive messages | Key discussions, decisions |4243### Step 3: Categorize and Synthesize4445Group findings into categories:46- **Shipped**: Completed Jira issues, merged PRs, published docs47- **In Progress**: Active issues, open PRs48- **Blocked**: Issues with impediments, stalled PRs49- **Discussions**: Key decisions made in Slack/email5051### Step 4: Generate Report5253## Output Format5455Output directly in conversation (do NOT create a file unless asked):5657```markdown58# Weekly Status: {Date Range}5960## Accomplishments61### Shipped62- {Completed item} ({source}: {link or ID})63- {Completed item} ({source}: {link or ID})6465### Documentation66- {Page created/updated} ({Confluence link})6768### Decisions Made69- {Decision}: {context} ({Slack channel or meeting})7071## Metrics72- Issues completed: {count} ({story points} points)73- PRs merged: {count}74- Pages published: {count}7576## In Progress77- {Active item}: {status/next step} ({source})7879## Blockers80- {Blocker}: {what's needed to unblock} ({source})8182## Next Week83- {Priority 1}: {brief description}84- {Priority 2}: {brief description}85- {Priority 3}: {brief description}86```8788## Rules8990- **Facts only**: Every line item must come from an actual source. No padding.91- **Cite sources**: Include Jira IDs, PR numbers, Confluence links.92- **Audience awareness**: If user specifies audience, adjust detail level. Manager reports are higher-level; team reports include technical detail.93- **Metrics matter**: Always include quantitative summary.94- **Next Week from backlog**: Pull upcoming priorities from Jira sprint or backlog, not invented.9596## Fallback9798If MCP tools are unavailable:991. Note which sources were unreachable.1002. Ask the user to list accomplishments manually.1013. Help structure whatever they provide into the report format.