omgkit 2.9.1 → 2.10.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 +48 -1
- package/package.json +1 -1
- package/plugin/commands/workflow/1000x-innovation.md +61 -0
- package/plugin/commands/workflow/100x-architecture.md +60 -0
- package/plugin/commands/workflow/10x-improvement.md +63 -0
- package/plugin/commands/workflow/agent-development.md +60 -0
- package/plugin/commands/workflow/api-design.md +61 -0
- package/plugin/commands/workflow/api-testing.md +61 -0
- package/plugin/commands/workflow/authentication.md +60 -0
- package/plugin/commands/workflow/best-practices.md +61 -0
- package/plugin/commands/workflow/bug-fix.md +61 -0
- package/plugin/commands/workflow/code-review.md +52 -0
- package/plugin/commands/workflow/feature.md +73 -0
- package/plugin/commands/workflow/fine-tuning.md +60 -0
- package/plugin/commands/workflow/full-feature.md +70 -0
- package/plugin/commands/workflow/marketing.md +53 -0
- package/plugin/commands/workflow/migration.md +60 -0
- package/plugin/commands/workflow/model-evaluation.md +59 -0
- package/plugin/commands/workflow/optimization.md +60 -0
- package/plugin/commands/workflow/penetration-testing.md +60 -0
- package/plugin/commands/workflow/performance-optimization.md +60 -0
- package/plugin/commands/workflow/prompt-engineering.md +51 -0
- package/plugin/commands/workflow/rag-development.md +79 -0
- package/plugin/commands/workflow/refactor.md +59 -0
- package/plugin/commands/workflow/schema-design.md +70 -0
- package/plugin/commands/workflow/security-audit.md +61 -0
- package/plugin/commands/workflow/sprint-execution.md +65 -0
- package/plugin/commands/workflow/sprint-retrospective.md +61 -0
- package/plugin/commands/workflow/sprint-setup.md +64 -0
- package/plugin/commands/workflow/technical-docs.md +52 -0
- package/plugin/commands/workflow/technology-research.md +61 -0
- package/plugin/workflows/ai-engineering/agent-development.md +240 -0
- package/plugin/workflows/ai-engineering/fine-tuning.md +212 -0
- package/plugin/workflows/ai-engineering/model-evaluation.md +203 -0
- package/plugin/workflows/ai-engineering/prompt-engineering.md +192 -0
- package/plugin/workflows/ai-engineering/rag-development.md +203 -0
- package/plugin/workflows/api/api-design.md +152 -0
- package/plugin/workflows/api/api-testing.md +152 -0
- package/plugin/workflows/content/marketing.md +118 -0
- package/plugin/workflows/content/technical-docs.md +146 -0
- package/plugin/workflows/database/migration.md +153 -0
- package/plugin/workflows/database/optimization.md +136 -0
- package/plugin/workflows/database/schema-design.md +148 -0
- package/plugin/workflows/development/bug-fix.md +159 -0
- package/plugin/workflows/development/code-review.md +119 -0
- package/plugin/workflows/development/feature.md +171 -0
- package/plugin/workflows/development/refactor.md +155 -0
- package/plugin/workflows/fullstack/authentication.md +153 -0
- package/plugin/workflows/fullstack/full-feature.md +217 -0
- package/plugin/workflows/omega/1000x-innovation.md +167 -0
- package/plugin/workflows/omega/100x-architecture.md +150 -0
- package/plugin/workflows/omega/10x-improvement.md +228 -0
- package/plugin/workflows/quality/performance-optimization.md +157 -0
- package/plugin/workflows/research/best-practices.md +140 -0
- package/plugin/workflows/research/technology-research.md +130 -0
- package/plugin/workflows/security/penetration-testing.md +150 -0
- package/plugin/workflows/security/security-audit.md +176 -0
- package/plugin/workflows/sprint/sprint-execution.md +168 -0
- package/plugin/workflows/sprint/sprint-retrospective.md +168 -0
- package/plugin/workflows/sprint/sprint-setup.md +153 -0
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: sprint-setup
|
|
3
|
+
description: Initialize and configure a new sprint
|
|
4
|
+
category: sprint
|
|
5
|
+
complexity: low
|
|
6
|
+
estimated-time: 30min-2 hours
|
|
7
|
+
agents:
|
|
8
|
+
- sprint-master
|
|
9
|
+
- planner
|
|
10
|
+
- project-manager
|
|
11
|
+
skills:
|
|
12
|
+
- omega-sprint
|
|
13
|
+
commands:
|
|
14
|
+
- /sprint:vision-set
|
|
15
|
+
- /sprint:backlog-add
|
|
16
|
+
- /sprint:backlog-prioritize
|
|
17
|
+
- /sprint:sprint-new
|
|
18
|
+
- /sprint:sprint-start
|
|
19
|
+
prerequisites:
|
|
20
|
+
- Project initialized with omgkit
|
|
21
|
+
- Product vision defined
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# Sprint Setup Workflow
|
|
25
|
+
|
|
26
|
+
## Overview
|
|
27
|
+
|
|
28
|
+
The Sprint Setup workflow guides you through initializing and configuring a new sprint. It covers vision setting, backlog population, prioritization, and sprint creation.
|
|
29
|
+
|
|
30
|
+
## When to Use
|
|
31
|
+
|
|
32
|
+
- Starting a new project
|
|
33
|
+
- Beginning a new development cycle
|
|
34
|
+
- Organizing work for the team
|
|
35
|
+
- Planning iterations
|
|
36
|
+
|
|
37
|
+
## Steps
|
|
38
|
+
|
|
39
|
+
### Step 1: Vision Setting
|
|
40
|
+
**Agent:** sprint-master
|
|
41
|
+
**Command:** `/sprint:vision-set`
|
|
42
|
+
**Duration:** 15-30 minutes
|
|
43
|
+
|
|
44
|
+
Define or review vision:
|
|
45
|
+
- Set product vision
|
|
46
|
+
- Define sprint goals
|
|
47
|
+
- Identify key outcomes
|
|
48
|
+
- Align team direction
|
|
49
|
+
|
|
50
|
+
**Output:** Vision documented
|
|
51
|
+
|
|
52
|
+
### Step 2: Backlog Population
|
|
53
|
+
**Agent:** planner
|
|
54
|
+
**Command:** `/sprint:backlog-add`
|
|
55
|
+
**Duration:** 30-60 minutes
|
|
56
|
+
|
|
57
|
+
Add backlog items:
|
|
58
|
+
- Create user stories
|
|
59
|
+
- Define tasks
|
|
60
|
+
- Estimate effort
|
|
61
|
+
- Set acceptance criteria
|
|
62
|
+
|
|
63
|
+
**Output:** Populated backlog
|
|
64
|
+
|
|
65
|
+
### Step 3: Prioritization
|
|
66
|
+
**Agent:** sprint-master
|
|
67
|
+
**Command:** `/sprint:backlog-prioritize`
|
|
68
|
+
**Duration:** 15-30 minutes
|
|
69
|
+
|
|
70
|
+
Prioritize items:
|
|
71
|
+
- Apply prioritization framework
|
|
72
|
+
- Balance value vs effort
|
|
73
|
+
- Consider dependencies
|
|
74
|
+
- Assign priorities
|
|
75
|
+
|
|
76
|
+
**Output:** Prioritized backlog
|
|
77
|
+
|
|
78
|
+
### Step 4: Sprint Creation
|
|
79
|
+
**Agent:** sprint-master
|
|
80
|
+
**Command:** `/sprint:sprint-new`
|
|
81
|
+
**Duration:** 10-15 minutes
|
|
82
|
+
|
|
83
|
+
Create sprint:
|
|
84
|
+
- Set sprint duration
|
|
85
|
+
- Define sprint goal
|
|
86
|
+
- Select items for sprint
|
|
87
|
+
- Assign capacity
|
|
88
|
+
|
|
89
|
+
**Output:** Sprint created
|
|
90
|
+
|
|
91
|
+
### Step 5: Sprint Start
|
|
92
|
+
**Agent:** sprint-master
|
|
93
|
+
**Command:** `/sprint:sprint-start`
|
|
94
|
+
**Duration:** 5-10 minutes
|
|
95
|
+
|
|
96
|
+
Start sprint:
|
|
97
|
+
- Kick off sprint
|
|
98
|
+
- Assign initial tasks
|
|
99
|
+
- Set up tracking
|
|
100
|
+
- Communicate start
|
|
101
|
+
|
|
102
|
+
**Output:** Sprint started
|
|
103
|
+
|
|
104
|
+
## Quality Gates
|
|
105
|
+
|
|
106
|
+
- [ ] Vision documented and clear
|
|
107
|
+
- [ ] Backlog items have estimates
|
|
108
|
+
- [ ] Priorities assigned
|
|
109
|
+
- [ ] Sprint created with goal
|
|
110
|
+
- [ ] Team notified
|
|
111
|
+
|
|
112
|
+
## Sprint Structure
|
|
113
|
+
|
|
114
|
+
```
|
|
115
|
+
Sprint Setup Structure
|
|
116
|
+
======================
|
|
117
|
+
|
|
118
|
+
.omgkit/sprints/
|
|
119
|
+
├── vision.yaml # Product vision
|
|
120
|
+
├── backlog.yaml # Product backlog
|
|
121
|
+
└── sprint-001.yaml # Current sprint
|
|
122
|
+
|
|
123
|
+
Sprint Item Format:
|
|
124
|
+
- id: unique identifier
|
|
125
|
+
- title: brief description
|
|
126
|
+
- type: feature|bugfix|task
|
|
127
|
+
- priority: high|medium|low
|
|
128
|
+
- estimate: story points
|
|
129
|
+
- status: todo|in-progress|done
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## Tips
|
|
133
|
+
|
|
134
|
+
- Keep sprints short (1-2 weeks)
|
|
135
|
+
- Don't over-commit capacity
|
|
136
|
+
- Include buffer for unknowns
|
|
137
|
+
- Review vision regularly
|
|
138
|
+
- Document decisions
|
|
139
|
+
|
|
140
|
+
## Example Usage
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
# Set up initial sprint
|
|
144
|
+
/workflow:sprint-setup
|
|
145
|
+
|
|
146
|
+
# After vision and backlog exist
|
|
147
|
+
/sprint:sprint-new "Sprint 1: Core Features"
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
## Related Workflows
|
|
151
|
+
|
|
152
|
+
- `sprint-execution` - For running sprints
|
|
153
|
+
- `sprint-retrospective` - For reviewing sprints
|