lite-kits 0.1.0__tar.gz → 0.1.1__tar.gz

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 (58) hide show
  1. {lite_kits-0.1.0 → lite_kits-0.1.1}/PKG-INFO +98 -66
  2. {lite_kits-0.1.0 → lite_kits-0.1.1}/README.md +95 -64
  3. {lite_kits-0.1.0 → lite_kits-0.1.1}/pyproject.toml +3 -2
  4. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/__init__.py +9 -9
  5. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/cli.py +170 -155
  6. lite_kits-0.1.1/src/lite_kits/core/__init__.py +13 -0
  7. lite_kits-0.1.1/src/lite_kits/core/banner.py +160 -0
  8. {lite_kits-0.1.0/src/lite_kits → lite_kits-0.1.1/src/lite_kits/core}/installer.py +47 -27
  9. lite_kits-0.1.1/src/lite_kits/core/manifest.py +146 -0
  10. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/README.md +9 -10
  11. lite_kits-0.1.1/src/lite_kits/kits/dev/README.md +241 -0
  12. lite_kits-0.1.1/src/lite_kits/kits/dev/claude/commands/audit.md +143 -0
  13. {lite_kits-0.1.0/src/lite_kits/kits/project → lite_kits-0.1.1/src/lite_kits/kits/dev}/claude/commands/orient.md +29 -46
  14. lite_kits-0.1.1/src/lite_kits/kits/dev/claude/commands/review.md +202 -0
  15. lite_kits-0.1.1/src/lite_kits/kits/dev/claude/commands/stats.md +162 -0
  16. lite_kits-0.1.1/src/lite_kits/kits/dev/github/prompts/audit.prompt.md +143 -0
  17. {lite_kits-0.1.0/src/lite_kits/kits/project → lite_kits-0.1.1/src/lite_kits/kits/dev}/github/prompts/orient.prompt.md +33 -46
  18. lite_kits-0.1.1/src/lite_kits/kits/dev/github/prompts/review.prompt.md +202 -0
  19. lite_kits-0.1.1/src/lite_kits/kits/dev/github/prompts/stats.prompt.md +163 -0
  20. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/git/README.md +59 -68
  21. lite_kits-0.1.1/src/lite_kits/kits/git/claude/commands/cleanup.md +361 -0
  22. lite_kits-0.1.1/src/lite_kits/kits/git/claude/commands/commit.md +612 -0
  23. lite_kits-0.1.1/src/lite_kits/kits/git/claude/commands/pr.md +593 -0
  24. lite_kits-0.1.1/src/lite_kits/kits/git/claude/commands/review.md +202 -0
  25. lite_kits-0.1.1/src/lite_kits/kits/git/github/prompts/cleanup.prompt.md +382 -0
  26. lite_kits-0.1.1/src/lite_kits/kits/git/github/prompts/commit.prompt.md +591 -0
  27. lite_kits-0.1.1/src/lite_kits/kits/git/github/prompts/pr.prompt.md +603 -0
  28. lite_kits-0.1.1/src/lite_kits/kits/git/github/prompts/review.prompt.md +202 -0
  29. lite_kits-0.1.1/src/lite_kits/kits/kits.yaml +180 -0
  30. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/README.md +26 -15
  31. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/memory/pr-workflow-guide.md +1 -7
  32. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/project/README.md +6 -22
  33. lite_kits-0.1.1/src/lite_kits/kits/project/claude/commands/audit.md +143 -0
  34. lite_kits-0.1.1/src/lite_kits/kits/project/claude/commands/orient.md +146 -0
  35. lite_kits-0.1.1/src/lite_kits/kits/project/claude/commands/review.md +112 -0
  36. lite_kits-0.1.1/src/lite_kits/kits/project/claude/commands/stats.md +162 -0
  37. lite_kits-0.1.1/src/lite_kits/kits/project/github/prompts/audit.prompt.md +143 -0
  38. lite_kits-0.1.1/src/lite_kits/kits/project/github/prompts/orient.prompt.md +150 -0
  39. lite_kits-0.1.1/src/lite_kits/kits/project/github/prompts/review.prompt.md +112 -0
  40. lite_kits-0.1.1/src/lite_kits/kits/project/github/prompts/stats.prompt.md +163 -0
  41. {lite_kits-0.1.0 → lite_kits-0.1.1}/.gitignore +0 -0
  42. {lite_kits-0.1.0 → lite_kits-0.1.1}/LICENSE +0 -0
  43. {lite_kits-0.1.0/src/lite_kits/kits/git → lite_kits-0.1.1/src/lite_kits/kits/dev}/claude/commands/cleanup.md +0 -0
  44. {lite_kits-0.1.0/src/lite_kits/kits/git → lite_kits-0.1.1/src/lite_kits/kits/dev}/claude/commands/commit.md +0 -0
  45. {lite_kits-0.1.0/src/lite_kits/kits/git → lite_kits-0.1.1/src/lite_kits/kits/dev}/claude/commands/pr.md +0 -0
  46. {lite_kits-0.1.0/src/lite_kits/kits/git → lite_kits-0.1.1/src/lite_kits/kits/dev}/github/prompts/cleanup.prompt.md +0 -0
  47. {lite_kits-0.1.0/src/lite_kits/kits/git → lite_kits-0.1.1/src/lite_kits/kits/dev}/github/prompts/commit.prompt.md +0 -0
  48. {lite_kits-0.1.0/src/lite_kits/kits/git → lite_kits-0.1.1/src/lite_kits/kits/dev}/github/prompts/pr.prompt.md +0 -0
  49. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/git/scripts/bash/get-git-context.sh +0 -0
  50. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +0 -0
  51. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/claude/commands/sync.md +0 -0
  52. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/github/prompts/sync.prompt.md +0 -0
  53. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/memory/git-worktrees-protocol.md +0 -0
  54. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/memory/parallel-work-protocol.md +0 -0
  55. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/templates/collaboration-structure/README.md +0 -0
  56. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/templates/decision.md +0 -0
  57. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/templates/handoff.md +0 -0
  58. {lite_kits-0.1.0 → lite_kits-0.1.1}/src/lite_kits/kits/multiagent/templates/session-log.md +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lite-kits
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Lightweight enhancement kits for vanilla dev tools (spec-kit, etc.)
5
5
  Project-URL: Homepage, https://github.com/tmorgan181/lite-kits
