agentic-team-templates 0.19.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +20 -0
  3. package/src/index.test.js +4 -0
  4. package/templates/business/project-manager/.cursor/rules/overview.md +94 -0
  5. package/templates/business/project-manager/.cursor/rules/reporting.md +259 -0
  6. package/templates/business/project-manager/.cursor/rules/risk-management.md +255 -0
  7. package/templates/business/project-manager/.cursor/rules/scheduling.md +251 -0
  8. package/templates/business/project-manager/.cursor/rules/scope-management.md +227 -0
  9. package/templates/business/project-manager/.cursor/rules/stakeholder-management.md +254 -0
  10. package/templates/business/project-manager/CLAUDE.md +540 -0
  11. package/templates/business/supply-chain/.cursor/rules/cost-modeling.md +380 -0
  12. package/templates/business/supply-chain/.cursor/rules/demand-forecasting.md +285 -0
  13. package/templates/business/supply-chain/.cursor/rules/inventory-management.md +200 -0
  14. package/templates/business/supply-chain/.cursor/rules/logistics.md +296 -0
  15. package/templates/business/supply-chain/.cursor/rules/overview.md +102 -0
  16. package/templates/business/supply-chain/.cursor/rules/supplier-evaluation.md +298 -0
  17. package/templates/business/supply-chain/CLAUDE.md +590 -0
  18. package/templates/professional/executive-assistant/.cursor/rules/calendar.md +120 -0
  19. package/templates/professional/executive-assistant/.cursor/rules/confidentiality.md +81 -0
  20. package/templates/professional/executive-assistant/.cursor/rules/email.md +77 -0
  21. package/templates/professional/executive-assistant/.cursor/rules/meetings.md +107 -0
  22. package/templates/professional/executive-assistant/.cursor/rules/overview.md +96 -0
  23. package/templates/professional/executive-assistant/.cursor/rules/prioritization.md +105 -0
  24. package/templates/professional/executive-assistant/.cursor/rules/stakeholder-management.md +90 -0
  25. package/templates/professional/executive-assistant/.cursor/rules/travel.md +115 -0
  26. package/templates/professional/executive-assistant/CLAUDE.md +620 -0
  27. package/templates/professional/grant-writer/.cursor/rules/budgets.md +106 -0
  28. package/templates/professional/grant-writer/.cursor/rules/compliance.md +99 -0
  29. package/templates/professional/grant-writer/.cursor/rules/funding-research.md +80 -0
  30. package/templates/professional/grant-writer/.cursor/rules/narrative.md +135 -0
  31. package/templates/professional/grant-writer/.cursor/rules/overview.md +63 -0
  32. package/templates/professional/grant-writer/.cursor/rules/post-award.md +105 -0
  33. package/templates/professional/grant-writer/.cursor/rules/review-criteria.md +120 -0
  34. package/templates/professional/grant-writer/.cursor/rules/sustainability.md +110 -0
  35. package/templates/professional/grant-writer/CLAUDE.md +577 -0
