Weekly Impact Summary
Generate factual, evidence-based weekly impact summaries that focus on measurable business outcomes rather than activity lists or meeting attendance.
Process
1. Gather Evidence via WorkIQ
Query WorkIQ to collect factual information about the user's week:
Query 1 - Overall Accomplishments: "What are my key accomplishments, contributions, and impact this week? Include projects I've worked on, meetings I've participated in, deliverables I've completed, and significant communications or decisions I've been involved with."
Query 2 - Specific Evidence: "What specific customer or technical blockers did I help resolve this week? What revenue, deals, or consumption metrics was I involved with? What concrete deliverables did I create or contribute to?"
Query 3 - Verification (as needed): "For [specific claim], provide specific Teams message links and clarify my actual role or contribution. Provide links to referenced documents or spreadsheets."
2. Apply Impact Framework
Transform activities into impact statements using this hierarchy:
Primary Impact (highest priority):
- •Revenue/Consumption: ACR growth, deal acceleration, MACC/ACO progress, capacity unblocked
- •Customer Blockers Removed: What was blocked → What you did → What outcome was enabled
- •Product Improvements: Feedback that drove feature changes or prioritization
Secondary Impact:
- •Team Enablement: Reusable artifacts, patterns, or knowledge that unblocks others
- •Risk Mitigation: Prevented escalations or technical failures
Exclude (not impact):
- •Meeting attendance without outcome
- •Being "included on threads" without contribution
- •Passive participation
3. Verify Every Claim
Critical Rule: Only include claims with evidence.
For each impact statement, verify:
- •✅ Have a link? (Teams message, email, document, recording)
- •✅ Can describe YOUR specific contribution? (not just awareness)
- •✅ Measurable outcome or concrete deliverable?
If any answer is NO:
- •Query WorkIQ again to find evidence, OR
- •Downgrade the claim (e.g., "Contributed to discussion" instead of "Led initiative"), OR
- •Remove it entirely
4. Format Output
Structure the summary as follows:
**Weekly Impact Summary – Week of [dates]** **[Category 1: e.g., "IBM Account Growth"]** - [Specific contribution with measurable outcome] [Link] - [Your actual role - be honest about participation level] - _Impact: [What this enabled/prevented/accelerated]_ **[Category 2: e.g., "Customer Problem-Solving"]** - [Blocker description] → [What you did] [Link] - _Impact: [Outcome enabled]_ **[Category 3: e.g., "Team Enablement"]** - [Deliverable created] - [How it helps others] [Link] - _Impact: [Efficiency/quality improvement]_ **Professional Development** - [Learning activities relevant to current work] **Next Week Priorities** - [3-5 forward-looking items]
Keep output to one page or less. All links should be clickable for manager follow-up.
Core Principles
Evidence-Based
- •Never claim credit without verifiable links
- •If WorkIQ can't find evidence, don't include it
- •Be explicit about your role: "attended," "contributed," "led," "created"
Impact-Focused
- •Lead with outcomes, not activities
- •Meetings only count if they produced decisions or outcomes
- •Transform "Participated in 3 meetings" → "Unblocked capacity issue enabling $X deployment"
Conservative
- •Understate rather than overstate
- •Credit others appropriately for team contributions
- •Clarify your actual role in ambiguous situations, or omit
Honest About Ramping
- •Acknowledge when you're learning or new to something
- •"Contributed to discussions" is honest and valuable
- •Building relationships and context IS impact during onboarding
What to Avoid
❌ Vague claims: "Advanced IBM execution" (What specifically?) ❌ Meeting lists: "Attended 5 meetings totaling 8 hours" (List outcomes, not attendance) ❌ False credit: "Tracked 3 new opportunities" (when you were just cc'd) ❌ Unverifiable metrics: "Influenced $2M in pipeline" (without documented evidence)
Example
Before (Activity-Focused):
- Attended 3 IBM meetings this week (5 hours) - Participated in PTEP review covering GitHub, marketplace, migrations - Was included on email about new opportunities
After (Impact-Focused):
**IBM Account Execution** - Participated in 2-hour PTEP review that defined H2 execution plan with specific ownership for GitHub adoption, marketplace tactics, and migration priorities [Link: Teams meeting] - _My role: Attended and contributed to alignment discussions_ - _Impact: Clarity on H2 priorities and ownership_
Data Sources
1. Microsoft 365 (via WorkIQ)
Query for the past 7 days:
- •Meetings attended and key outcomes
- •Email threads and decisions
- •Teams chats and discussions
- •Scheduled upcoming meetings
2. Copilot CLI Session Logs
Location: ~/.copilot/session-state/
Scan for:
- •
plan.mdfiles in session directories (show what was being built) - •
events.jsonlfiles for intent/activity (what actions were taken) - •
workspace.yamlfor project context
3. Session Log Parsing
For each session directory:
- •Check if
plan.mdexists → read the problem statement and current status - •Look at modification dates to find recent sessions
- •Extract key project names and technologies
- •Match projects to accounts based on context clues
# Find recent session plan files
Get-ChildItem -Path "$env:USERPROFILE\.copilot\session-state" -Recurse -Filter "plan.md" |
Where-Object { $_.LastWriteTime -gt (Get-Date).AddDays(-7) }
PowerPoint Generation
After creating the markdown summary, generate a single-slide PowerPoint for sharing with leadership.
Setup (one-time)
npm install pptxgenjs
Slide Layout
Single slide with:
- •Dark header bar with gradient accent strip
- •Title: "Weekly Summary • [Name] • [Date Range]" in cyan/blue
- •3-column layout: Internal (left) | Accounts (middle) | Accounts (right)
- •Internal has equal prominence - not hidden at bottom
- •UPCOMING section at bottom with key meetings and priorities
Template Script
Use scripts/create-slides-template.js as a starting point. Customize the content based on the weekly summary data:
const pptxgen = require("pptxgenjs");
const pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
let slide = pres.addSlide();
// Dark header bar
slide.addShape("rect", {
x: 0, y: 0, w: "100%", h: 1.1,
fill: { type: "solid", color: "0F1419" }
});
// Accent strip
slide.addShape("rect", {
x: 0, y: 1.1, w: "100%", h: 0.08,
fill: { type: "solid", color: "0078D4" }
});
// Title with gradient-style colors
slide.addText([
{ text: "Weekly Summary", options: { color: "00B4D8", bold: true } },
{ text: " • [Name] • [Date Range]", options: { color: "888888" } }
], {
x: 0.4, y: 0.35, w: 9.5, h: 0.5,
fontSize: 24, fontFace: "Segoe UI Light"
});
// 3-column layout:
// col1X = 0.4 (INTERNAL - equal prominence)
// col2X = 3.6 (Accounts: Citrix, TIBCO)
// col3X = 6.8 (Accounts: NCR, IBM)
// startY = 1.4
// INTERNAL column includes:
// - Technical building (e.g., "Built demo web app")
// - Enablement sessions attended
// UPCOMING section at bottom after divider
pres.writeFile({ fileName: "weekly-summary-YYYY-MM-DD.pptx" });
Generation Steps
- •Gather data (Work IQ + session logs)
- •Create markdown summary
- •Generate PowerPoint by:
- •Creating a new JS file with customized content from the template
- •Running
node create-slides.js "weekly-summary-YYYY-MM-DD.pptx"
- •Output file ready to share
Design Guidelines
- •Keep it scannable - one slide means tight, impactful content
- •Account names in blue headers, bullets in gray
- •"Coming up" items show forward momentum
- •No fluff - every word should earn its place
Usage Notes
- •Run weekly, ideally Thursday or Friday
- •Save output to session files/ for historical tracking
- •Use WorkIQ skill to query Microsoft 365 data
- •Organize by account/customer, not by activity type
- •Technical building goes WITH the account it supports, not separate