6
6
  Project-URL: Documentation, https://github.com/tmorgan181/lite-kits#readme
@@ -18,27 +18,30 @@ Classifier: Programming Language :: Python :: 3.11
18
18
  Classifier: Programming Language :: Python :: 3.12
19
19
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
20
  Requires-Python: >=3.11
21
+ Requires-Dist: pyyaml>=6.0.0
21
22
  Requires-Dist: rich>=13.0.0
22
- Requires-Dist: typer[all]>=0.9.0
23
+ Requires-Dist: typer>=0.9.0
23
24
  Provides-Extra: dev
24
25
  Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
25
26
  Requires-Dist: pytest>=7.0.0; extra == 'dev'
26
27
  Requires-Dist: ruff>=0.1.0; extra == 'dev'
27
28
  Description-Content-Type: text/markdown
28
29
 
29
- # lite-kits
30
+ # 🌈 LITE-KITS 🎒
30
31
 
31
- **Lightweight enhancement kits for spec-driven development**
32
-
33
- Add modular enhancement kits to vanilla [GitHub Spec-Kit](https://github.com/github/spec-kit) projects without forking or replacing core files.
34
-
35
- [![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)](https://github.com/tmorgan181/lite-kits)
32
+ [![Version](https://img.shields.io/badge/version-0.1.1-blue.svg)](https://github.com/tmorgan181/lite-kits/releases/tag/v0.1.1)
36
33
  [![Python](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
34
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
35
+ [![Spec-Kit](https://img.shields.io/badge/spec--kit-compatible-purple.svg)](https://github.com/github/spec-kit)
37
36
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
38
37
 
38
+ **Lightweight enhancement kits for spec-driven development.**
39
+
40
+ <img width="2096" height="1383" alt="image" src="https://github.com/user-attachments/assets/8ee06b31-d492-4add-bd60-8b60d8b88357" />
41
+
39
42
  ## What is this?
40
43
 
41
- **lite-kits** enhances spec-driven development workflows built on [GitHub Spec-Kit](https://github.com/github/spec-kit).
44
+ **`lite-kits`** adds modular enhancement kits to vanilla spec-driven development workflows built on [GitHub Spec-Kit](https://github.com/github/spec-kit).
42
45
 
43
46
  Spec-Kit is a framework for AI-driven collaborative development (spec → plan → tasks → implement) using markdown prompts and scripts. Think "vibe coding" but with structure.
44
47
 
@@ -48,7 +51,63 @@ Spec-Kit is a framework for AI-driven collaborative development (spec → plan
48
51
  - 🔧 **git-kit** - Smart git workflows (`/commit`, `/pr`, `/cleanup`)
49
52
  - 🤝 **multiagent-kit** - Multi-agent coordination (`/sync`, collaboration directories)
50
53
 
51
- Each kit installs `.md` prompt files for AI assistants (Claude Code, GitHub Copilot, Cursor) and optional scripts.
54
+ Each kit installs `.md` prompt files for AI assistants (Claude Code, GitHub Copilot, Copilot CLI) and optional scripts.
55
+
56
+ ## Installation
57
+
58
+ ### Prerequisites
59
+
60
+ 1. **GitHub Spec-Kit** - Install the `specify` CLI tool:
61
+ ```bash
62
+ # See: https://github.com/github/spec-kit
63
+ npm install -g @github/specify
64
+ # Or use pipx, etc.
65
+ ```
66
+
67
+ 2. **Create a spec-kit project** (if you don't have one):
68
+ ```bash
69
+ specify init my-project
70
+ cd my-project
71
+ ```
72
+
73
+ 3. **Python 3.11+** - For lite-kits itself
74
+
75
+ 4. **AI Assistant** - At least one: GitHub Copilot, GitHub Copilot CLI, Claude Code, Claude Code VSCode Extension
76
+
77
+ ### Install lite-kits
78
+
79
+ **Via pip** (when published):
80
+ ```bash
81
+ pip install lite-kits
82
+ ```
83
+
84
+ **From source** (current):
85
+ ```bash
86
+ # Clone repository
87
+ git clone https://github.com/tmorgan181/lite-kits.git
88
+ cd lite-kits
89
+
90
+ # Build the package
91
+ uv build
92
+
93
+ # Install with uv (recommended)
94
+ uv tool install dist/lite_kits-0.1.0-py3-none-any.whl
95
+
96
+ # Or with pip
97
+ pip install dist/lite_kits-0.1.0-py3-none-any.whl
98
+ ```
99
+
100
+ ## ✨ Beautiful CLI Experience
101
+
102
+ **lite-kits** v0.1.1 features a stunning ASCII banner system with UV-inspired modern CLI patterns:
103
+
104
+ - 🎨 **Beautiful ASCII Art** - LITE-KITS branding with professional charm
105
+ - ⚡ **Smart Display Modes** - Static banners for daily use, animated for special moments
106
+ - 🚀 **UV-Style Commands** - Modern global options (`--version/-V`, `--quiet/-q`, `--verbose/-v`)
107
+ - 📊 **Professional Tables** - Clean information displays and status reports
108
+ - 🎯 **Context-Aware** - Shows installed kits and project status intelligently
109
+
110
+ **Vibe coding with professional polish!** ✨
52
111
 
53
112
  ## Key Features
54
113
 
@@ -103,50 +162,6 @@ specs/NNN-feature/collaboration/
103
162
  - PR Workflow Guide - How AI agents create pull requests
104
163
  - Git Worktrees Protocol - Parallel development with worktrees
105
164
 
106
- ## Installation
107
-
108
- ### Prerequisites
109
-
110
- 1. **GitHub Spec-Kit** - Install the `specify` CLI tool:
111
- ```bash
112
- # See: https://github.com/github/spec-kit
113
- npm install -g @github/specify
114
- # Or use pipx, etc.
115
- ```
116
-
117
- 2. **Create a spec-kit project** (if you don't have one):
118
- ```bash
119
- specify init my-project
120
- cd my-project
121
- ```
122
-
123
- 3. **Python 3.11+** - For lite-kits itself
124
-
125
- 4. **AI Assistant** - At least one: Claude Code, GitHub Copilot, or Cursor
126
-
127
- ### Install lite-kits
128
-
129
- **Via pip** (when published):
130
- ```bash
131
- pip install lite-kits
132
- ```
133
-
134
- **From source** (current):
135
- ```bash
136
- # Clone repository
137
- git clone https://github.com/tmorgan181/lite-kits.git
138
- cd lite-kits
139
-
140
- # Build the package
141
- uv build
142
-
143
- # Install with uv (recommended)
144
- uv tool install dist/lite_kits-0.1.0-py3-none-any.whl
145
-
146
- # Or with pip
147
- pip install dist/lite_kits-0.1.0-py3-none-any.whl
148
- ```
149
-
150
165
  ## Quick Start
151
166
 
152
167
  ### 1. Add kits to your spec-kit project
@@ -190,34 +205,51 @@ lite-kits add --here --recommended # Add project + git kits
190
205
 
191
206
  ### CLI Commands
192
207
 
208
+ **Beautiful Banner Experience:**
209
+ ```bash
210
+ # Welcome screen with static banner + quick start
211
+ lite-kits # Show banner and quick start guide
212
+
213
+ # Animated celebration banner
214
+ lite-kits --banner # Special animated ASCII art
215
+
216
+ # Banner integrated into all commands
217
+ lite-kits status # Beautiful status display
218
+ lite-kits info # Professional info tables
219
+ ```
220
+
193
221
  **Kit Management:**
194
222
  ```bash
195
- # Add kits to a project
196
- lite-kits add --here --recommended # Add project + git kits
197
- lite-kits add --here --kit project # Add specific kit
198
- lite-kits add --here --dry-run --recommended # Preview changes
223
+ # Add kits to a project (working directory by default)
224
+ lite-kits add --recommended # Add project + git kits
225
+ lite-kits add --kit project # Add specific kit
226
+ lite-kits add --dry-run --recommended # Preview changes
227
+ lite-kits add --directory /path/to/project # Specify different directory
199
228
 
200
- # Check status
201
- lite-kits status --here # Show installed kits
229
+ # Check status with beautiful display
230
+ lite-kits status # Show installed kits with banner
202
231
 
203
232
  # Validate installation
204
- lite-kits validate --here # Verify kit installation
233
+ lite-kits validate # Verify kit installation
205
234
 
206
235
  # Remove kits
207
- lite-kits remove --here --kit git # Remove specific kit
208
- lite-kits remove --here --all # Remove all kits
236
+ lite-kits remove --kit git # Remove specific kit
237
+ lite-kits remove --all # Remove all kits
209
238
  ```
210
239
 
211
240
  **Package Management:**
212
241
  ```bash
213
- # Get package info
242
+ # Get package info with professional tables
214
243
  lite-kits info # Show version, kits, quick start
215
244
 
216
245
  # Uninstall instructions
217
246
  lite-kits uninstall # How to remove package
218
247
 
219
- # Version
220
- lite-kits --version # Show version only
248
+ # Version and global options (UV-style)
249
+ lite-kits --version / -V # Show version only
250
+ lite-kits --quiet / -q # Suppress banners
251
+ lite-kits --verbose / -v # Extra output
252
+ lite-kits --directory <path> # Set working directory
221
253
  ```
222
254
 
223
255
  ### Git Workflow Example
@@ -1,16 +1,18 @@
1
- # lite-kits
1
+ # 🌈 LITE-KITS 🎒
2
2
 
3
- **Lightweight enhancement kits for spec-driven development**
4
-
5
- Add modular enhancement kits to vanilla [GitHub Spec-Kit](https://github.com/github/spec-kit) projects without forking or replacing core files.
6
-
7
- [![Version](https://img.shields.io/badge/version-0.1.0-blue.svg)](https://github.com/tmorgan181/lite-kits)
3
+ [![Version](https://img.shields.io/badge/version-0.1.1-blue.svg)](https://github.com/tmorgan181/lite-kits/releases/tag/v0.1.1)
8
4
  [![Python](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
5
+ [![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
6
+ [![Spec-Kit](https://img.shields.io/badge/spec--kit-compatible-purple.svg)](https://github.com/github/spec-kit)
9
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10
8
 
9
+ **Lightweight enhancement kits for spec-driven development.**
10
+
11
+ <img width="2096" height="1383" alt="image" src="https://github.com/user-attachments/assets/8ee06b31-d492-4add-bd60-8b60d8b88357" />
12
+
11
13
  ## What is this?
12
14
 
13
- **lite-kits** enhances spec-driven development workflows built on [GitHub Spec-Kit](https://github.com/github/spec-kit).
15
+ **`lite-kits`** adds modular enhancement kits to vanilla spec-driven development workflows built on [GitHub Spec-Kit](https://github.com/github/spec-kit).
14
16
 
15
17
  Spec-Kit is a framework for AI-driven collaborative development (spec → plan → tasks → implement) using markdown prompts and scripts. Think "vibe coding" but with structure.
16
18
 
@@ -20,7 +22,63 @@ Spec-Kit is a framework for AI-driven collaborative development (spec → plan
20
22
  - 🔧 **git-kit** - Smart git workflows (`/commit`, `/pr`, `/cleanup`)
21
23
  - 🤝 **multiagent-kit** - Multi-agent coordination (`/sync`, collaboration directories)
22
24
 
23
- Each kit installs `.md` prompt files for AI assistants (Claude Code, GitHub Copilot, Cursor) and optional scripts.
25
+ Each kit installs `.md` prompt files for AI assistants (Claude Code, GitHub Copilot, Copilot CLI) and optional scripts.
26
+
27
+ ## Installation
28
+
29
+ ### Prerequisites
30
+
31
+ 1. **GitHub Spec-Kit** - Install the `specify` CLI tool:
32
+ ```bash
33
+ # See: https://github.com/github/spec-kit
34
+ npm install -g @github/specify
35
+ # Or use pipx, etc.
36
+ ```
37
+
38
+ 2. **Create a spec-kit project** (if you don't have one):
39
+ ```bash
40
+ specify init my-project
41
+ cd my-project
42
+ ```
43
+
44
+ 3. **Python 3.11+** - For lite-kits itself
45
+
46
+ 4. **AI Assistant** - At least one: GitHub Copilot, GitHub Copilot CLI, Claude Code, Claude Code VSCode Extension
47
+
48
+ ### Install lite-kits
49
+
50
+ **Via pip** (when published):
51
+ ```bash
52
+ pip install lite-kits
53
+ ```
54
+
55
+ **From source** (current):
56
+ ```bash
57
+ # Clone repository
58
+ git clone https://github.com/tmorgan181/lite-kits.git
59
+ cd lite-kits
60
+
61
+ # Build the package
62
+ uv build
63
+
64
+ # Install with uv (recommended)
65
+ uv tool install dist/lite_kits-0.1.0-py3-none-any.whl
66
+
67
+ # Or with pip
68
+ pip install dist/lite_kits-0.1.0-py3-none-any.whl
69
+ ```
70
+
71
+ ## ✨ Beautiful CLI Experience
72
+
73
+ **lite-kits** v0.1.1 features a stunning ASCII banner system with UV-inspired modern CLI patterns:
74
+
75
+ - 🎨 **Beautiful ASCII Art** - LITE-KITS branding with professional charm
76
+ - ⚡ **Smart Display Modes** - Static banners for daily use, animated for special moments
77
+ - 🚀 **UV-Style Commands** - Modern global options (`--version/-V`, `--quiet/-q`, `--verbose/-v`)
78
+ - 📊 **Professional Tables** - Clean information displays and status reports
79
+ - 🎯 **Context-Aware** - Shows installed kits and project status intelligently
80
+
81
+ **Vibe coding with professional polish!** ✨
24
82
 
25
83
  ## Key Features
26
84
 
@@ -75,50 +133,6 @@ specs/NNN-feature/collaboration/
75
133
  - PR Workflow Guide - How AI agents create pull requests
76
134
  - Git Worktrees Protocol - Parallel development with worktrees
77
135
 
78
- ## Installation
79
-
80
- ### Prerequisites
81
-
82
- 1. **GitHub Spec-Kit** - Install the `specify` CLI tool:
83
- ```bash
84
- # See: https://github.com/github/spec-kit
85
- npm install -g @github/specify
86
- # Or use pipx, etc.
87
- ```
88
-
89
- 2. **Create a spec-kit project** (if you don't have one):
90
- ```bash
91
- specify init my-project
92
- cd my-project
93
- ```
94
-
95
- 3. **Python 3.11+** - For lite-kits itself
96
-
97
- 4. **AI Assistant** - At least one: Claude Code, GitHub Copilot, or Cursor
98
-
99
- ### Install lite-kits
100
-
101
- **Via pip** (when published):
102
- ```bash
103
- pip install lite-kits
104
- ```
105
-
106
- **From source** (current):
107
- ```bash
108
- # Clone repository
109
- git clone https://github.com/tmorgan181/lite-kits.git
110
- cd lite-kits
111
-
112
- # Build the package
113
- uv build
114
-
115
- # Install with uv (recommended)
116
- uv tool install dist/lite_kits-0.1.0-py3-none-any.whl
117
-
118
- # Or with pip
119
- pip install dist/lite_kits-0.1.0-py3-none-any.whl
120
- ```
121
-
122
136
  ## Quick Start
123
137
 
124
138
  ### 1. Add kits to your spec-kit project
@@ -162,34 +176,51 @@ lite-kits add --here --recommended # Add project + git kits
162
176
 
163
177
  ### CLI Commands
164
178
 
179
+ **Beautiful Banner Experience:**
180
+ ```bash
181
+ # Welcome screen with static banner + quick start
182
+ lite-kits # Show banner and quick start guide
183
+
184
+ # Animated celebration banner
185
+ lite-kits --banner # Special animated ASCII art
186
+
187
+ # Banner integrated into all commands
188
+ lite-kits status # Beautiful status display
189
+ lite-kits info # Professional info tables
190
+ ```
191
+
165
192
  **Kit Management:**
166
193
  ```bash
167
- # Add kits to a project
168
- lite-kits add --here --recommended # Add project + git kits
169
- lite-kits add --here --kit project # Add specific kit
170
- lite-kits add --here --dry-run --recommended # Preview changes
194
+ # Add kits to a project (working directory by default)
195
+ lite-kits add --recommended # Add project + git kits
196
+ lite-kits add --kit project # Add specific kit
197
+ lite-kits add --dry-run --recommended # Preview changes
198
+ lite-kits add --directory /path/to/project # Specify different directory
171
199
 
172
- # Check status
173
- lite-kits status --here # Show installed kits
200
+ # Check status with beautiful display
201
+ lite-kits status # Show installed kits with banner
174
202
 
175
203
  # Validate installation
176
- lite-kits validate --here # Verify kit installation
204
+ lite-kits validate # Verify kit installation
177
205
 
178
206
  # Remove kits
179
- lite-kits remove --here --kit git # Remove specific kit
180
- lite-kits remove --here --all # Remove all kits
207
+ lite-kits remove --kit git # Remove specific kit
208
+ lite-kits remove --all # Remove all kits
181
209
  ```
182
210
 
183
211
  **Package Management:**
184
212
  ```bash
185
- # Get package info
213
+ # Get package info with professional tables
186
214
  lite-kits info # Show version, kits, quick start
187
215
 
188
216
  # Uninstall instructions
189
217
  lite-kits uninstall # How to remove package
190
218
 
191
- # Version
192
- lite-kits --version # Show version only
219
+ # Version and global options (UV-style)
220
+ lite-kits --version / -V # Show version only
221
+ lite-kits --quiet / -q # Suppress banners
222
+ lite-kits --verbose / -v # Extra output
223
+ lite-kits --directory <path> # Set working directory
193
224
  ```
194
225
 
195
226
  ### Git Workflow Example
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "lite-kits"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Lightweight enhancement kits for vanilla dev tools (spec-kit, etc.)"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -24,8 +24,9 @@ classifiers = [
24
24
  ]
25
25
 
26
26
  dependencies = [
27
- "typer[all]>=0.9.0",
27
+ "typer>=0.9.0",
28
28
  "rich>=13.0.0",
29
+ "pyyaml>=6.0.0",
29
30
  ]
30
31
 
31
32
  [project.optional-dependencies]
@@ -1,9 +1,9 @@
1
- """
2
- spec-kit-multiagent: Lightweight multi-agent coordination add-on for GitHub spec-kit
3
-
4
- This package adds multi-agent coordination capabilities to vanilla spec-kit projects
5
- without forking or replacing any core files.
6
- """
7
-
8
- __version__ = "0.1.0"
9
- __all__ = ["__version__"]
1
+ """
2
+ spec-kit-multiagent: Lightweight multi-agent coordination add-on for GitHub spec-kit
3
+
4
+ This package adds multi-agent coordination capabilities to vanilla spec-kit projects
5
+ without forking or replacing any core files.
6
+ """
7
+
8
+ __version__ = "0.1.0"
9
+ __all__ = ["__version__"]