lite-kits 0.1.0__py3-none-any.whl → 0.3.1__py3-none-any.whl

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 (48) hide show
  1. lite_kits/__init__.py +61 -9
  2. lite_kits/cli.py +788 -262
  3. lite_kits/core/__init__.py +19 -0
  4. lite_kits/core/banner.py +160 -0
  5. lite_kits/core/conflict_checker.py +115 -0
  6. lite_kits/core/detector.py +140 -0
  7. lite_kits/core/installer.py +322 -0
  8. lite_kits/core/manifest.py +146 -0
  9. lite_kits/core/validator.py +146 -0
  10. lite_kits/kits/README.md +14 -15
  11. lite_kits/kits/dev/README.md +241 -0
  12. lite_kits/kits/dev/commands/.claude/audit.md +143 -0
  13. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/cleanup.md +2 -2
  14. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/commit.md +2 -2
  15. lite_kits/kits/{project/claude/commands → dev/commands/.claude}/orient.md +30 -48
  16. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/pr.md +1 -1
  17. lite_kits/kits/dev/commands/.claude/review.md +202 -0
  18. lite_kits/kits/dev/commands/.claude/stats.md +162 -0
  19. lite_kits/kits/dev/commands/.github/audit.prompt.md +143 -0
  20. lite_kits/kits/{git/github/prompts → dev/commands/.github}/cleanup.prompt.md +2 -2
  21. lite_kits/kits/{git/github/prompts → dev/commands/.github}/commit.prompt.md +2 -2
  22. lite_kits/kits/{project/github/prompts → dev/commands/.github}/orient.prompt.md +34 -48
  23. lite_kits/kits/{git/github/prompts → dev/commands/.github}/pr.prompt.md +1 -1
  24. lite_kits/kits/dev/commands/.github/review.prompt.md +202 -0
  25. lite_kits/kits/dev/commands/.github/stats.prompt.md +163 -0
  26. lite_kits/kits/kits.yaml +497 -0
  27. lite_kits/kits/multiagent/README.md +28 -17
  28. lite_kits/kits/multiagent/{claude/commands → commands/.claude}/sync.md +331 -331
  29. lite_kits/kits/multiagent/{github/prompts → commands/.github}/sync.prompt.md +73 -69
  30. lite_kits/kits/multiagent/memory/git-worktrees-protocol.md +370 -370
  31. lite_kits/kits/multiagent/memory/parallel-work-protocol.md +536 -536
  32. lite_kits/kits/multiagent/memory/pr-workflow-guide.md +275 -281
  33. lite_kits/kits/multiagent/templates/collaboration-structure/README.md +166 -166
  34. lite_kits/kits/multiagent/templates/decision.md +79 -79
  35. lite_kits/kits/multiagent/templates/handoff.md +95 -95
  36. lite_kits/kits/multiagent/templates/session-log.md +68 -68
  37. lite_kits-0.3.1.dist-info/METADATA +259 -0
  38. lite_kits-0.3.1.dist-info/RECORD +41 -0
  39. {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/licenses/LICENSE +21 -21
  40. lite_kits/installer.py +0 -417
  41. lite_kits/kits/git/README.md +0 -374
  42. lite_kits/kits/git/scripts/bash/get-git-context.sh +0 -208
  43. lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +0 -242
  44. lite_kits/kits/project/README.md +0 -244
  45. lite_kits-0.1.0.dist-info/METADATA +0 -415
  46. lite_kits-0.1.0.dist-info/RECORD +0 -31
  47. {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/WHEEL +0 -0
  48. {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,497 @@
1
+ # Lite-Kits Manifest
2
+ # Complete catalog of kits, commands, files, scripts, and supported platforms
3
+ # Version: 1.0
4
+
5
+ # ============================================================================
6
+ # METADATA
7
+ # ============================================================================
8
+
9
+ metadata:
10
+ manifest_version: "1.0"
11
+ last_updated: "2025-10-09"
12
+ schema_url: "https://github.com/tmorgan181/lite-kits/blob/main/docs/manifest-schema.md"
13
+
14
+ # Compatibility
15
+ min_lite_kits_version: "0.2.0"
16
+ min_spec_kit_version: "0.1.0" # Minimum vanilla spec-kit version
17
+
18
+ # ============================================================================
19
+ # CONSTANTS - DRY principle for maintainability
20
+ # ============================================================================
21
+
22
+ # VERSION CONSTANTS
23
+ versions:
24
+ manifest: "1.0"
25
+ dev_kit: "0.2.0"
26
+ multiagent_kit: "0.2.0"
27
+ min_lite_kits: "0.2.0"
28
+ min_spec_kit: "0.1.0"
29
+
30
+ # STATUS CONSTANTS (for commands and features)
31
+ status_values:
32
+ stable: "stable" # Production-ready, tested
33
+ beta: "beta" # Functional but not fully tested
34
+ planned: "planned" # Documented but not implemented
35
+ deprecated: "deprecated" # Legacy, will be removed
36
+
37
+ # TYPE CONSTANTS (for file types)
38
+ file_types:
39
+ command: "command" # Agent commands (.md files)
40
+ prompt: "prompt" # Agent prompts (.prompt.md files)
41
+ script: "script" # Executable scripts (.sh, .ps1)
42
+ memory: "memory" # Memory/guide documents
43
+ template: "template" # Template files
44
+
45
+ # CATEGORY CONSTANTS (for organizing commands/files)
46
+ categories:
47
+ project: "project" # Project management and orientation
48
+ git: "git" # Git workflow automation
49
+ analysis: "analysis" # Code analysis and quality
50
+ coordination: "coordination" # Multi-agent coordination
51
+ workflow: "workflow" # Workflow guides and protocols
52
+ collaboration: "collaboration" # Collaboration templates
53
+
54
+ # REQUIRED CONSTANTS (for validation)
55
+ required_values:
56
+ required: true
57
+ optional: false
58
+
59
+ # PATH CONSTANTS
60
+ paths:
61
+ # Kit source directories (where files are stored in lite-kits)
62
+ # Content type subdirectories (content-first hierarchy)
63
+ content_dirs:
64
+ commands: "commands"
65
+ scripts: "scripts"
66
+ memory: "memory"
67
+ templates: "templates"
68
+
69
+ # Agent subdirectories (within content dirs)
70
+ agent_dirs:
71
+ claude: ".claude"
72
+ github: ".github"
73
+
74
+ # Shell subdirectories (within scripts dir)
75
+ shell_dirs:
76
+ bash: "bash"
77
+ powershell: "powershell"
78
+
79
+ # Target installation paths (where files go in user projects)
80
+ target_paths:
81
+ claude_commands: ".claude/commands"
82
+ github_prompts: ".github/prompts"
83
+ spec_scripts: ".specify/scripts"
84
+ spec_memory: ".specify/memory"
85
+ spec_templates: ".specify/templates"
86
+
87
+ # ============================================================================
88
+ # SPEC-KIT DETECTION
89
+ # ============================================================================
90
+
91
+ spec_kit:
92
+ # Markers that indicate a spec-kit project
93
+ # At least one must exist for valid spec-kit detection
94
+ markers:
95
+ - path: ".specify"
96
+ type: "directory"
97
+ description: "Spec-kit core directory"
98
+
99
+ - path: ".claude"
100
+ type: "directory"
101
+ description: "Claude Code commands directory"
102
+
103
+ - path: ".github/prompts"
104
+ type: "directory"
105
+ description: "GitHub Copilot prompts directory"
106
+
107
+ # Detection logic
108
+ require_any: true # At least one marker must exist (true) vs all must exist (false)
109
+
110
+ # ============================================================================
111
+ # KITS
112
+ # ============================================================================
113
+
114
+ kits:
115
+ # --------------------------------------------------------------------------
116
+ # DEV KIT - Solo development essentials
117
+ # --------------------------------------------------------------------------
118
+ dev:
119
+ name: "Dev Kit"
120
+ description: "Solo development essentials: /orient, /commit, /pr, /review, /cleanup, /audit, /stats"
121
+ icon: "🚀"
122
+ recommended: true
123
+ version: "0.2.0"
124
+
125
+ # Commands provided by this kit
126
+ commands:
127
+ - name: "orient"
128
+ description: "Agent orientation protocol"
129
+ status: "stable" # stable | beta | planned | deprecated
130
+ category: "project" # project | git | analysis
131
+
132
+ - name: "commit"
133
+ description: "Smart commit with staging and message generation"
134
+ status: "stable"
135
+ category: "git"
136
+
137
+ - name: "pr"
138
+ description: "Pull request creation with auto-push"
139
+ status: "stable"
140
+ category: "git"
141
+
142
+ - name: "review"
143
+ description: "Code review helper for staged changes"
144
+ status: "stable"
145
+ category: "git"
146
+
147
+ - name: "cleanup"
148
+ description: "Safe branch cleanup (delete merged branches)"
149
+ status: "stable"
150
+ category: "git"
151
+
152
+ - name: "audit"
153
+ description: "Security & quality audit"
154
+ status: "planned"
155
+ category: "analysis"
156
+
157
+ - name: "stats"
158
+ description: "Project statistics"
159
+ status: "planned"
160
+ category: "analysis"
161
+
162
+ # Files that get installed
163
+ files:
164
+ # Claude Code command files
165
+ claude:
166
+ - path: ".claude/commands/orient.md"
167
+ source: "dev/commands/.claude/orient.md"
168
+ required: true
169
+ type: "command"
170
+ category: "project"
171
+
172
+ - path: ".claude/commands/commit.md"
173
+ source: "dev/commands/.claude/commit.md"
174
+ required: true
175
+ type: "command"
176
+ category: "git"
177
+
178
+ - path: ".claude/commands/pr.md"
179
+ source: "dev/commands/.claude/pr.md"
180
+ required: true
181
+ type: "command"
182
+ category: "git"
183
+
184
+ - path: ".claude/commands/review.md"
185
+ source: "dev/commands/.claude/review.md"
186
+ required: true
187
+ type: "command"
188
+ category: "git"
189
+
190
+ - path: ".claude/commands/cleanup.md"
191
+ source: "dev/commands/.claude/cleanup.md"
192
+ required: true
193
+ type: "command"
194
+ category: "git"
195
+
196
+ - path: ".claude/commands/audit.md"
197
+ source: "dev/commands/.claude/audit.md"
198
+ required: false
199
+ type: "command"
200
+ category: "analysis"
201
+
202
+ - path: ".claude/commands/stats.md"
203
+ source: "dev/commands/.claude/stats.md"
204
+ required: false
205
+ type: "command"
206
+ category: "analysis"
207
+
208
+ # GitHub Copilot prompt files
209
+ copilot:
210
+ - path: ".github/prompts/orient.prompt.md"
211
+ source: "dev/commands/.github/orient.prompt.md"
212
+ required: true
213
+ type: "prompt"
214
+ category: "project"
215
+
216
+ - path: ".github/prompts/commit.prompt.md"
217
+ source: "dev/commands/.github/commit.prompt.md"
218
+ required: true
219
+ type: "prompt"
220
+ category: "git"
221
+
222
+ - path: ".github/prompts/pr.prompt.md"
223
+ source: "dev/commands/.github/pr.prompt.md"
224
+ required: true
225
+ type: "prompt"
226
+ category: "git"
227
+
228
+ - path: ".github/prompts/review.prompt.md"
229
+ source: "dev/commands/.github/review.prompt.md"
230
+ required: true
231
+ type: "prompt"
232
+ category: "git"
233
+
234
+ - path: ".github/prompts/cleanup.prompt.md"
235
+ source: "dev/commands/.github/cleanup.prompt.md"
236
+ required: true
237
+ type: "prompt"
238
+ category: "git"
239
+
240
+ - path: ".github/prompts/audit.prompt.md"
241
+ source: "dev/commands/.github/audit.prompt.md"
242
+ required: false
243
+ type: "prompt"
244
+ category: "analysis"
245
+
246
+ - path: ".github/prompts/stats.prompt.md"
247
+ source: "dev/commands/.github/stats.prompt.md"
248
+ required: false
249
+ type: "prompt"
250
+ category: "analysis"
251
+
252
+ # Bash scripts (Linux/macOS/WSL)
253
+ bash:
254
+ - path: ".specify/scripts/bash/git-status.sh"
255
+ source: "dev/scripts/bash/git-status.sh"
256
+ required: false
257
+ type: "script"
258
+ category: "git"
259
+ status: "planned"
260
+
261
+ - path: ".specify/scripts/bash/project-info.sh"
262
+ source: "dev/scripts/bash/project-info.sh"
263
+ required: false
264
+ type: "script"
265
+ category: "project"
266
+ status: "planned"
267
+
268
+ # PowerShell scripts (Windows/cross-platform)
269
+ powershell:
270
+ - path: ".specify/scripts/powershell/Get-GitStatus.ps1"
271
+ source: "dev/scripts/powershell/Get-GitStatus.ps1"
272
+ required: false
273
+ type: "script"
274
+ category: "git"
275
+ status: "planned"
276
+
277
+ - path: ".specify/scripts/powershell/Get-ProjectInfo.ps1"
278
+ source: "dev/scripts/powershell/Get-ProjectInfo.ps1"
279
+ required: false
280
+ type: "script"
281
+ category: "project"
282
+ status: "planned"
283
+
284
+ # Marker files for detection (if any of these exist, kit is installed)
285
+ markers:
286
+ - ".claude/commands/orient.md"
287
+ - ".github/prompts/orient.prompt.md"
288
+
289
+ # --------------------------------------------------------------------------
290
+ # MULTIAGENT KIT - Multi-agent coordination
291
+ # --------------------------------------------------------------------------
292
+ multiagent:
293
+ name: "Multiagent Kit"
294
+ description: "Multi-agent coordination: /sync, collaboration dirs, memory guides"
295
+ icon: "🤝"
296
+ recommended: false
297
+ version: "0.2.0"
298
+
299
+ commands:
300
+ - name: "sync"
301
+ description: "Multi-agent coordination status"
302
+ status: "stable"
303
+ category: "coordination"
304
+
305
+ files:
306
+ # Claude Code commands
307
+ claude:
308
+ - path: ".claude/commands/sync.md"
309
+ source: "multiagent/commands/.claude/sync.md"
310
+ required: true
311
+ type: "command"
312
+ category: "coordination"
313
+
314
+ # GitHub Copilot prompts
315
+ copilot:
316
+ - path: ".github/prompts/sync.prompt.md"
317
+ source: "multiagent/commands/.github/sync.prompt.md"
318
+ required: true
319
+ type: "prompt"
320
+ category: "coordination"
321
+
322
+ # Memory guides (agent-agnostic)
323
+ memory:
324
+ - path: ".specify/memory/pr-workflow-guide.md"
325
+ source: "multiagent/memory/pr-workflow-guide.md"
326
+ required: true
327
+ type: "memory"
328
+ category: "workflow"
329
+
330
+ - path: ".specify/memory/git-worktrees-protocol.md"
331
+ source: "multiagent/memory/git-worktrees-protocol.md"
332
+ required: true
333
+ type: "memory"
334
+ category: "workflow"
335
+
336
+ - path: ".specify/memory/parallel-work-protocol.md"
337
+ source: "multiagent/memory/parallel-work-protocol.md"
338
+ required: true
339
+ type: "memory"
340
+ category: "workflow"
341
+
342
+ # Templates (agent-agnostic)
343
+ templates:
344
+ - path: ".specify/templates/session-log.md"
345
+ source: "multiagent/templates/session-log.md"
346
+ required: true
347
+ type: "template"
348
+ category: "collaboration"
349
+
350
+ - path: ".specify/templates/handoff.md"
351
+ source: "multiagent/templates/handoff.md"
352
+ required: true
353
+ type: "template"
354
+ category: "collaboration"
355
+
356
+ - path: ".specify/templates/decision.md"
357
+ source: "multiagent/templates/decision.md"
358
+ required: true
359
+ type: "template"
360
+ category: "collaboration"
361
+
362
+ - path: ".specify/templates/collaboration-README.md"
363
+ source: "multiagent/templates/collaboration-structure/README.md"
364
+ required: true
365
+ type: "template"
366
+ category: "collaboration"
367
+
368
+ # Bash scripts
369
+ bash:
370
+ - path: ".specify/scripts/bash/sync-status.sh"
371
+ source: "multiagent/scripts/bash/sync-status.sh"
372
+ required: false
373
+ type: "script"
374
+ category: "coordination"
375
+ status: "planned"
376
+
377
+ # PowerShell scripts
378
+ powershell:
379
+ - path: ".specify/scripts/powershell/Get-SyncStatus.ps1"
380
+ source: "multiagent/scripts/powershell/Get-SyncStatus.ps1"
381
+ required: false
382
+ type: "script"
383
+ category: "coordination"
384
+ status: "planned"
385
+
386
+ markers:
387
+ - ".specify/memory/pr-workflow-guide.md"
388
+ - ".claude/commands/sync.md"
389
+ - ".github/prompts/sync.prompt.md"
390
+
391
+ # ============================================================================
392
+ # AGENTS - AI assistant configurations
393
+ # ============================================================================
394
+
395
+ agents:
396
+ claude:
397
+ name: "Claude Code"
398
+ marker_dir: ".claude"
399
+ commands_dir: ".claude/commands"
400
+ file_extension: ".md"
401
+ supported: true
402
+ priority: 1 # Lower = higher priority for auto-detection
403
+
404
+ copilot:
405
+ name: "GitHub Copilot"
406
+ marker_dir: ".github/prompts"
407
+ commands_dir: ".github/prompts"
408
+ file_extension: ".prompt.md"
409
+ supported: true
410
+ priority: 2
411
+
412
+ # Future agent support (planned)
413
+ cursor:
414
+ name: "Cursor"
415
+ marker_dir: ".cursor"
416
+ commands_dir: ".cursor/commands"
417
+ file_extension: ".md"
418
+ supported: false
419
+ priority: 3
420
+ status: "planned"
421
+
422
+ windsurf:
423
+ name: "Windsurf"
424
+ marker_dir: ".windsurf"
425
+ commands_dir: ".windsurf/prompts"
426
+ file_extension: ".md"
427
+ supported: false
428
+ priority: 4
429
+ status: "planned"
430
+
431
+ # ============================================================================
432
+ # SHELLS - Script shell environments
433
+ # ============================================================================
434
+
435
+ shells:
436
+ bash:
437
+ name: "Bash"
438
+ extension: ".sh"
439
+ script_dir: ".specify/scripts/bash"
440
+ platforms: ["linux", "macos", "wsl"]
441
+ supported: true
442
+ priority: 1
443
+
444
+ powershell:
445
+ name: "PowerShell"
446
+ extension: ".ps1"
447
+ script_dir: ".specify/scripts/powershell"
448
+ platforms: ["windows", "linux", "macos"] # PowerShell Core is cross-platform
449
+ supported: true
450
+ priority: 2
451
+
452
+ # Future shell support (planned)
453
+ fish:
454
+ name: "Fish Shell"
455
+ extension: ".fish"
456
+ script_dir: ".specify/scripts/fish"
457
+ platforms: ["linux", "macos"]
458
+ supported: false
459
+ priority: 3
460
+ status: "planned"
461
+
462
+ zsh:
463
+ name: "Zsh"
464
+ extension: ".zsh"
465
+ script_dir: ".specify/scripts/zsh"
466
+ platforms: ["linux", "macos"]
467
+ supported: false
468
+ priority: 4
469
+ status: "planned"
470
+
471
+ # ============================================================================
472
+ # INSTALLATION OPTIONS
473
+ # ============================================================================
474
+
475
+ options:
476
+ # Default kit to install when no kit specified
477
+ default_kit: "dev"
478
+
479
+ # Installation behavior
480
+ allow_partial_install: true # Can install for just one agent/shell
481
+ skip_existing: true # Don't overwrite existing files by default
482
+ validate_on_install: true # Run validation after install
483
+ create_backups: false # Create .bak files before overwriting (future)
484
+
485
+ # Auto-detection behavior
486
+ auto_detect_agents: true # Auto-detect which agents are present
487
+ auto_detect_shells: true # Auto-detect which shells to install for
488
+ prefer_all_agents: true # Install for all detected agents by default
489
+ prefer_all_shells: false # Only install for primary shell by default
490
+
491
+ # Validation behavior
492
+ check_file_integrity: true # Verify file contents during validation
493
+ min_file_size: 100 # Minimum file size in bytes to be considered valid
494
+
495
+ # Future options (planned)
496
+ enable_telemetry: false # Anonymous usage stats
497
+ auto_update_check: false # Check for kit updates
@@ -6,6 +6,12 @@ Multi-agent coordination structure for projects with multiple AI agents working
6
6
 
7
7
  ## What It Adds
8
8
 
9
+ ### Commands
10
+
11
+ | Command | Claude Code | GitHub Copilot | Description |
12
+ |---------|-------------|----------------|-------------|
13
+ | `/sync` | ✅ | ✅ | Show git sync status with worktree visualization |
14
+
9
15
  ### Memory Guides
10
16
 
11
17
  | Guide | Description | Status |
@@ -23,26 +29,23 @@ Multi-agent coordination structure for projects with multiple AI agents working
23
29
 
24
30
  ## Dependencies
25
31
 
26
- ⚠️ **multiagent-kit requires**:
27
- - **project-kit**: For `/review` command and best practices
28
- - **git-kit**: For `/commit`, `/pr` commands used in workflows
32
+ **None** - multiagent-kit is standalone.
29
33
 
30
34
  **Recommended installation**:
31
35
  ```bash
32
- lite-kits install -Recommended -Kit multiagent
33
- # Installs: project + git + multiagent
36
+ lite-kits install -Kit multiagent
34
37
  ```
35
38
 
36
- **Note**: Installer will automatically install dependencies if missing.
39
+ **Note**: Works best when combined with dev-kit and dev-kit, but they are not required.
37
40
 
38
41
  ## Installation
39
42
 
40
- ### With dependencies (recommended):
43
+ ### As part of recommended kits:
41
44
  ```bash
42
- lite-kits install -Recommended -Kit multiagent
45
+ lite-kits install -Recommended -Kit multiagent # project + git + multiagent
43
46
  ```
44
47
 
45
- ### Individually (installs dependencies automatically):
48
+ ### Individually:
46
49
  ```bash
47
50
  lite-kits install -Kit multiagent
48
51
  ```
@@ -51,9 +54,14 @@ lite-kits install -Kit multiagent
51
54
 
52
55
  ```
53
56
  your-project/
57
+ ├── .claude/commands/ # If Claude Code detected
58
+ │ └── sync.md # ✅ Sync status with worktrees
59
+ ├── .github/prompts/ # If GitHub Copilot detected
60
+ │ └── sync.prompt.md # ✅ Sync status with worktrees
54
61
  ├── .specify/memory/
55
62
  │ ├── pr-workflow-guide.md # ✅ AI agent PR workflow
56
- └── git-worktrees-protocol.md # ✅ Parallel development guide
63
+ ├── git-worktrees-protocol.md # ✅ Parallel development guide
64
+ │ └── parallel-work-protocol.md # ✅ Multi-agent coordination
57
65
  └── specs/
58
66
  └── NNN-feature/
59
67
  └── collaboration/ # 🚧 Created per-feature
@@ -243,7 +251,7 @@ Backend authentication complete. Need frontend integration.
243
251
  4. Each agent logs sessions in `collaboration/active/sessions/`
244
252
  5. Agents sync periodically with `git pull`
245
253
  6. Claude handles integration testing
246
- 7. Either agent creates PR using `/pr` (from git-kit)
254
+ 7. Either agent creates PR using `/pr` (from dev-kit)
247
255
 
248
256
  **File territories** (avoid conflicts):
249
257
  - Backend worktree: `src/api/`, `src/models/`, `tests/api/`
@@ -259,7 +267,7 @@ Backend authentication complete. Need frontend integration.
259
267
  **Workflow**:
260
268
  1. Claude implements feature, commits work
261
269
  2. Claude creates handoff for review
262
- 3. Copilot runs `/review` (from project-kit)
270
+ 3. Copilot runs `/review` (from dev-kit)
263
271
  4. Copilot logs review in `collaboration/active/decisions/`
264
272
  5. Claude addresses feedback
265
273
  6. Copilot approves and creates PR
@@ -301,15 +309,15 @@ Backend authentication complete. Need frontend integration.
301
309
 
302
310
  ## Integration with Other Kits
303
311
 
304
- ### With project-kit
312
+ ### With dev-kit (optional)
305
313
  - Use `/orient` for each agent to understand their role
306
- - Use `/review` for agent-to-agent code review
307
314
 
308
- ### With git-kit
315
+ ### With dev-kit (optional)
309
316
  - Use `/commit` for agent-attributed commits
310
317
  - Use `/pr` to create PRs with multi-agent summary
311
- - Use `/sync` to visualize worktree status
318
+ - Use `/review` for agent-to-agent code review
312
319
  - Use `/cleanup` to remove stale worktrees
320
+ - Combine `/sync` (from multiagent-kit) with dev-kit workflows
313
321
 
314
322
  ---
315
323
 
@@ -351,7 +359,7 @@ No configuration needed - works out of the box.
351
359
 
352
360
  ## Compatibility
353
361
 
354
- - ✅ **Agents**: Claude Code, GitHub Copilot, Cursor
362
+ - ✅ **Agents**: Claude Code, GitHub Copilot
355
363
  - ✅ **Platforms**: Linux, macOS, Windows
356
364
  - ✅ **Shells**: Bash, PowerShell
357
365
  - ✅ **Vanilla safe**: Only adds new files, never modifies existing
@@ -365,8 +373,11 @@ lite-kits remove -Kit multiagent
365
373
  ```
366
374
 
367
375
  Removes:
376
+ - `.claude/commands/sync.md`
377
+ - `.github/prompts/sync.prompt.md`
368
378
  - `.specify/memory/pr-workflow-guide.md`
369
379
  - `.specify/memory/git-worktrees-protocol.md`
380
+ - `.specify/memory/parallel-work-protocol.md`
370
381
 
371
382
  **Note**: Existing `specs/*/collaboration/` directories are **preserved** (user data).
372
383