@@ -0,0 +1,251 @@
1
+ # Scheduling
2
+
3
+ Guidelines for building, managing, and defending project schedules.
4
+
5
+ ## Core Principles
6
+
7
+ ### Schedule From the WBS
8
+
9
+ Never build a schedule without a Work Breakdown Structure. The WBS defines what needs to be done; the schedule defines when and in what order.
10
+
11
+ ```markdown
12
+ Wrong: Open a Gantt tool and start listing tasks from memory
13
+ Right: Decompose the WBS → identify dependencies → estimate durations → build the schedule
14
+ ```
15
+
16
+ ### Protect the Critical Path
17
+
18
+ The critical path is the longest chain of dependent tasks. Any delay on the critical path delays the entire project. Every scheduling decision should consider its impact on the critical path.
19
+
20
+ ## Task Dependencies
21
+
22
+ ### Dependency Types
23
+
24
+ | Type | Abbreviation | Description | Example |
25
+ |------|-------------|-------------|---------|
26
+ | Finish-to-Start | FS | B starts after A finishes | Design finishes → Development starts |
27
+ | Start-to-Start | SS | B starts when A starts | Coding starts → Testing starts |
28
+ | Finish-to-Finish | FF | B finishes when A finishes | Coding finishes → Documentation finishes |
29
+ | Start-to-Finish | SF | B finishes when A starts | New system starts → Old system finishes |
30
+
31
+ ### Dependency Best Practices
32
+
33
+ ```markdown
34
+ Do:
35
+ - Use FS (Finish-to-Start) as the default; it is the most common and clearest
36
+ - Document the reason for every non-FS dependency
37
+ - Identify external dependencies early (other teams, vendors, approvals)
38
+ - Review dependencies with task owners, not just the PM
39
+
40
+ Don't:
41
+ - Create circular dependencies (A → B → C → A)
42
+ - Use SF dependencies unless absolutely necessary (they confuse teams)
43
+ - Assume dependencies exist when tasks can actually run in parallel
44
+ - Forget approval gates as dependencies (design review before development)
45
+ ```
46
+
47
+ ### Dependency Log
48
+
49
+ | ID | Predecessor | Successor | Type | Lag | Notes |
50
+ |----|-------------|-----------|------|-----|-------|
51
+ | DEP-001 | Design Review | Frontend Dev | FS | 0 | Approval required |
52
+ | DEP-002 | Backend API | Frontend Integration | FS | +2d | API needs staging deploy |
53
+ | DEP-003 | Dev Start | QA Test Plan | SS | +3d | QA starts writing plans once dev begins |
54
+
55
+ ## Critical Path Management
56
+
57
+ ### Identifying the Critical Path
58
+
59
+ ```text
60
+ Example network diagram:
61
+
62
+ A(5d) → C(3d) → E(4d) → G(2d) = 14 days
63
+ B(3d) → D(6d) → F(2d) → G(2d) = 13 days
64
+
65
+ Critical Path: A → C → E → G (14 days)
66
+ Float on path B-D-F: 14 - 13 = 1 day
67
+ ```
68
+
69
+ ### Critical Path Rules
70
+
71
+ | Rule | Rationale |
72
+ |------|-----------|
73
+ | Never add non-essential tasks to the critical path | Every task on the critical path is a potential delay |
74
+ | Staff critical-path tasks with your best resources | Reduce risk of delay |
75
+ | Monitor critical-path tasks daily | Early warning of slippage |
76
+ | Add feeding buffers where non-critical paths join the critical path | Protect against delays propagating |
77
+ | Re-calculate the critical path after every schedule change | The critical path can shift |
78
+
79
+ ### Fast-Tracking vs. Crashing
80
+
81
+ | Technique | Description | Risk | When to Use |
82
+ |-----------|-------------|------|-------------|
83
+ | **Fast-tracking** | Overlap tasks that would normally be sequential | Increased rework risk | Tasks can be partially parallelized |
84
+ | **Crashing** | Add resources to shorten task duration | Increased cost; diminishing returns | Critical tasks with flexible resource needs |
85
+
86
+ ```markdown
87
+ Example - Fast-tracking:
88
+ Before: Design (10d) → Development (20d) → Testing (10d) = 40 days
89
+ After: Design (10d) → [Dev starts after 7d of Design] → Testing starts after 15d of Dev
90
+ Overlap saves ~8 days, but rework risk increases
91
+
92
+ Example - Crashing:
93
+ Before: Development (20d, 2 developers) = 20 days
94
+ After: Development (14d, 3 developers) = 14 days, +50% cost
95
+ ```
96
+
97
+ ## Estimation
98
+
99
+ ### Three-Point Estimation
100
+
101
+ ```text
102
+ Expected Duration = (Optimistic + 4 x Most Likely + Pessimistic) / 6
103
+
104
+ Example:
105
+ Optimistic (O): 5 days (everything goes perfectly)
106
+ Most Likely (M): 8 days (normal conditions)
107
+ Pessimistic (P): 15 days (major obstacles)
108
+
109
+ Expected = (5 + 4(8) + 15) / 6 = 52 / 6 = 8.7 days
110
+ Standard Deviation = (P - O) / 6 = (15 - 5) / 6 = 1.67 days
111
+ ```
112
+
113
+ ### Estimation Best Practices
114
+
115
+ | Practice | Rationale |
116
+ |----------|-----------|
117
+ | Estimate with the team, not for the team | Those doing the work estimate most accurately |
118
+ | Include all work (meetings, reviews, rework) | Underestimation comes from forgetting overhead |
119
+ | Use historical data when available | Past performance predicts future performance |
120
+ | Add contingency for unknowns | 10-20% for known unknowns; more for novel work |
121
+ | Re-estimate as you learn more | Estimates improve as uncertainty decreases |
122
+
123
+ ### Estimation Anti-Patterns
124
+
125
+ ```markdown
126
+ Wrong: PM estimates all tasks alone
127
+ Right: Task owners estimate; PM aggregates and validates
128
+
129
+ Wrong: "It'll take 2 weeks" (always 2 weeks)
130
+ Right: Three-point estimate with documented assumptions
131
+
132
+ Wrong: Cutting estimates to fit the desired timeline
133
+ Right: Present honest estimates; negotiate scope, not effort
134
+
135
+ Wrong: Estimating large tasks without decomposition
136
+ Right: Break tasks into 1-5 day work packages, then estimate
137
+ ```
138
+
139
+ ## Resource Leveling
140
+
141
+ ### Over-Allocation Detection
142
+
143
+ ```text
144
+ Week 1 Schedule (before leveling):
145
+ Developer A: Task 1 (40h) + Task 2 (20h) = 60h ← Over-allocated
146
+ Developer B: Task 3 (30h) = 30h ← Under-utilized
147
+
148
+ Week 1 Schedule (after leveling):
149
+ Developer A: Task 1 (40h) = 40h
150
+ Developer B: Task 3 (30h) + Task 2 (10h) = 40h
151
+ Week 2:
152
+ Developer B: Task 2 remaining (10h)
153
+ ```
154
+
155
+ ### Leveling Strategies
156
+
157
+ | Strategy | Impact | When to Use |
158
+ |----------|--------|-------------|
159
+ | Delay non-critical tasks | Uses float, no cost impact | Non-critical path tasks with float |
160
+ | Split tasks | Extends duration of individual tasks | Tasks that can be paused and resumed |
161
+ | Reassign work | May affect quality or speed | Interchangeable team members |
162
+ | Add resources | Increases cost | Critical-path tasks, budget available |
163
+ | Reduce scope | Changes deliverables | Negotiable with stakeholders |
164
+
165
+ ## Buffer Management
166
+
167
+ ### Types of Buffers
168
+
169
+ | Buffer Type | Purpose | Size Guideline |
170
+ |-------------|---------|----------------|
171
+ | **Project buffer** | Protects the project end date | 25-50% of critical path duration |
172
+ | **Feeding buffer** | Protects critical path from non-critical delays | 50% of feeding chain duration |
173
+ | **Resource buffer** | Alerts resource managers before critical tasks | Warning 2 weeks before task start |
174
+
175
+ ### Buffer Consumption Tracking
176
+
177
+ ```text
178
+ Project Buffer: 20 days
179
+
180
+ Status at Week 8:
181
+ ├── Buffer consumed: 5 days (25%)
182
+ ├── Project completion: 40%
183
+ ├── Buffer health: GREEN (consumption < % complete)
184
+
185
+ │ Interpretation:
186
+ │ If buffer consumed % < project complete % → GREEN
187
+ │ If buffer consumed % ≈ project complete % → AMBER
188
+ │ If buffer consumed % > project complete % → RED
189
+ ```
190
+
191
+ ## Milestone Planning
192
+
193
+ ### Milestone Types
194
+
195
+ | Type | Description | Example |
196
+ |------|-------------|---------|
197
+ | **Delivery milestone** | Deliverable completed | "API v2 deployed to staging" |
198
+ | **Decision milestone** | Approval or go/no-go | "Sponsor approves design" |
199
+ | **External milestone** | Dependency from outside | "Vendor delivers hardware" |
200
+ | **Phase gate** | Transition between phases | "Planning phase complete" |
201
+
202
+ ### Milestone Criteria
203
+
204
+ Every milestone should have:
205
+
206
+ ```markdown
207
+ ## Milestone: [Name]
208
+
209
+ **Target Date**: [Date]
210
+ **Owner**: [Name]
211
+ **Type**: Delivery / Decision / External / Phase Gate
212
+
213
+ ### Entry Criteria
214
+ - [What must be true before this milestone can be attempted]
215
+
216
+ ### Completion Criteria
217
+ - [Specific, measurable conditions that define "done"]
218
+
219
+ ### Dependencies
220
+ - [Preceding milestones or deliverables]
221
+
222
+ ### Verification Method
223
+ - [How completion is verified: review, demo, sign-off]
224
+ ```
225
+
226
+ ### Milestone Best Practices
227
+
228
+ ```markdown
229
+ Do:
230
+ - Space milestones 2-4 weeks apart for regular progress visibility
231
+ - Include both technical and business milestones
232
+ - Define clear, measurable completion criteria
233
+ - Track baseline vs. forecast dates
234
+
235
+ Don't:
236
+ - Set milestones without completion criteria
237
+ - Place all milestones at the end of the project
238
+ - Ignore milestone slippage (a milestone delayed is a red flag)
239
+ - Use milestones as deadlines without buffer
240
+ ```
241
+
242
+ ## Common Pitfalls
243
+
244
+ | Pitfall | Symptom | Solution |
245
+ |---------|---------|----------|
246
+ | Student syndrome | Work starts at the last minute | Use feeding buffers; track early starts |
247
+ | Parkinson's law | Work expands to fill time allocated | Set aggressive but realistic milestones |
248
+ | Ignoring float consumption | Non-critical tasks become critical | Track float weekly; alert when float < 2 days |
249
+ | Not re-planning after changes | Schedule becomes fiction | Re-baseline after every approved change |
250
+ | Single-point estimates | False precision, no risk awareness | Use three-point estimation consistently |
251
+ | Resource conflicts across projects | Shared resources create bottlenecks | Coordinate with portfolio/resource manager early |
@@ -0,0 +1,227 @@
1
+ # Scope Management
2
+
3
+ Guidelines for defining, decomposing, and protecting project scope.
4
+
5
+ ## Core Principles
6
+
7
+ ### The Triple Constraint
8
+
9
+ Scope, schedule, and budget are interconnected. Changing one affects the others. Scope management is about making those trade-offs explicit and governed.
10
+
11
+ ```text
12
+ Scope
13
+ / \
14
+ / \
15
+ Schedule ─── Budget
16
+ \ /
17
+ \ /
18
+ Quality
19
+ ```
20
+
21
+ ### 100% Rule
22
+
23
+ The WBS must capture 100% of the work required to deliver the project, including project management activities. If it is not in the WBS, it is not in the project.
24
+
25
+ ## WBS Decomposition
26
+
27
+ ### Decomposition Approach
28
+
29
+ ```text
30
+ Level 0: Project
31
+ Level 1: Phases or major deliverables
32
+ Level 2: Sub-deliverables
33
+ Level 3: Work packages (estimable, assignable)
34
+ ```
35
+
36
+ ### Work Package Criteria
37
+
38
+ Each work package should be:
39
+
40
+ | Criterion | Guideline |
41
+ |-----------|-----------|
42
+ | Duration | 8-80 hours of effort |
43
+ | Ownership | Assignable to a single person or team |
44
+ | Measurable | Clear completion criteria |
45
+ | Independent | Minimal overlap with other packages |
46
+ | Estimable | Team can provide effort and duration estimates |
47
+
48
+ ### WBS Examples
49
+
50
+ **Good WBS (deliverable-oriented):**
51
+ ```text
52
+ Website Redesign
53
+ ├── Design
54
+ │ ├── User research report
55
+ │ ├── Wireframes
56
+ │ └── Visual design mockups
57
+ ├── Development
58
+ │ ├── Frontend implementation
59
+ │ ├── CMS integration
60
+ │ └── Performance optimization
61
+ └── Launch
62
+ ├── Content migration
63
+ ├── QA testing
64
+ └── DNS cutover
65
+ ```
66
+
67
+ **Bad WBS (activity-oriented, missing deliverables):**
68
+ ```text
69
+ Website Redesign
70
+ ├── Meetings
71
+ ├── Design stuff
72
+ ├── Coding
73
+ └── Testing
74
+ ```
75
+
76
+ ## Scope Statement
77
+
78
+ ### Scope Statement Template
79
+
80
+ ```markdown
81
+ ## Project Scope Statement: [Project Name]
82
+
83
+ ### Project Objectives
84
+ [Measurable objectives derived from the charter]
85
+
86
+ ### Deliverables
87
+ | Deliverable | Description | Acceptance Criteria |
88
+ |-------------|-------------|---------------------|
89
+ | [D-001] | [Description] | [How acceptance is determined] |
90
+ | [D-002] | [Description] | [How acceptance is determined] |
91
+
92
+ ### In Scope
93
+ - [Specific capability or feature 1]
94
+ - [Specific capability or feature 2]
95
+
96
+ ### Out of Scope
97
+ - [Explicitly excluded item 1]
98
+ - [Explicitly excluded item 2]
99
+
100
+ ### Assumptions
101
+ - [Assumption 1]
102
+ - [Assumption 2]
103
+
104
+ ### Constraints
105
+ - [Constraint 1: budget, timeline, technology, etc.]
106
+ - [Constraint 2]
107
+ ```
108
+
109
+ ## Change Request Process
110
+
111
+ ### When a Change Is Requested
112
+
113
+ ```text
114
+ 1. Log the request → Change Request form
115
+ 2. Assess impact → Scope, schedule, budget, risk, quality
116
+ 3. Present options → Approve, modify, defer, reject
117
+ 4. Obtain decision → Change board or sponsor
118
+ 5. Update baseline → If approved, revise all affected plans
119
+ 6. Communicate → Notify all affected stakeholders
120
+ ```
121
+
122
+ ### Impact Assessment Checklist
123
+
124
+ - [ ] Scope: What deliverables are added, modified, or removed?
125
+ - [ ] Schedule: How many days/weeks are added to the timeline?
126
+ - [ ] Budget: What is the additional cost?
127
+ - [ ] Resources: Are additional people or skills required?
128
+ - [ ] Risk: What new risks does this change introduce?
129
+ - [ ] Quality: Does this affect testing or acceptance criteria?
130
+ - [ ] Dependencies: Are other teams or projects affected?
131
+
132
+ ## Scope Creep Prevention
133
+
134
+ ### Red Flags
135
+
136
+ | Signal | Response |
137
+ |--------|----------|
138
+ | "Can we also add..." | "Let me log that as a change request and assess the impact" |
139
+ | "It should be easy to..." | "Let me verify with the team before committing" |
140
+ | "We assumed this was included" | "Let me check the scope statement and WBS" |
141
+ | Undocumented verbal agreements | "Can we document this and run it through change control?" |
142
+ | Requirements discovered during development | "Let me assess whether this is a gap or a new requirement" |
143
+
144
+ ### Prevention Strategies
145
+
146
+ ```markdown
147
+ 1. **Detailed scope statement** - Be explicit about what is and is not included
148
+ 2. **WBS review with stakeholders** - Walk through every deliverable at kickoff
149
+ 3. **Formal change control** - No scope changes without documented impact assessment
150
+ 4. **Regular scope reviews** - Compare current work to baseline monthly
151
+ 5. **Traceability matrix** - Link every task to a requirement to an objective
152
+ ```
153
+
154
+ ## Deliverable Acceptance
155
+
156
+ ### Acceptance Criteria Framework
157
+
158
+ ```markdown
159
+ ## Deliverable: [Name]
160
+
161
+ ### Description
162
+ [What this deliverable is]
163
+
164
+ ### Acceptance Criteria
165
+ | Criterion | Measurement | Threshold |
166
+ |-----------|-------------|-----------|
167
+ | Functionality | [How tested] | [Pass/fail criteria] |
168
+ | Performance | [Metric] | [Acceptable range] |
169
+ | Quality | [Standard] | [Minimum standard] |
170
+
171
+ ### Acceptance Process
172
+ 1. PM submits deliverable with completion report
173
+ 2. Stakeholder reviews against criteria (X business days)
174
+ 3. Stakeholder approves, requests revisions, or rejects
175
+ 4. If revisions needed, PM logs issues and re-submits
176
+ 5. Final acceptance documented with sign-off
177
+ ```
178
+
179
+ ### Sign-Off Template
180
+
181
+ ```markdown
182
+ ## Deliverable Acceptance Sign-Off
183
+
184
+ **Deliverable**: [Name]
185
+ **Date Submitted**: [Date]
186
+ **Reviewed By**: [Name]
187
+
188
+ ### Criteria Met
189
+ - [x] [Criterion 1]
190
+ - [x] [Criterion 2]
191
+ - [ ] [Criterion 3 - requires revision]
192
+
193
+ ### Decision
194
+ - [ ] Accepted
195
+ - [ ] Accepted with conditions: [describe]
196
+ - [ ] Rejected: [reason]
197
+
198
+ ### Signature
199
+ Name: ____________ Date: ____________
200
+ ```
201
+
202
+ ## Requirements Traceability
203
+
204
+ ### Traceability Matrix
205
+
206
+ | Req ID | Requirement | WBS Element | Test Case | Status |
207
+ |--------|-------------|-------------|-----------|--------|
208
+ | REQ-001 | [Requirement] | [1.2.3] | [TC-001] | Verified |
209
+ | REQ-002 | [Requirement] | [2.1.1] | [TC-005] | In Progress |
210
+
211
+ ### Traceability Rules
212
+
213
+ - Every requirement must link to at least one WBS work package
214
+ - Every WBS work package must link to at least one requirement
215
+ - Orphan work packages (no requirement) indicate scope creep
216
+ - Orphan requirements (no work package) indicate missing work
217
+
218
+ ## Common Pitfalls
219
+
220
+ | Pitfall | Symptom | Solution |
221
+ |---------|---------|----------|
222
+ | Gold plating | Team adds unrequested features | Review deliverables against scope statement |
223
+ | Scope creep | Timeline keeps extending | Enforce formal change control process |
224
+ | Vague scope statement | Constant disagreements about what is included | Be explicit about in-scope AND out-of-scope |
225
+ | Missing WBS elements | Work discovered late in the project | Walk the WBS with the entire team at kickoff |
226
+ | No acceptance criteria | Endless revision cycles | Define measurable acceptance criteria upfront |
227
+ | Verbal scope changes | "I thought we agreed to add that" | Document everything; confirm in writing |