meeting-notes
Convert meeting discussions into clear, actionable notes with tasks, decisions, and follow-ups fo...
What this skill does
# Meeting Notes Skill
Convert meeting discussions into clear, actionable notes with tasks, decisions, and follow-ups for effective team collaboration.
## Instructions
You are a meeting facilitation and documentation expert. When invoked:
1. **Capture Meeting Content**:
- Key discussion points
- Decisions made
- Action items assigned
- Questions raised
- Parking lot items
- Follow-up needed
2. **Structure Notes**:
- Clear formatting and sections
- Searchable and scannable
- Chronological flow
- Linked to related resources
- Tagged for discoverability
3. **Extract Action Items**:
- Specific tasks with owners
- Clear deadlines
- Acceptance criteria
- Dependencies noted
- Priority indicated
4. **Highlight Decisions**:
- What was decided
- Why it was decided
- Who decided (if relevant)
- Impact and implications
- Next steps
5. **Enable Follow-Through**:
- Share notes promptly (within 24h)
- Track action items
- Link to project management tools
- Schedule follow-ups
- Archive for future reference
## Meeting Notes Templates
### Standard Meeting Notes Template
```markdown
# [Meeting Title]
**Date**: January 15, 2024
**Time**: 2:00 PM - 3:00 PM EST
**Location**: Zoom / Conference Room A
**Note Taker**: [Your Name]
## Attendees
**Present**:
- Alice Johnson (Engineering Manager)
- Bob Smith (Backend Lead)
- Carol Williams (Frontend Lead)
- David Brown (Product Manager)
**Absent**:
- Eve Davis (On PTO)
**Guests**:
- Frank Miller (Security Team)
---
## Agenda
1. Q1 Planning Review
2. Security Audit Findings
3. Performance Issues Discussion
4. Team Capacity Planning
---
## Discussion Summary
### 1. Q1 Planning Review (15 min)
**Context**: Review progress on Q1 objectives.
**Discussion**:
- Successfully launched user dashboard (Q1 OKR #1) ✅
- Payment integration delayed by 2 weeks due to compliance requirements
- Mobile app beta at 80% completion (target: 100% by end of Q1)
**Key Points**:
- Dashboard has 85% user adoption (exceeds 70% target)
- Payment delay won't affect Q1 goals - can slip to early Q2
- Mobile beta needs additional testing resources
**Metrics Reviewed**:
| Objective | Target | Current | Status |
|-----------|--------|---------|--------|
| User Dashboard Launch | 70% adoption | 85% adoption | ✅ On Track |
| Payment Integration | Q1 | Q2 Week 1 | ⚠️ Slight Delay |
| Mobile Beta | 100% | 80% | ⚠️ At Risk |
---
### 2. Security Audit Findings (20 min)
**Presenter**: Frank Miller
**Findings**:
1. **Critical**: JWT tokens not rotating after password change
2. **High**: Missing rate limiting on authentication endpoints
3. **Medium**: Outdated dependencies with known vulnerabilities
4. **Low**: Missing security headers on some API responses
**Discussion**:
- Critical issue is a security risk - needs immediate fix
- Rate limiting should be implemented before next release
- Dependency updates can be automated with Renovate bot
- Security headers are quick wins
**Questions Raised**:
- Q: Should we implement 2FA? (Parking lot - discuss in separate meeting)
- Q: Timeline for security headers? A: Can complete in current sprint
---
### 3. Performance Issues Discussion (15 min)
**Context**: Users reporting slow dashboard load times.
**Identified Issues**:
- Database queries not optimized (N+1 query problem)
- Large bundle size (2.5MB, target: <1MB)
- Missing CDN for static assets
- No caching layer for frequently accessed data
**Root Causes**:
- Recent feature additions didn't include performance testing
- No bundle size monitoring in CI/CD
- Infrastructure not updated since launch
**Proposed Solutions**:
1. Add database indexes and optimize queries
2. Implement code splitting and lazy loading
3. Set up CloudFront CDN
4. Add Redis caching layer
5. Establish performance budgets in CI
---
### 4. Team Capacity Planning (10 min)
**Discussion**:
- Eve on PTO next week (Jan 22-26)
- Bob has oncall rotation (Jan 15-22)
- Carol starting new project Feb 1
- Need to hire 2 more engineers by Q2
**Impact on Current Sprint**:
- May need to reduce sprint commitment
- Security fixes take priority
- Nice-to-have features can be deferred
---
## Decisions Made
### ✅ Decision 1: Prioritize Security Fixes
**Decision**: Address critical and high-severity security issues immediately, delaying feature work if necessary.
**Rationale**: Security risks outweigh feature velocity. Customer trust is paramount.
**Impact**:
- Current sprint scope reduced by 20%
- Feature "Advanced Filtering" moved to next sprint
- All engineers to review security best practices
**Owner**: Bob (Backend Lead)
**Timeline**: Critical fix by EOW (Jan 19), High-severity by Jan 26
---
### ✅ Decision 2: Implement Performance Budgets
**Decision**: Add automated performance checks to CI/CD pipeline.
**Metrics**:
- Bundle size: max 1MB gzipped
- Lighthouse performance score: min 90
- API response time: p95 < 500ms
- Database query time: p95 < 100ms
**Impact**: PRs failing budgets will require performance review before merge.
**Owner**: Carol (Frontend Lead) + Bob (Backend Lead)
**Timeline**: Implement by Feb 1
---
### ✅ Decision 3: Hire Additional Engineers
**Decision**: Open 2 requisitions (1 Backend, 1 Frontend) for Q2 start.
**Rationale**: Current team at 110% capacity, affecting sustainability and innovation time.
**Next Steps**:
- David to work with recruiting on job descriptions
- Alice to define interview process
- Target start date: April 1
**Owner**: Alice (Engineering Manager)
**Timeline**: Job posts live by Jan 22
---
## Action Items
### Priority 1 (This Week)
- [ ] **[Bob]** Fix JWT rotation vulnerability
- **Due**: Jan 19 (EOW)
- **Acceptance Criteria**: JWT invalidated on password change, tested in staging
- **Dependencies**: None
- **Estimate**: 4 hours
- [ ] **[Carol]** Analyze bundle size and create reduction plan
- **Due**: Jan 18
- **Deliverable**: Document with specific reduction strategies
- **Dependencies**: None
- **Estimate**: 2 hours
- [ ] **[Alice]** Share security audit report with team
- **Due**: Jan 16 (today)
- **Format**: Slack #engineering + detailed Confluence doc
- **Dependencies**: None
- **Estimate**: 30 minutes
### Priority 2 (This Sprint - by Jan 26)
- [ ] **[Bob]** Implement rate limiting on auth endpoints
- **Due**: Jan 26
- **Acceptance Criteria**:
- Max 5 login attempts per 15 minutes
- Clear error messages to users
- Documented in API docs
- **Dependencies**: None
- **Estimate**: 1 day
- [ ] **[David]** Set up automated dependency updates (Renovate)
- **Due**: Jan 26
- **Acceptance Criteria**:
- Auto-PR for patch updates
- Weekly digest for minor updates
- Manual review for major updates
- **Dependencies**: DevOps approval
- **Estimate**: 4 hours
- [ ] **[Carol]** Implement code splitting for dashboard
- **Due**: Jan 26
- **Acceptance Criteria**: Reduce initial bundle from 2.5MB to <1MB
- **Dependencies**: Bundle analysis complete
- **Estimate**: 2 days
### Priority 3 (Next Sprint - by Feb 9)
- [ ] **[Bob]** Add database indexes and optimize queries
- **Due**: Feb 9
- **Acceptance Criteria**: N+1 queries eliminated, p95 query time <100ms
- **Dependencies**: Performance testing environment
- **Estimate**: 3 days
- [ ] **[DevOps - Taylor]** Set up CloudFront CDN for static assets
- **Due**: Feb 9
- **Acceptance Criteria**: All images/CSS/JS served from CDN
- **Dependencies**: AWS account access
- **Estimate**: 1 day
- [ ] **[Bob + Carol]** Implement performance budgets in CI
- **Due**: Feb 1
- **Acceptance Criteria**: CI fails if budgets exceeded
- **Dependencies**: Metrics defined
- **Estimate**: 1 day
### Future / Parking Lot
- [ ] **[TBD]** Evaluate 2FA implementation
- **Due**: TBD (separate discussion needed)
- **Owner**: To be assigned
- **Note**: Schedule dedicated security features meeting
- [ ] **[Alice]** Complete Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.