From prospect-studio
Generate weekly status report from workspace activity. Optionally export as PowerPoint. Use when user says "weekly report", "week in review", "what did I accomplish this week", "status update", "export weekly status as PowerPoint".
npx claudepluginhub includehasan/prospect-studio --plugin prospect-studioThis skill uses the workspace's default tool permissions.
Generate a weekly status report. $ARGUMENTS
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Generate a weekly status report. $ARGUMENTS
Process:
documents/activity-log.md — filter entries from the past 7 daysresearch/search-log.md — filter entries from the past 7 daysdocuments/tasks/active/ and documents/tasks/completed/ — identify tasks completed, in-progress, or newly created this weekdocuments/leads/ — identify leads that changed status this week (check updated: frontmatter)Structure the report:
---
title: Weekly Report — Week of [date range]
type: note
created: YYYY-MM-DD
updated: YYYY-MM-DD
status: active
---
# Weekly Report — Week of [Mon date] – [Fri date]
## Accomplishments
- [Completed tasks and closed/advanced leads]
## Lead Activity
| Company | Previous Stage | Current Stage | Action Taken |
|---------|---------------|---------------|--------------|
## Research & Analysis
- [Reports written, competitive analyses, market research]
## In Progress
- [Ongoing work with expected completion]
## Next Week Priorities
1. [Top priority]
2. [Second priority]
3. [Third priority]
Save to: documents/projects/weekly-report-YYYY-MM-DD.md
If the user asked for PowerPoint export:
Generate and run a Python script using python-pptx that creates a professional PPTX:
Run with the Bash tool. Save to exports/weekly-report-YYYY-MM-DD.pptx.
Note: Requires pip install python-pptx if not already installed. Check by running python3 -c "import pptx" first; if it fails, run pip install python-pptx before generating.