omgkit 2.2.0 → 2.3.1
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.
- package/README.md +3 -3
- package/package.json +1 -1
- package/plugin/skills/databases/database-management/SKILL.md +288 -0
- package/plugin/skills/databases/database-migration/SKILL.md +285 -0
- package/plugin/skills/databases/database-schema-design/SKILL.md +195 -0
- package/plugin/skills/databases/mongodb/SKILL.md +60 -776
- package/plugin/skills/databases/prisma/SKILL.md +53 -744
- package/plugin/skills/databases/redis/SKILL.md +53 -860
- package/plugin/skills/databases/supabase/SKILL.md +283 -0
- package/plugin/skills/devops/aws/SKILL.md +68 -672
- package/plugin/skills/devops/github-actions/SKILL.md +54 -657
- package/plugin/skills/devops/kubernetes/SKILL.md +67 -602
- package/plugin/skills/devops/performance-profiling/SKILL.md +59 -863
- package/plugin/skills/frameworks/django/SKILL.md +87 -853
- package/plugin/skills/frameworks/express/SKILL.md +95 -1301
- package/plugin/skills/frameworks/fastapi/SKILL.md +90 -1198
- package/plugin/skills/frameworks/laravel/SKILL.md +87 -1187
- package/plugin/skills/frameworks/nestjs/SKILL.md +106 -973
- package/plugin/skills/frameworks/react/SKILL.md +94 -962
- package/plugin/skills/frameworks/vue/SKILL.md +95 -1242
- package/plugin/skills/frontend/accessibility/SKILL.md +91 -1056
- package/plugin/skills/frontend/frontend-design/SKILL.md +69 -1262
- package/plugin/skills/frontend/responsive/SKILL.md +76 -799
- package/plugin/skills/frontend/shadcn-ui/SKILL.md +73 -921
- package/plugin/skills/frontend/tailwindcss/SKILL.md +60 -788
- package/plugin/skills/frontend/threejs/SKILL.md +72 -1266
- package/plugin/skills/languages/javascript/SKILL.md +106 -849
- package/plugin/skills/methodology/brainstorming/SKILL.md +70 -576
- package/plugin/skills/methodology/defense-in-depth/SKILL.md +79 -831
- package/plugin/skills/methodology/dispatching-parallel-agents/SKILL.md +81 -654
- package/plugin/skills/methodology/executing-plans/SKILL.md +86 -529
- package/plugin/skills/methodology/finishing-development-branch/SKILL.md +95 -586
- package/plugin/skills/methodology/problem-solving/SKILL.md +67 -681
- package/plugin/skills/methodology/receiving-code-review/SKILL.md +70 -533
- package/plugin/skills/methodology/requesting-code-review/SKILL.md +70 -610
- package/plugin/skills/methodology/root-cause-tracing/SKILL.md +70 -646
- package/plugin/skills/methodology/sequential-thinking/SKILL.md +70 -478
- package/plugin/skills/methodology/systematic-debugging/SKILL.md +66 -559
- package/plugin/skills/methodology/test-driven-development/SKILL.md +91 -752
- package/plugin/skills/methodology/testing-anti-patterns/SKILL.md +78 -687
- package/plugin/skills/methodology/token-optimization/SKILL.md +72 -602
- package/plugin/skills/methodology/verification-before-completion/SKILL.md +108 -529
- package/plugin/skills/methodology/writing-plans/SKILL.md +79 -566
- package/plugin/skills/omega/omega-architecture/SKILL.md +91 -752
- package/plugin/skills/omega/omega-coding/SKILL.md +161 -552
- package/plugin/skills/omega/omega-sprint/SKILL.md +132 -777
- package/plugin/skills/omega/omega-testing/SKILL.md +157 -845
- package/plugin/skills/omega/omega-thinking/SKILL.md +165 -606
- package/plugin/skills/security/better-auth/SKILL.md +46 -1034
- package/plugin/skills/security/oauth/SKILL.md +80 -934
- package/plugin/skills/security/owasp/SKILL.md +78 -862
- package/plugin/skills/testing/playwright/SKILL.md +77 -700
- package/plugin/skills/testing/pytest/SKILL.md +73 -811
- package/plugin/skills/testing/vitest/SKILL.md +60 -920
- package/plugin/skills/tools/document-processing/SKILL.md +111 -838
- package/plugin/skills/tools/image-processing/SKILL.md +126 -659
- package/plugin/skills/tools/mcp-development/SKILL.md +85 -758
- package/plugin/skills/tools/media-processing/SKILL.md +118 -735
- package/plugin/stdrules/SKILL_STANDARDS.md +490 -0
- package/plugin/skills/SKILL_STANDARDS.md +0 -743
|
@@ -1,566 +1,123 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: executing-plans
|
|
3
|
-
description:
|
|
4
|
-
category: methodology
|
|
5
|
-
triggers:
|
|
6
|
-
- executing plans
|
|
7
|
-
- following plan
|
|
8
|
-
- implementation
|
|
9
|
-
- executing tasks
|
|
10
|
-
- working on plan
|
|
11
|
-
- task execution
|
|
3
|
+
description: AI agent follows implementation plans systematically with progress tracking, quality gates, and blocker resolution. Use when implementing features, following plans, or executing tasks.
|
|
12
4
|
---
|
|
13
5
|
|
|
14
6
|
# Executing Plans
|
|
15
7
|
|
|
16
|
-
|
|
8
|
+
## Quick Start
|
|
17
9
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
-
|
|
23
|
-
- Maintain momentum through blockers
|
|
24
|
-
- Validate quality at each checkpoint
|
|
25
|
-
- Track and communicate progress
|
|
26
|
-
- Adapt to new information gracefully
|
|
27
|
-
- Complete work to high standards
|
|
28
|
-
- Document learnings for future reference
|
|
10
|
+
1. **Prepare** - Read entire plan, verify understanding, check dependencies
|
|
11
|
+
2. **Execute Task** - Read -> Navigate -> Implement -> Verify -> Complete
|
|
12
|
+
3. **Track Progress** - Update status after each task, report blockers immediately
|
|
13
|
+
4. **Pass Quality Gates** - Validate after task, after phase, before completion
|
|
14
|
+
5. **Handle Deviations** - Document changes, get approval for scope changes
|
|
29
15
|
|
|
30
16
|
## Features
|
|
31
17
|
|
|
32
|
-
|
|
18
|
+
| Feature | Description | Guide |
|
|
19
|
+
|---------|-------------|-------|
|
|
20
|
+
| Preparation Phase | Understand before starting | Read plan, verify deps, clarify questions |
|
|
21
|
+
| Task Execution | Systematic per-task flow | Read, navigate, implement, verify, complete |
|
|
22
|
+
| Progress Tracking | Real-time status updates | Completed X, In Progress Y, Remaining Z |
|
|
23
|
+
| Quality Gates | Validation checkpoints | Per-task, per-phase, pre-completion |
|
|
24
|
+
| Blocker Resolution | Unblock systematically | Document, assess, attempt, escalate, workaround |
|
|
25
|
+
| Deviation Handling | Adapt to discoveries | Document, assess scope/timeline, get approval |
|
|
33
26
|
|
|
34
|
-
|
|
35
|
-
## Plan Execution Process
|
|
27
|
+
## Common Patterns
|
|
36
28
|
|
|
37
|
-
┌───────────────────────────────────────────────────────────────┐
|
|
38
|
-
│ START EXECUTION │
|
|
39
|
-
└───────────────────────────────────────────────────────────────┘
|
|
40
|
-
│
|
|
41
|
-
▼
|
|
42
|
-
┌───────────────────────────────────────────────────────────────┐
|
|
43
|
-
│ PHASE 1: PREPARATION │
|
|
44
|
-
│ ───────────────────── │
|
|
45
|
-
│ □ Read entire plan thoroughly │
|
|
46
|
-
│ □ Verify understanding of goals │
|
|
47
|
-
│ □ Check all dependencies are available │
|
|
48
|
-
│ □ Set up development environment │
|
|
49
|
-
│ □ Identify potential blockers early │
|
|
50
|
-
│ □ Confirm with stakeholders if unclear │
|
|
51
|
-
└───────────────────────────────────────────────────────────────┘
|
|
52
|
-
│
|
|
53
|
-
▼
|
|
54
|
-
┌───────────────────────────────────────────────────────────────┐
|
|
55
|
-
│ PHASE 2: EXECUTE TASK │
|
|
56
|
-
│ ───────────────────── │
|
|
57
|
-
│ For each task in sequence: │
|
|
58
|
-
│ │
|
|
59
|
-
│ 1. READ: Understand task requirements │
|
|
60
|
-
│ └─ What exactly needs to be done? │
|
|
61
|
-
│ └─ What are the acceptance criteria? │
|
|
62
|
-
│ └─ What files/locations are involved? │
|
|
63
|
-
│ │
|
|
64
|
-
│ 2. NAVIGATE: Go to code location │
|
|
65
|
-
│ └─ Open specified files │
|
|
66
|
-
│ └─ Understand existing code │
|
|
67
|
-
│ └─ Identify integration points │
|
|
68
|
-
│ │
|
|
69
|
-
│ 3. IMPLEMENT: Make the changes │
|
|
70
|
-
│ └─ Write minimal code to satisfy criteria │
|
|
71
|
-
│ └─ Follow coding standards │
|
|
72
|
-
│ └─ Add appropriate tests │
|
|
73
|
-
│ │
|
|
74
|
-
│ 4. VERIFY: Confirm it works │
|
|
75
|
-
│ └─ Run relevant tests │
|
|
76
|
-
│ └─ Manual verification if needed │
|
|
77
|
-
│ └─ Check edge cases │
|
|
78
|
-
│ │
|
|
79
|
-
│ 5. COMPLETE: Mark task done │
|
|
80
|
-
│ └─ Update task status │
|
|
81
|
-
│ └─ Note any deviations │
|
|
82
|
-
│ └─ Proceed to next task │
|
|
83
|
-
└───────────────────────────────────────────────────────────────┘
|
|
84
|
-
│
|
|
85
|
-
▼
|
|
86
|
-
┌───────────────────────────────────────────────────────────────┐
|
|
87
|
-
│ PHASE 3: QUALITY GATES │
|
|
88
|
-
│ ────────────────────── │
|
|
89
|
-
│ │
|
|
90
|
-
│ After EACH task: │
|
|
91
|
-
│ □ Does implementation match acceptance criteria? │
|
|
92
|
-
│ □ Do tests pass? │
|
|
93
|
-
│ □ Any regressions introduced? │
|
|
94
|
-
│ │
|
|
95
|
-
│ After EACH phase/milestone: │
|
|
96
|
-
│ □ Run full test suite │
|
|
97
|
-
│ □ Code review (self or peer) │
|
|
98
|
-
│ □ Update progress report │
|
|
99
|
-
│ │
|
|
100
|
-
│ Before COMPLETION: │
|
|
101
|
-
│ □ All tasks completed │
|
|
102
|
-
│ □ All tests passing │
|
|
103
|
-
│ □ Documentation updated │
|
|
104
|
-
│ □ Ready for final review │
|
|
105
|
-
└───────────────────────────────────────────────────────────────┘
|
|
106
|
-
│
|
|
107
|
-
▼
|
|
108
|
-
┌───────────────────────────────────────────────────────────────┐
|
|
109
|
-
│ PLAN COMPLETE │
|
|
110
|
-
└───────────────────────────────────────────────────────────────┘
|
|
111
29
|
```
|
|
30
|
+
# Task Execution Checklist
|
|
31
|
+
BEFORE STARTING:
|
|
32
|
+
[ ] Read task description completely
|
|
33
|
+
[ ] Understand acceptance criteria
|
|
34
|
+
[ ] Check dependencies completed
|
|
35
|
+
[ ] No blockers present
|
|
112
36
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
37
|
+
DURING IMPLEMENTATION:
|
|
38
|
+
[ ] Navigate to specified files
|
|
39
|
+
[ ] Understand existing code context
|
|
40
|
+
[ ] Implement changes incrementally
|
|
41
|
+
[ ] Write tests alongside code
|
|
117
42
|
|
|
118
|
-
|
|
43
|
+
AFTER COMPLETION:
|
|
44
|
+
[ ] All acceptance criteria met
|
|
45
|
+
[ ] Tests pass locally
|
|
46
|
+
[ ] No lint/type errors
|
|
47
|
+
[ ] Task marked complete
|
|
119
48
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
- [ ] Check dependencies completed
|
|
124
|
-
- [ ] No blockers present
|
|
125
|
-
- [ ] Time estimate reasonable
|
|
49
|
+
# Quality Gates
|
|
50
|
+
AFTER EACH TASK:
|
|
51
|
+
npm run lint && npm run typecheck && npm test -- --related
|
|
126
52
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
- [ ] Understand existing code context
|
|
130
|
-
- [ ] Implement changes incrementally
|
|
131
|
-
- [ ] Write tests alongside code
|
|
132
|
-
- [ ] Follow style guide
|
|
53
|
+
AFTER EACH PHASE:
|
|
54
|
+
npm run lint && npm run typecheck && npm test && npm run build
|
|
133
55
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
- [ ] Tests pass locally
|
|
137
|
-
- [ ] No lint/type errors
|
|
138
|
-
- [ ] Self-review done
|
|
139
|
-
- [ ] Task marked complete
|
|
140
|
-
|
|
141
|
-
#### Notes
|
|
142
|
-
- Started: [Time]
|
|
143
|
-
- Completed: [Time]
|
|
144
|
-
- Actual vs Estimated: [X hours vs Y hours]
|
|
145
|
-
- Deviations: [Any changes from plan]
|
|
146
|
-
- Learnings: [Anything useful discovered]
|
|
56
|
+
BEFORE COMPLETION:
|
|
57
|
+
npm run lint && npm run typecheck && npm test --coverage && npm run build
|
|
147
58
|
```
|
|
148
59
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
```markdown
|
|
152
|
-
## Progress Report Templates
|
|
153
|
-
|
|
154
|
-
### Quick Status Update
|
|
155
|
-
```markdown
|
|
60
|
+
```
|
|
61
|
+
# Progress Report Template
|
|
156
62
|
## Status: [Date Time]
|
|
157
63
|
|
|
158
64
|
### Summary
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
|
|
164
|
-
### ETA
|
|
165
|
-
On track for [original date] | Delayed by [reason]
|
|
166
|
-
```
|
|
167
|
-
|
|
168
|
-
### Detailed Progress Report
|
|
169
|
-
```markdown
|
|
170
|
-
## Progress Report: [Plan Name]
|
|
171
|
-
|
|
172
|
-
### Overview
|
|
173
|
-
- Start Date: [Date]
|
|
174
|
-
- Target Date: [Date]
|
|
175
|
-
- Current Status: On Track | At Risk | Blocked | Ahead
|
|
176
|
-
|
|
177
|
-
### Completed Tasks (X/Y)
|
|
178
|
-
| Task | Status | Notes |
|
|
179
|
-
|------|--------|-------|
|
|
180
|
-
| [Task 1] | ✅ | Completed as planned |
|
|
181
|
-
| [Task 2] | ✅ | Required API change |
|
|
182
|
-
| [Task 3] | ⏭️ | Skipped - not needed |
|
|
65
|
+
- Completed: [N] tasks
|
|
66
|
+
- In Progress: [Task name]
|
|
67
|
+
- Remaining: [M] tasks
|
|
68
|
+
- Blockers: [None | Description]
|
|
183
69
|
|
|
184
70
|
### Current Task
|
|
185
|
-
**[Task
|
|
71
|
+
**[Task Name]:** [Description]
|
|
186
72
|
- Started: [Time]
|
|
187
73
|
- Progress: ~60%
|
|
188
74
|
- Expected completion: [Time]
|
|
189
|
-
- Notes: [Any observations]
|
|
190
|
-
|
|
191
|
-
### Remaining Tasks
|
|
192
|
-
| Task | Dependencies | Estimate | Risk |
|
|
193
|
-
|------|--------------|----------|------|
|
|
194
|
-
| [Task 5] | Task 4 | 2h | Low |
|
|
195
|
-
| [Task 6] | Task 5 | 1h | Low |
|
|
196
|
-
| [Task 7] | Task 6 | 4h | Medium |
|
|
197
|
-
|
|
198
|
-
### Blockers & Risks
|
|
199
|
-
| Issue | Impact | Mitigation | Owner |
|
|
200
|
-
|-------|--------|------------|-------|
|
|
201
|
-
| [Issue] | [High/Med/Low] | [Action] | [Name] |
|
|
202
|
-
|
|
203
|
-
### Decisions Made
|
|
204
|
-
1. **[Decision]**: [Rationale]
|
|
205
|
-
|
|
206
|
-
### Help Needed
|
|
207
|
-
- [ ] [Request for assistance]
|
|
208
75
|
|
|
209
|
-
###
|
|
210
|
-
|
|
211
|
-
```
|
|
212
|
-
|
|
213
|
-
### Visual Progress Board
|
|
214
|
-
```
|
|
215
|
-
Phase 1: Setup ████████████████████ 100%
|
|
216
|
-
Phase 2: Core Logic ██████████████░░░░░░ 70%
|
|
217
|
-
Phase 3: Integration ░░░░░░░░░░░░░░░░░░░░ 0%
|
|
218
|
-
Phase 4: Testing ░░░░░░░░░░░░░░░░░░░░ 0%
|
|
219
|
-
|
|
220
|
-
Overall: ███████████░░░░░░░░░ 55%
|
|
76
|
+
### ETA
|
|
77
|
+
On track for [date] | Delayed by [reason]
|
|
221
78
|
```
|
|
222
79
|
|
|
223
|
-
### 4. Blocker Resolution
|
|
224
|
-
|
|
225
|
-
```markdown
|
|
226
|
-
## Blocker Management Protocol
|
|
227
|
-
|
|
228
|
-
### Blocker Classification
|
|
229
|
-
|
|
230
|
-
| Type | Example | Resolution Approach |
|
|
231
|
-
|------|---------|---------------------|
|
|
232
|
-
| Technical | Unexpected API behavior | Debug, research, escalate |
|
|
233
|
-
| Dependency | Waiting on other task | Parallel work, resequence |
|
|
234
|
-
| Knowledge | Don't know how to do X | Research, ask, pair |
|
|
235
|
-
| Access | Missing permissions | Request access, escalate |
|
|
236
|
-
| External | Third-party down | Wait, workaround, escalate |
|
|
237
|
-
| Scope | Requirements unclear | Clarify with stakeholder |
|
|
238
|
-
|
|
239
|
-
### Blocker Response Process
|
|
240
|
-
|
|
241
80
|
```
|
|
81
|
+
# Blocker Resolution Flow
|
|
242
82
|
BLOCKER DETECTED
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
│ - Quick research │
|
|
264
|
-
│ - Alternative approach │
|
|
265
|
-
│ - Workaround possible? │
|
|
266
|
-
└─────────────────────────────────────────────┘
|
|
267
|
-
│
|
|
268
|
-
├──► RESOLVED ──► Continue execution
|
|
269
|
-
│
|
|
270
|
-
▼
|
|
271
|
-
┌─────────────────────────────────────────────┐
|
|
272
|
-
│ 4. ESCALATE if not resolved │
|
|
273
|
-
│ - Report to lead/stakeholder │
|
|
274
|
-
│ - Include: issue, attempts, ask │
|
|
275
|
-
└─────────────────────────────────────────────┘
|
|
276
|
-
│
|
|
277
|
-
▼
|
|
278
|
-
┌─────────────────────────────────────────────┐
|
|
279
|
-
│ 5. WORK AROUND while waiting │
|
|
280
|
-
│ - Move to non-blocked tasks │
|
|
281
|
-
│ - Document workaround if temporary │
|
|
282
|
-
└─────────────────────────────────────────────┘
|
|
283
|
-
```
|
|
284
|
-
|
|
285
|
-
### Blocker Report Template
|
|
286
|
-
```markdown
|
|
287
|
-
## Blocker Report
|
|
288
|
-
|
|
289
|
-
### Issue
|
|
290
|
-
[Clear description of the blocker]
|
|
291
|
-
|
|
292
|
-
### Impact
|
|
293
|
-
- **Blocked tasks:** [List of affected tasks]
|
|
294
|
-
- **Timeline impact:** [Delay estimate]
|
|
295
|
-
- **Severity:** Critical | High | Medium | Low
|
|
296
|
-
|
|
297
|
-
### Attempted Solutions
|
|
298
|
-
1. [What was tried]
|
|
299
|
-
- Result: [Outcome]
|
|
300
|
-
2. [What was tried]
|
|
301
|
-
- Result: [Outcome]
|
|
302
|
-
|
|
303
|
-
### Request
|
|
304
|
-
[Specific help or decision needed]
|
|
305
|
-
|
|
306
|
-
### Workaround Available?
|
|
307
|
-
[Yes/No] - [Description if yes]
|
|
308
|
-
|
|
309
|
-
### Timeline
|
|
310
|
-
- Blocker detected: [Time]
|
|
311
|
-
- Resolution needed by: [Time]
|
|
312
|
-
```
|
|
313
|
-
|
|
314
|
-
### 5. Quality Gates Implementation
|
|
315
|
-
|
|
316
|
-
```markdown
|
|
317
|
-
## Quality Gate Checkpoints
|
|
318
|
-
|
|
319
|
-
### After Each Task
|
|
320
|
-
```bash
|
|
321
|
-
# Quick validation script
|
|
322
|
-
npm run lint
|
|
323
|
-
npm run typecheck
|
|
324
|
-
npm run test -- --related
|
|
325
|
-
```
|
|
326
|
-
|
|
327
|
-
```markdown
|
|
328
|
-
Quality Checklist:
|
|
329
|
-
- [ ] Code compiles without errors
|
|
330
|
-
- [ ] Linting passes
|
|
331
|
-
- [ ] Relevant tests pass
|
|
332
|
-
- [ ] No console errors/warnings
|
|
333
|
-
- [ ] Self-review completed
|
|
334
|
-
```
|
|
335
|
-
|
|
336
|
-
### After Each Phase
|
|
337
|
-
```bash
|
|
338
|
-
# Phase validation script
|
|
339
|
-
npm run lint
|
|
340
|
-
npm run typecheck
|
|
341
|
-
npm run test
|
|
342
|
-
npm run build
|
|
343
|
-
```
|
|
344
|
-
|
|
345
|
-
```markdown
|
|
346
|
-
Phase Checklist:
|
|
347
|
-
- [ ] All phase tasks complete
|
|
348
|
-
- [ ] Full test suite passes
|
|
349
|
-
- [ ] Build succeeds
|
|
350
|
-
- [ ] No new TODO comments left
|
|
351
|
-
- [ ] Code reviewed
|
|
352
|
-
- [ ] Documentation updated
|
|
353
|
-
```
|
|
354
|
-
|
|
355
|
-
### Before Final Completion
|
|
356
|
-
```bash
|
|
357
|
-
# Final validation script
|
|
358
|
-
npm run lint
|
|
359
|
-
npm run typecheck
|
|
360
|
-
npm run test -- --coverage
|
|
361
|
-
npm run build
|
|
362
|
-
npm run e2e
|
|
363
|
-
```
|
|
364
|
-
|
|
365
|
-
```markdown
|
|
366
|
-
Completion Checklist:
|
|
367
|
-
- [ ] All planned tasks complete
|
|
368
|
-
- [ ] All tests pass (unit, integration, e2e)
|
|
369
|
-
- [ ] Coverage meets threshold
|
|
370
|
-
- [ ] Build succeeds
|
|
371
|
-
- [ ] Performance acceptable
|
|
372
|
-
- [ ] Documentation complete
|
|
373
|
-
- [ ] Reviewed and approved
|
|
374
|
-
- [ ] Ready for deployment
|
|
375
|
-
```
|
|
376
|
-
|
|
377
|
-
### 6. Deviation Handling
|
|
378
|
-
|
|
379
|
-
```markdown
|
|
380
|
-
## Handling Plan Deviations
|
|
381
|
-
|
|
382
|
-
### Types of Deviations
|
|
383
|
-
|
|
384
|
-
| Type | Example | Response |
|
|
385
|
-
|------|---------|----------|
|
|
386
|
-
| Scope Addition | New requirement discovered | Document, assess, negotiate |
|
|
387
|
-
| Scope Reduction | Feature not needed | Document, skip, update plan |
|
|
388
|
-
| Technical Change | Different approach needed | Assess impact, update plan |
|
|
389
|
-
| Estimate Change | Task taking longer | Report, adjust timeline |
|
|
390
|
-
| Dependency Change | Order needs to change | Resequence, update plan |
|
|
391
|
-
|
|
392
|
-
### Deviation Decision Tree
|
|
393
|
-
|
|
394
|
-
```
|
|
395
|
-
DEVIATION DETECTED
|
|
396
|
-
│
|
|
397
|
-
├── Is it blocking progress?
|
|
398
|
-
│ ├── YES → Immediate resolution needed
|
|
399
|
-
│ │ └── Escalate if not resolvable
|
|
400
|
-
│ └── NO → Document and continue
|
|
401
|
-
│
|
|
402
|
-
├── Does it change scope?
|
|
403
|
-
│ ├── YES → Stakeholder approval needed
|
|
404
|
-
│ │ └── Update plan if approved
|
|
405
|
-
│ └── NO → Proceed with adjustment
|
|
406
|
-
│
|
|
407
|
-
└── Does it change timeline?
|
|
408
|
-
├── YES → Report new estimate
|
|
409
|
-
│ └── Negotiate if critical
|
|
410
|
-
└── NO → Continue execution
|
|
411
|
-
```
|
|
412
|
-
|
|
413
|
-
### Deviation Documentation
|
|
414
|
-
```markdown
|
|
415
|
-
## Plan Deviation Record
|
|
416
|
-
|
|
417
|
-
### Original Plan
|
|
418
|
-
[What was originally planned]
|
|
419
|
-
|
|
420
|
-
### Deviation
|
|
421
|
-
[What actually happened/needs to happen]
|
|
422
|
-
|
|
423
|
-
### Reason
|
|
424
|
-
[Why the deviation occurred]
|
|
425
|
-
|
|
426
|
-
### Impact
|
|
427
|
-
- Timeline: [No change | +X hours/days]
|
|
428
|
-
- Scope: [No change | Added/Removed X]
|
|
429
|
-
- Quality: [No change | Trade-off made]
|
|
430
|
-
|
|
431
|
-
### Decision
|
|
432
|
-
[Approved/Rejected] by [Name] on [Date]
|
|
433
|
-
|
|
434
|
-
### Updated Plan
|
|
435
|
-
[Link to updated plan or inline changes]
|
|
436
|
-
```
|
|
437
|
-
```
|
|
438
|
-
|
|
439
|
-
## Use Cases
|
|
440
|
-
|
|
441
|
-
### Feature Implementation Execution
|
|
442
|
-
|
|
443
|
-
```markdown
|
|
444
|
-
## Execution Log: User Profile Feature
|
|
445
|
-
|
|
446
|
-
### Preparation (Day 1, 9:00 AM)
|
|
447
|
-
✅ Read plan completely
|
|
448
|
-
✅ Environment setup verified
|
|
449
|
-
✅ Dependencies checked (auth service deployed)
|
|
450
|
-
✅ Questions clarified with PM
|
|
451
|
-
|
|
452
|
-
### Task 1: Database Migration (9:30 AM - 10:00 AM)
|
|
453
|
-
**Status:** ✅ Complete
|
|
454
|
-
|
|
455
|
-
Actions:
|
|
456
|
-
1. Created migration file
|
|
457
|
-
2. Added profile fields to users table
|
|
458
|
-
3. Ran migration locally
|
|
459
|
-
4. Verified schema
|
|
460
|
-
|
|
461
|
-
Verification:
|
|
462
|
-
- ✅ Migration applies cleanly
|
|
463
|
-
- ✅ Rollback works
|
|
464
|
-
- ✅ No existing data affected
|
|
465
|
-
|
|
466
|
-
### Task 2: API Endpoint (10:00 AM - 11:30 AM)
|
|
467
|
-
**Status:** ✅ Complete
|
|
468
|
-
|
|
469
|
-
Actions:
|
|
470
|
-
1. Created ProfileController
|
|
471
|
-
2. Implemented GET /profile
|
|
472
|
-
3. Implemented PUT /profile
|
|
473
|
-
4. Added validation
|
|
474
|
-
|
|
475
|
-
Verification:
|
|
476
|
-
- ✅ Unit tests pass
|
|
477
|
-
- ✅ Tested with Postman
|
|
478
|
-
- ✅ Error cases handled
|
|
479
|
-
|
|
480
|
-
### Task 3: Frontend Form (11:30 AM - 12:30 PM)
|
|
481
|
-
**Status:** 🔄 In Progress
|
|
482
|
-
|
|
483
|
-
Blocker Encountered (12:00 PM):
|
|
484
|
-
- Issue: Form library version conflict
|
|
485
|
-
- Impact: 30 min delay
|
|
486
|
-
- Resolution: Upgraded to compatible version
|
|
487
|
-
|
|
488
|
-
### Lunch Break (12:30 PM - 1:30 PM)
|
|
489
|
-
|
|
490
|
-
### Task 3: Frontend Form (Continued) (1:30 PM - 2:30 PM)
|
|
491
|
-
**Status:** ✅ Complete
|
|
492
|
-
|
|
493
|
-
Verification:
|
|
494
|
-
- ✅ Form renders correctly
|
|
495
|
-
- ✅ Validation works
|
|
496
|
-
- ✅ Submit updates profile
|
|
497
|
-
- ✅ Error states display
|
|
498
|
-
|
|
499
|
-
### Task 4: Integration Tests (2:30 PM - 3:30 PM)
|
|
500
|
-
**Status:** ✅ Complete
|
|
501
|
-
|
|
502
|
-
### Phase 1 Quality Gate (3:30 PM)
|
|
503
|
-
- ✅ All tests pass
|
|
504
|
-
- ✅ Lint clean
|
|
505
|
-
- ✅ Build succeeds
|
|
506
|
-
- ✅ Self-review done
|
|
507
|
-
|
|
508
|
-
### Progress Report (3:30 PM)
|
|
509
|
-
```markdown
|
|
510
|
-
Completed: 4/6 tasks
|
|
511
|
-
In Progress: None
|
|
512
|
-
Remaining: 2 tasks (E2E, Documentation)
|
|
513
|
-
Blockers: None
|
|
514
|
-
ETA: On track for EOD
|
|
515
|
-
```
|
|
516
|
-
|
|
517
|
-
### Task 5 & 6: (3:30 PM - 5:00 PM)
|
|
518
|
-
[Continued execution...]
|
|
519
|
-
|
|
520
|
-
### Final Quality Gate (5:00 PM)
|
|
521
|
-
- ✅ All tasks complete
|
|
522
|
-
- ✅ All tests pass
|
|
523
|
-
- ✅ Documentation updated
|
|
524
|
-
- ✅ Ready for review
|
|
525
|
-
|
|
526
|
-
### Completion Summary
|
|
527
|
-
- Planned: 8 hours
|
|
528
|
-
- Actual: 7.5 hours
|
|
529
|
-
- Deviations: 1 (library upgrade)
|
|
530
|
-
- Learnings: Document library versions
|
|
83
|
+
|
|
|
84
|
+
1. DOCUMENT immediately
|
|
85
|
+
- What is blocked?
|
|
86
|
+
- Why is it blocked?
|
|
87
|
+
|
|
|
88
|
+
2. ASSESS impact
|
|
89
|
+
- Critical path affected?
|
|
90
|
+
- Time sensitive?
|
|
91
|
+
|
|
|
92
|
+
3. ATTEMPT resolution (15-30 min)
|
|
93
|
+
- Quick research
|
|
94
|
+
- Alternative approach
|
|
95
|
+
|
|
|
96
|
+
+-> RESOLVED -> Continue
|
|
97
|
+
|
|
|
98
|
+
4. ESCALATE if not resolved
|
|
99
|
+
- Report with: issue, attempts, ask
|
|
100
|
+
|
|
|
101
|
+
5. WORK AROUND while waiting
|
|
102
|
+
- Move to non-blocked tasks
|
|
531
103
|
```
|
|
532
104
|
|
|
533
105
|
## Best Practices
|
|
534
106
|
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
-
|
|
551
|
-
-
|
|
552
|
-
- Don't ignore quality gates
|
|
553
|
-
- Don't hide blockers or delays
|
|
554
|
-
- Don't deviate without documenting
|
|
555
|
-
- Don't rush quality for speed
|
|
556
|
-
- Don't forget to update status
|
|
557
|
-
- Don't leave tasks partially done
|
|
558
|
-
- Don't skip testing steps
|
|
559
|
-
- Don't ignore learnings
|
|
560
|
-
|
|
561
|
-
## References
|
|
562
|
-
|
|
563
|
-
- [Getting Things Done - David Allen](https://gettingthingsdone.com/)
|
|
564
|
-
- [The Checklist Manifesto - Atul Gawande](http://atulgawande.com/book/the-checklist-manifesto/)
|
|
565
|
-
- [Agile Project Management](https://www.atlassian.com/agile/project-management)
|
|
566
|
-
- [Kanban Method](https://kanbanize.com/kanban-resources/getting-started/what-is-kanban)
|
|
107
|
+
| Do | Avoid |
|
|
108
|
+
|----|-------|
|
|
109
|
+
| Read entire plan before starting | Skipping preparation phase |
|
|
110
|
+
| Verify understanding of each task | Assuming task requirements |
|
|
111
|
+
| Execute tasks in sequence (unless parallel) | Ignoring quality gates |
|
|
112
|
+
| Validate after each task completion | Hiding blockers or delays |
|
|
113
|
+
| Report blockers immediately | Deviating without documenting |
|
|
114
|
+
| Document deviations as they occur | Rushing quality for speed |
|
|
115
|
+
| Complete fully before marking done | Leaving tasks partially done |
|
|
116
|
+
| Ask questions early | Skipping testing steps |
|
|
117
|
+
|
|
118
|
+
## Related Skills
|
|
119
|
+
|
|
120
|
+
- `writing-plans` - Create plans to execute
|
|
121
|
+
- `verifying-before-completion` - Quality gate checklists
|
|
122
|
+
- `thinking-sequentially` - Track execution progress
|
|
123
|
+
- `solving-problems` - Resolve blockers systematically
|