omgkit 2.27.0 → 2.28.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.
- package/README.md +10 -1
- package/package.json +2 -2
- package/plugin/agents/sprint-master.md +1 -0
- package/plugin/commands/sprint/ship.md +264 -0
- package/plugin/registry.yaml +4 -3
- package/plugin/workflows/sprint/sprint-execution.md +14 -0
- package/plugin/workflows/sprint/sprint-retrospective.md +1 -0
- package/templates/omgkit/workflow.yaml +46 -0
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ All coordinated through **Omega-level thinking** - a framework for finding break
|
|
|
37
37
|
| Component | Count | Description |
|
|
38
38
|
|-----------|-------|-------------|
|
|
39
39
|
| **Agents** | 41 | Specialized AI team members with distinct roles |
|
|
40
|
-
| **Commands** |
|
|
40
|
+
| **Commands** | 161 | Slash commands for every development task |
|
|
41
41
|
| **Workflows** | 69 | Complete development processes from idea to deploy |
|
|
42
42
|
| **Skills** | 161 | Domain expertise modules across 24 categories |
|
|
43
43
|
| **Modes** | 10 | Behavioral configurations for different contexts |
|
|
@@ -373,6 +373,7 @@ Commands are slash-prefixed actions organized by namespace.
|
|
|
373
373
|
/sprint:sprint-start # Start current sprint
|
|
374
374
|
/sprint:sprint-current # Show sprint progress
|
|
375
375
|
/sprint:sprint-end # End sprint + retrospective
|
|
376
|
+
/sprint:ship # Complete sprint + commit + push + PR
|
|
376
377
|
/sprint:backlog-add # Add task to backlog
|
|
377
378
|
/sprint:backlog-show # Display backlog
|
|
378
379
|
/sprint:team-run # Run AI team
|
|
@@ -386,6 +387,14 @@ Commands are slash-prefixed actions organized by namespace.
|
|
|
386
387
|
/sprint:backlog-add "Login" --ref=artifacts/prd.md # Task with ref context
|
|
387
388
|
```
|
|
388
389
|
|
|
390
|
+
**Sprint Ship** (complete sprint + deploy):
|
|
391
|
+
```bash
|
|
392
|
+
/sprint:ship "Sprint 1 - MVP" # Ship with message
|
|
393
|
+
/sprint:ship --skip-tests # Skip tests (not recommended)
|
|
394
|
+
/sprint:ship --no-pr # Push directly without PR
|
|
395
|
+
/sprint:ship --force # Ship with incomplete tasks
|
|
396
|
+
```
|
|
397
|
+
|
|
389
398
|
### Autonomous Development (`/auto:*`)
|
|
390
399
|
|
|
391
400
|
```bash
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omgkit",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents,
|
|
3
|
+
"version": "2.28.0",
|
|
4
|
+
"description": "Omega-Level Development Kit - AI Team System for Claude Code. 41 agents, 161 commands, 161 skills, 69 workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
7
7
|
"ai",
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Complete sprint and ship to production
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep, Glob
|
|
4
|
+
argument-hint: "[message] [--skip-tests] [--no-pr] [--force]"
|
|
5
|
+
ship:
|
|
6
|
+
auto_test: true
|
|
7
|
+
auto_pr: true
|
|
8
|
+
commit_prefix: "feat(sprint)"
|
|
9
|
+
related_skills:
|
|
10
|
+
- autonomous/project-orchestration
|
|
11
|
+
- omega/omega-sprint
|
|
12
|
+
- devops/workflow-config
|
|
13
|
+
related_commands:
|
|
14
|
+
- /sprint:sprint-end
|
|
15
|
+
- /git:ship
|
|
16
|
+
- /git:commit
|
|
17
|
+
- /git:pr
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
# Sprint Ship: $ARGUMENTS
|
|
21
|
+
|
|
22
|
+
Complete the current sprint and ship all changes to production in a single workflow.
|
|
23
|
+
|
|
24
|
+
## Overview
|
|
25
|
+
|
|
26
|
+
This command combines sprint completion with git operations to streamline the release process:
|
|
27
|
+
|
|
28
|
+
1. **Validate** - Check sprint status and task completion
|
|
29
|
+
2. **Test** - Run tests to ensure quality
|
|
30
|
+
3. **End Sprint** - Generate retrospective and archive
|
|
31
|
+
4. **Commit** - Stage and commit all changes
|
|
32
|
+
5. **Push** - Push to remote repository
|
|
33
|
+
6. **PR/Deploy** - Create PR or trigger CI/CD
|
|
34
|
+
|
|
35
|
+
## Options
|
|
36
|
+
|
|
37
|
+
| Option | Description | Default |
|
|
38
|
+
|--------|-------------|---------|
|
|
39
|
+
| `message` | Commit message (uses sprint name if not provided) | Sprint name |
|
|
40
|
+
| `--skip-tests` | Skip running tests before ship | `false` |
|
|
41
|
+
| `--no-pr` | Push directly without creating PR | `false` |
|
|
42
|
+
| `--force` | Force ship even with incomplete tasks | `false` |
|
|
43
|
+
|
|
44
|
+
## Workflow Diagram
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
/sprint:ship "Sprint 1 - Auth"
|
|
48
|
+
│
|
|
49
|
+
▼
|
|
50
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
51
|
+
│ PHASE 1: VALIDATION │
|
|
52
|
+
├─────────────────────────────────────────────────────────────┤
|
|
53
|
+
│ ✓ Check current sprint exists │
|
|
54
|
+
│ ✓ Verify sprint is active/in_progress │
|
|
55
|
+
│ ✓ Check task completion (warn if incomplete) │
|
|
56
|
+
│ ✓ Check for uncommitted changes │
|
|
57
|
+
└─────────────────────────────────────────────────────────────┘
|
|
58
|
+
│
|
|
59
|
+
▼
|
|
60
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
61
|
+
│ PHASE 2: TESTING (unless --skip-tests) │
|
|
62
|
+
├─────────────────────────────────────────────────────────────┤
|
|
63
|
+
│ ► Run: npm test (or configured test command) │
|
|
64
|
+
│ ► Check coverage gates from workflow.yaml │
|
|
65
|
+
│ ► FAIL if tests don't pass │
|
|
66
|
+
└─────────────────────────────────────────────────────────────┘
|
|
67
|
+
│
|
|
68
|
+
▼
|
|
69
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
70
|
+
│ PHASE 3: SPRINT END │
|
|
71
|
+
├─────────────────────────────────────────────────────────────┤
|
|
72
|
+
│ ► Set status: completed │
|
|
73
|
+
│ ► Calculate metrics (completed tasks, velocity) │
|
|
74
|
+
│ ► Generate retrospective │
|
|
75
|
+
│ ► Archive to .omgkit/sprints/archive/ │
|
|
76
|
+
└─────────────────────────────────────────────────────────────┘
|
|
77
|
+
│
|
|
78
|
+
▼
|
|
79
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
80
|
+
│ PHASE 4: GIT OPERATIONS │
|
|
81
|
+
├─────────────────────────────────────────────────────────────┤
|
|
82
|
+
│ ► git add . │
|
|
83
|
+
│ ► git commit -m "feat(sprint): [message]" │
|
|
84
|
+
│ └── Include retrospective summary in body │
|
|
85
|
+
│ ► git push origin [branch] │
|
|
86
|
+
└─────────────────────────────────────────────────────────────┘
|
|
87
|
+
│
|
|
88
|
+
▼
|
|
89
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
90
|
+
│ PHASE 5: PR/CI (unless --no-pr) │
|
|
91
|
+
├─────────────────────────────────────────────────────────────┤
|
|
92
|
+
│ ► Create PR with sprint summary │
|
|
93
|
+
│ ► Add labels: sprint-complete │
|
|
94
|
+
│ ► Link CI/CD status │
|
|
95
|
+
└─────────────────────────────────────────────────────────────┘
|
|
96
|
+
│
|
|
97
|
+
▼
|
|
98
|
+
┌─────────────────────────────────────────────────────────────┐
|
|
99
|
+
│ PHASE 6: REPORT │
|
|
100
|
+
├─────────────────────────────────────────────────────────────┤
|
|
101
|
+
│ 📊 Sprint Summary │
|
|
102
|
+
│ 📝 Commit: abc1234 │
|
|
103
|
+
│ 🔗 PR: https://github.com/org/repo/pull/123 │
|
|
104
|
+
│ 🚀 CI/CD: Running... │
|
|
105
|
+
└─────────────────────────────────────────────────────────────┘
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Configuration
|
|
109
|
+
|
|
110
|
+
Configure ship behavior in `.omgkit/workflow.yaml`:
|
|
111
|
+
|
|
112
|
+
```yaml
|
|
113
|
+
ship:
|
|
114
|
+
# Run tests before shipping
|
|
115
|
+
auto_test: true
|
|
116
|
+
|
|
117
|
+
# Test command to run
|
|
118
|
+
test_command: "npm test"
|
|
119
|
+
|
|
120
|
+
# Create PR instead of direct push
|
|
121
|
+
create_pr: true
|
|
122
|
+
|
|
123
|
+
# PR settings
|
|
124
|
+
pr:
|
|
125
|
+
draft: false
|
|
126
|
+
reviewers: []
|
|
127
|
+
labels: ["sprint-complete"]
|
|
128
|
+
|
|
129
|
+
# Commit message format
|
|
130
|
+
commit:
|
|
131
|
+
prefix: "feat(sprint)"
|
|
132
|
+
include_retrospective: true
|
|
133
|
+
include_metrics: true
|
|
134
|
+
|
|
135
|
+
# Force ship even with incomplete tasks
|
|
136
|
+
allow_incomplete: false
|
|
137
|
+
|
|
138
|
+
# Archive sprint after ship
|
|
139
|
+
archive_sprint: true
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## Examples
|
|
143
|
+
|
|
144
|
+
### Basic Usage
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
# Ship with auto-generated message from sprint name
|
|
148
|
+
/sprint:ship
|
|
149
|
+
|
|
150
|
+
# Ship with custom message
|
|
151
|
+
/sprint:ship "Sprint 1 - User Authentication Complete"
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
### With Options
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
# Skip tests (use with caution)
|
|
158
|
+
/sprint:ship "Hotfix Sprint" --skip-tests
|
|
159
|
+
|
|
160
|
+
# Push directly without PR (for trunk-based development)
|
|
161
|
+
/sprint:ship "Sprint 1" --no-pr
|
|
162
|
+
|
|
163
|
+
# Force ship even with incomplete tasks
|
|
164
|
+
/sprint:ship "MVP Sprint" --force
|
|
165
|
+
|
|
166
|
+
# Combine options
|
|
167
|
+
/sprint:ship "Quick Fix" --skip-tests --no-pr
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
### Full Workflow Example
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
# 1. Start sprint
|
|
174
|
+
/sprint:sprint-new "Auth Feature" --ref=.omgkit/artifacts/prd-auth.md
|
|
175
|
+
|
|
176
|
+
# 2. Work on sprint
|
|
177
|
+
/sprint:team-run
|
|
178
|
+
/dev:feature "implement login"
|
|
179
|
+
/dev:feature "implement signup"
|
|
180
|
+
|
|
181
|
+
# 3. Ship when done
|
|
182
|
+
/sprint:ship "Sprint 1 - Auth Feature Complete"
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
## Output
|
|
186
|
+
|
|
187
|
+
### Sprint Summary
|
|
188
|
+
|
|
189
|
+
```markdown
|
|
190
|
+
## Sprint Shipped: Auth Feature
|
|
191
|
+
|
|
192
|
+
### Metrics
|
|
193
|
+
- Completed: 8/10 tasks (80%)
|
|
194
|
+
- Velocity: 2.5 tasks/day
|
|
195
|
+
- Duration: 4 days
|
|
196
|
+
|
|
197
|
+
### Retrospective
|
|
198
|
+
**What Went Well:**
|
|
199
|
+
- Fast iteration on login flow
|
|
200
|
+
- Good test coverage achieved
|
|
201
|
+
|
|
202
|
+
**What Could Improve:**
|
|
203
|
+
- Better estimation for OAuth integration
|
|
204
|
+
|
|
205
|
+
### Git
|
|
206
|
+
- Commit: `abc1234`
|
|
207
|
+
- Branch: `main`
|
|
208
|
+
- PR: #123
|
|
209
|
+
|
|
210
|
+
### CI/CD
|
|
211
|
+
- Status: Running
|
|
212
|
+
- URL: https://github.com/org/repo/actions/runs/123
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
## Error Handling
|
|
216
|
+
|
|
217
|
+
### No Active Sprint
|
|
218
|
+
|
|
219
|
+
```
|
|
220
|
+
❌ Error: No active sprint found
|
|
221
|
+
Run /sprint:sprint-new to create a sprint first
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
### Tests Failed
|
|
225
|
+
|
|
226
|
+
```
|
|
227
|
+
❌ Error: Tests failed (12 failing)
|
|
228
|
+
Fix tests before shipping or use --skip-tests (not recommended)
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
### Incomplete Tasks
|
|
232
|
+
|
|
233
|
+
```
|
|
234
|
+
⚠️ Warning: 2 tasks incomplete
|
|
235
|
+
- [ ] Implement password reset
|
|
236
|
+
- [ ] Add email verification
|
|
237
|
+
|
|
238
|
+
Use --force to ship anyway, or complete tasks first
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
## Best Practices
|
|
242
|
+
|
|
243
|
+
1. **Always run tests** - Don't use `--skip-tests` in production
|
|
244
|
+
2. **Complete tasks** - Ship complete sprints, not partial work
|
|
245
|
+
3. **Use meaningful messages** - Commit messages should describe the sprint's value
|
|
246
|
+
4. **Review before ship** - Run `/dev:review` before `/sprint:ship`
|
|
247
|
+
5. **Configure workflow.yaml** - Set team preferences for ship behavior
|
|
248
|
+
|
|
249
|
+
## Comparison with Other Commands
|
|
250
|
+
|
|
251
|
+
| Command | Purpose | When to Use |
|
|
252
|
+
|---------|---------|-------------|
|
|
253
|
+
| `/sprint:sprint-end` | End sprint only | When not ready to commit |
|
|
254
|
+
| `/git:ship` | Commit and PR | For non-sprint commits |
|
|
255
|
+
| `/git:commit` | Commit only | For WIP commits |
|
|
256
|
+
| `/sprint:ship` | Full workflow | Sprint completion |
|
|
257
|
+
|
|
258
|
+
## Related Commands
|
|
259
|
+
|
|
260
|
+
- `/sprint:sprint-new` - Create new sprint
|
|
261
|
+
- `/sprint:sprint-end` - End sprint (without shipping)
|
|
262
|
+
- `/sprint:team-run` - Execute sprint tasks
|
|
263
|
+
- `/git:ship` - Ship code (standalone)
|
|
264
|
+
- `/git:pr` - Create pull request
|
package/plugin/registry.yaml
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# Version: 2.26.1
|
|
4
4
|
# Updated: 2026-01-06
|
|
5
5
|
|
|
6
|
-
version: "2.
|
|
6
|
+
version: "2.28.0"
|
|
7
7
|
|
|
8
8
|
# =============================================================================
|
|
9
9
|
# OPTIMIZED ALIGNMENT PRINCIPLE (OAP)
|
|
@@ -409,6 +409,7 @@ agents:
|
|
|
409
409
|
- /sprint:sprint-start
|
|
410
410
|
- /sprint:sprint-current
|
|
411
411
|
- /sprint:sprint-end
|
|
412
|
+
- /sprint:ship
|
|
412
413
|
- /sprint:backlog-add
|
|
413
414
|
- /sprint:backlog-show
|
|
414
415
|
- /sprint:backlog-prioritize
|
|
@@ -870,13 +871,13 @@ workflows:
|
|
|
870
871
|
skills:
|
|
871
872
|
- omega/omega-sprint
|
|
872
873
|
- methodology/executing-plans
|
|
873
|
-
commands: [/sprint:sprint-current, /sprint:team-run, /sprint:team-status, /dev:fix, /sprint:sprint-end]
|
|
874
|
+
commands: [/sprint:sprint-current, /sprint:team-run, /sprint:team-status, /dev:fix, /sprint:sprint-end, /sprint:ship]
|
|
874
875
|
|
|
875
876
|
sprint/sprint-retrospective:
|
|
876
877
|
agents: [sprint-master, project-manager, journal-writer]
|
|
877
878
|
skills:
|
|
878
879
|
- omega/omega-sprint
|
|
879
|
-
commands: [/sprint:sprint-end, /planning:doc]
|
|
880
|
+
commands: [/sprint:sprint-end, /sprint:ship, /planning:doc]
|
|
880
881
|
|
|
881
882
|
# Fullstack workflows
|
|
882
883
|
fullstack/full-feature:
|
|
@@ -19,6 +19,7 @@ commands:
|
|
|
19
19
|
- /sprint:team-status
|
|
20
20
|
- /dev:fix
|
|
21
21
|
- /sprint:sprint-end
|
|
22
|
+
- /sprint:ship
|
|
22
23
|
prerequisites:
|
|
23
24
|
- Sprint created and started
|
|
24
25
|
- Tasks assigned
|
|
@@ -109,6 +110,19 @@ Complete sprint:
|
|
|
109
110
|
|
|
110
111
|
**Output:** Sprint completed
|
|
111
112
|
|
|
113
|
+
### Step 6: Ship (Optional)
|
|
114
|
+
**Agent:** sprint-master
|
|
115
|
+
**Command:** `/sprint:ship`
|
|
116
|
+
**Duration:** 5-15 minutes
|
|
117
|
+
|
|
118
|
+
Ship sprint to production:
|
|
119
|
+
- Run tests
|
|
120
|
+
- Commit all changes
|
|
121
|
+
- Push to remote
|
|
122
|
+
- Create PR or deploy
|
|
123
|
+
|
|
124
|
+
**Output:** Sprint shipped
|
|
125
|
+
|
|
112
126
|
## Quality Gates
|
|
113
127
|
|
|
114
128
|
- [ ] All high-priority tasks complete
|
|
@@ -219,3 +219,49 @@ references:
|
|
|
219
219
|
|
|
220
220
|
# Maximum file age in days before warning
|
|
221
221
|
max_age_days: 30
|
|
222
|
+
|
|
223
|
+
# =============================================================================
|
|
224
|
+
# SPRINT SHIP CONFIGURATION
|
|
225
|
+
# =============================================================================
|
|
226
|
+
ship:
|
|
227
|
+
# Run tests before shipping
|
|
228
|
+
auto_test: true
|
|
229
|
+
|
|
230
|
+
# Test command to run (uses package.json test script by default)
|
|
231
|
+
test_command: "npm test"
|
|
232
|
+
|
|
233
|
+
# Create PR instead of direct push
|
|
234
|
+
create_pr: true
|
|
235
|
+
|
|
236
|
+
# PR settings (when create_pr: true)
|
|
237
|
+
pr:
|
|
238
|
+
# Create as draft
|
|
239
|
+
draft: false
|
|
240
|
+
|
|
241
|
+
# Auto-assign reviewers
|
|
242
|
+
reviewers: []
|
|
243
|
+
|
|
244
|
+
# Auto-add labels
|
|
245
|
+
labels: ["sprint-complete"]
|
|
246
|
+
|
|
247
|
+
# Commit message settings
|
|
248
|
+
commit:
|
|
249
|
+
# Commit message prefix
|
|
250
|
+
prefix: "feat(sprint)"
|
|
251
|
+
|
|
252
|
+
# Include retrospective in commit body
|
|
253
|
+
include_retrospective: true
|
|
254
|
+
|
|
255
|
+
# Include metrics in commit body
|
|
256
|
+
include_metrics: true
|
|
257
|
+
|
|
258
|
+
# Ship behavior
|
|
259
|
+
behavior:
|
|
260
|
+
# Allow shipping with incomplete tasks (requires --force)
|
|
261
|
+
allow_incomplete: false
|
|
262
|
+
|
|
263
|
+
# Archive sprint after successful ship
|
|
264
|
+
archive_sprint: true
|
|
265
|
+
|
|
266
|
+
# Run lint/format before commit
|
|
267
|
+
pre_commit_checks: true
|