lite-kits 0.1.0__py3-none-any.whl → 0.1.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.
- lite_kits/__init__.py +9 -9
- lite_kits/cli.py +170 -155
- lite_kits/core/__init__.py +13 -0
- lite_kits/core/banner.py +160 -0
- lite_kits/{installer.py → core/installer.py} +47 -27
- lite_kits/core/manifest.py +146 -0
- lite_kits/kits/README.md +9 -10
- lite_kits/kits/dev/README.md +241 -0
- lite_kits/kits/dev/claude/commands/audit.md +143 -0
- lite_kits/kits/dev/claude/commands/cleanup.md +361 -0
- lite_kits/kits/dev/claude/commands/commit.md +612 -0
- lite_kits/kits/dev/claude/commands/orient.md +146 -0
- lite_kits/kits/dev/claude/commands/pr.md +593 -0
- lite_kits/kits/dev/claude/commands/review.md +202 -0
- lite_kits/kits/dev/claude/commands/stats.md +162 -0
- lite_kits/kits/dev/github/prompts/audit.prompt.md +143 -0
- lite_kits/kits/dev/github/prompts/cleanup.prompt.md +382 -0
- lite_kits/kits/dev/github/prompts/commit.prompt.md +591 -0
- lite_kits/kits/dev/github/prompts/orient.prompt.md +150 -0
- lite_kits/kits/dev/github/prompts/pr.prompt.md +603 -0
- lite_kits/kits/dev/github/prompts/review.prompt.md +202 -0
- lite_kits/kits/dev/github/prompts/stats.prompt.md +163 -0
- lite_kits/kits/git/README.md +59 -68
- lite_kits/kits/git/claude/commands/review.md +202 -0
- lite_kits/kits/git/github/prompts/review.prompt.md +202 -0
- lite_kits/kits/kits.yaml +180 -0
- lite_kits/kits/multiagent/README.md +26 -15
- lite_kits/kits/multiagent/memory/pr-workflow-guide.md +1 -7
- lite_kits/kits/project/README.md +6 -22
- lite_kits/kits/project/claude/commands/audit.md +143 -0
- lite_kits/kits/project/claude/commands/orient.md +29 -46
- lite_kits/kits/project/claude/commands/review.md +112 -0
- lite_kits/kits/project/claude/commands/stats.md +162 -0
- lite_kits/kits/project/github/prompts/audit.prompt.md +143 -0
- lite_kits/kits/project/github/prompts/orient.prompt.md +33 -46
- lite_kits/kits/project/github/prompts/review.prompt.md +112 -0
- lite_kits/kits/project/github/prompts/stats.prompt.md +163 -0
- {lite_kits-0.1.0.dist-info → lite_kits-0.1.1.dist-info}/METADATA +98 -66
- lite_kits-0.1.1.dist-info/RECORD +58 -0
- lite_kits-0.1.0.dist-info/RECORD +0 -31
- {lite_kits-0.1.0.dist-info → lite_kits-0.1.1.dist-info}/WHEEL +0 -0
- {lite_kits-0.1.0.dist-info → lite_kits-0.1.1.dist-info}/entry_points.txt +0 -0
- {lite_kits-0.1.0.dist-info → lite_kits-0.1.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: lite-kits
|
3
|
-
Version: 0.1.
|
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
|
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
|
-
#
|
30
|
+
# 🌈 LITE-KITS 🎒
|
30
31
|
|
31
|
-
|
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
|
-
[](https://github.com/tmorgan181/lite-kits)
|
32
|
+
[](https://github.com/tmorgan181/lite-kits/releases/tag/v0.1.1)
|
36
33
|
[](https://www.python.org/downloads/)
|
34
|
+
[](https://github.com/astral-sh/uv)
|
35
|
+
[](https://github.com/github/spec-kit)
|
37
36
|
[](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
|
-
|
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,
|
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 --
|
197
|
-
lite-kits add --
|
198
|
-
lite-kits add --
|
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
|
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
|
233
|
+
lite-kits validate # Verify kit installation
|
205
234
|
|
206
235
|
# Remove kits
|
207
|
-
lite-kits remove --
|
208
|
-
lite-kits remove --
|
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
|
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
|
@@ -0,0 +1,58 @@
|
|
1
|
+
lite_kits/__init__.py,sha256=nYzw4h7gPO-7mvFLEsesyaVbtFd6lVfWvVQupaspVC4,282
|
2
|
+
lite_kits/cli.py,sha256=wcygfF8uU6Xdfpe7c1m2Sosu1rGsruwjBY5I0qQRbrE,17087
|
3
|
+
lite_kits/core/__init__.py,sha256=EoFPpn3bSjxTQ8dvO0Kw3HB2G_ApfWKdwcYoKg-ynOA,333
|
4
|
+
lite_kits/core/banner.py,sha256=3A7Sg5X9EKiHN9cbEFXtzOfPbM85CQex7GIpwd0bGUg,6592
|
5
|
+
lite_kits/core/installer.py,sha256=cWh7QEu6fnLnvpJHu9b3sV6sKJdzSVoO4Cmu4p2imuM,18729
|
6
|
+
lite_kits/core/manifest.py,sha256=vj79Jb6FsnzsawLV8TXyReBcNCuIgqsd65AmlsHeU-0,4262
|
7
|
+
lite_kits/kits/README.md,sha256=pSPBQPXvqHM6aWC3qTyqXsySGrP5SAsRalHDQdU0tZE,5850
|
8
|
+
lite_kits/kits/kits.yaml,sha256=Fp49OjDz7aNDO_YrhzGBXWu8m8ogXuZv9J_J7Q05x0E,5284
|
9
|
+
lite_kits/kits/dev/README.md,sha256=5qGTHH_gecNlGtnNN-oEEQmlbrMtz4Du3_EngPfhW-c,6775
|
10
|
+
lite_kits/kits/dev/claude/commands/audit.md,sha256=g-YMe4GaSx7qxXBE5DO7jB-RmAX-zsac9Hwd-RRbGj4,3942
|
11
|
+
lite_kits/kits/dev/claude/commands/cleanup.md,sha256=0t8JP9h92ADf-rOYQGVzabEEWLt7J7LG_S0WLp4eBKM,9466
|
12
|
+
lite_kits/kits/dev/claude/commands/commit.md,sha256=BwzuxzwZa3TpfQqzkgYgykWkJWWdK2fm2dUdzOLsSNY,17128
|
13
|
+
lite_kits/kits/dev/claude/commands/orient.md,sha256=s04dHQO9kN8EZs5vVXm9dFphdJHVgt3nAhqOalhzpHQ,4936
|
14
|
+
lite_kits/kits/dev/claude/commands/pr.md,sha256=y96YrDvvalpMD-qsRLiWeGU64ddsTjEmKoc_xtbdIAY,14745
|
15
|
+
lite_kits/kits/dev/claude/commands/review.md,sha256=5VlZ6A4jnWDaYjCYy5Sn0ZO7Yji-oBN_sM4FH9ZD6aQ,6310
|
16
|
+
lite_kits/kits/dev/claude/commands/stats.md,sha256=tkxBieONRzQJ7Jv-EGpTpX1KuT2XE9K9nwhJcq88Y_U,3851
|
17
|
+
lite_kits/kits/dev/github/prompts/audit.prompt.md,sha256=BeyFTTROPNYCG1AI0FqNb_xobZ6v5fVyFF2-KafAMSk,4376
|
18
|
+
lite_kits/kits/dev/github/prompts/cleanup.prompt.md,sha256=jExKnbFC_TBKQ1L4dwfVMXvHQ0odr-A0yNdYkh1GKR4,11123
|
19
|
+
lite_kits/kits/dev/github/prompts/commit.prompt.md,sha256=dO2dxLfaiNtgZ9u0jwsOVAG6lc7o7DPJkQVPL038p3w,16644
|
20
|
+
lite_kits/kits/dev/github/prompts/orient.prompt.md,sha256=PhtME5R11rR_db80W37vhEX2KhcVj9TcAYPKUQWF1uw,5336
|
21
|
+
lite_kits/kits/dev/github/prompts/pr.prompt.md,sha256=GLG76yxp1buKVojgC81nmvQqg1s1UlLGwOK6qxYkd0o,16011
|
22
|
+
lite_kits/kits/dev/github/prompts/review.prompt.md,sha256=-p2D--_fVrIezzJfq2rq2GL-zflkhT58ziWnkP4sGzI,6350
|
23
|
+
lite_kits/kits/dev/github/prompts/stats.prompt.md,sha256=rN4-aHfrqd7ITXwyxKxF1FVP-rDl7f8YYjKL818lNnU,4295
|
24
|
+
lite_kits/kits/git/README.md,sha256=ZOjWGYKTAEqgw6oYoy-X62MiiViQ6u3fz0Q1Rf6iVmo,9159
|
25
|
+
lite_kits/kits/git/claude/commands/cleanup.md,sha256=0t8JP9h92ADf-rOYQGVzabEEWLt7J7LG_S0WLp4eBKM,9466
|
26
|
+
lite_kits/kits/git/claude/commands/commit.md,sha256=BwzuxzwZa3TpfQqzkgYgykWkJWWdK2fm2dUdzOLsSNY,17128
|
27
|
+
lite_kits/kits/git/claude/commands/pr.md,sha256=y96YrDvvalpMD-qsRLiWeGU64ddsTjEmKoc_xtbdIAY,14745
|
28
|
+
lite_kits/kits/git/claude/commands/review.md,sha256=5VlZ6A4jnWDaYjCYy5Sn0ZO7Yji-oBN_sM4FH9ZD6aQ,6310
|
29
|
+
lite_kits/kits/git/github/prompts/cleanup.prompt.md,sha256=jExKnbFC_TBKQ1L4dwfVMXvHQ0odr-A0yNdYkh1GKR4,11123
|
30
|
+
lite_kits/kits/git/github/prompts/commit.prompt.md,sha256=dO2dxLfaiNtgZ9u0jwsOVAG6lc7o7DPJkQVPL038p3w,16644
|
31
|
+
lite_kits/kits/git/github/prompts/pr.prompt.md,sha256=GLG76yxp1buKVojgC81nmvQqg1s1UlLGwOK6qxYkd0o,16011
|
32
|
+
lite_kits/kits/git/github/prompts/review.prompt.md,sha256=-p2D--_fVrIezzJfq2rq2GL-zflkhT58ziWnkP4sGzI,6350
|
33
|
+
lite_kits/kits/git/scripts/bash/get-git-context.sh,sha256=VCN7jSqGBGFc38lwZLXgw-0bkp6mk-LsQSIa3JBK8Wk,5515
|
34
|
+
lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1,sha256=tESwvkEMB4l_KZULWqH6AZyIf2xAcsfOkk65pxxSMN4,7034
|
35
|
+
lite_kits/kits/multiagent/README.md,sha256=Dh3iwagiDGPK0ArgTZgmwIXp_yg_pGsQfslxjkkv6JU,11658
|
36
|
+
lite_kits/kits/multiagent/claude/commands/sync.md,sha256=YN5T5DcbFjn2JaZwcNLRf7AhlhWKf3skxYvXS1pBglE,9124
|
37
|
+
lite_kits/kits/multiagent/github/prompts/sync.prompt.md,sha256=xDg-K65PGKH3CVvpJXyl8ABiEbb3yHxTbSrdzksNus4,9200
|
38
|
+
lite_kits/kits/multiagent/memory/git-worktrees-protocol.md,sha256=JfGtvIk0RqG5wLF2OrKImnz4v8nqq1P77scYLHquKfs,8878
|
39
|
+
lite_kits/kits/multiagent/memory/parallel-work-protocol.md,sha256=viYOGLolGGfex4YOrTYBIKZfYRrb5gENMpbORMYZcmE,11047
|
40
|
+
lite_kits/kits/multiagent/memory/pr-workflow-guide.md,sha256=f48rLo7Ha5KAza_ElV7LUADRSK-h8JWRxiJg_tBZRik,6962
|
41
|
+
lite_kits/kits/multiagent/templates/decision.md,sha256=If7rgke-MXtC2GgPI5agzBFMtO6SYSf2azsdp2VPycM,1653
|
42
|
+
lite_kits/kits/multiagent/templates/handoff.md,sha256=5av2s_AKmMHjZBjoxDZRw8cvDrJ-gFq-oK2J2yEY2bw,1979
|
43
|
+
lite_kits/kits/multiagent/templates/session-log.md,sha256=C4Gw1jQSYagEE4eXJOZYDmeMrJZEO8GdS2jfZCMTjTk,1297
|
44
|
+
lite_kits/kits/multiagent/templates/collaboration-structure/README.md,sha256=eJW2rEVejsbcl7obb-U-144XNrYGNbQcjpoQXWQrEQM,4618
|
45
|
+
lite_kits/kits/project/README.md,sha256=PFuvuntV_LBetoVmSPea5dGKgL8myKbJn5AJWmLxfUo,6580
|
46
|
+
lite_kits/kits/project/claude/commands/audit.md,sha256=g-YMe4GaSx7qxXBE5DO7jB-RmAX-zsac9Hwd-RRbGj4,3942
|
47
|
+
lite_kits/kits/project/claude/commands/orient.md,sha256=s04dHQO9kN8EZs5vVXm9dFphdJHVgt3nAhqOalhzpHQ,4936
|
48
|
+
lite_kits/kits/project/claude/commands/review.md,sha256=GSERemMAI-xaqxtjviSE6vSi5aF0LR-DcEWZGdNI2Cc,3022
|
49
|
+
lite_kits/kits/project/claude/commands/stats.md,sha256=tkxBieONRzQJ7Jv-EGpTpX1KuT2XE9K9nwhJcq88Y_U,3851
|
50
|
+
lite_kits/kits/project/github/prompts/audit.prompt.md,sha256=BeyFTTROPNYCG1AI0FqNb_xobZ6v5fVyFF2-KafAMSk,4376
|
51
|
+
lite_kits/kits/project/github/prompts/orient.prompt.md,sha256=PhtME5R11rR_db80W37vhEX2KhcVj9TcAYPKUQWF1uw,5336
|
52
|
+
lite_kits/kits/project/github/prompts/review.prompt.md,sha256=kXyXDRLevRtKUIawQW3PjHMnen3PaaPGhHkJSdlqbq4,3101
|
53
|
+
lite_kits/kits/project/github/prompts/stats.prompt.md,sha256=rN4-aHfrqd7ITXwyxKxF1FVP-rDl7f8YYjKL818lNnU,4295
|
54
|
+
lite_kits-0.1.1.dist-info/METADATA,sha256=fKs1uTtVFhCB2e_-zfl98dkvdmq6gF__tZPrQRkkJ00,14157
|
55
|
+
lite_kits-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
56
|
+
lite_kits-0.1.1.dist-info/entry_points.txt,sha256=MjQtxMuAdI6KyJXqs8hJBpWh4cCMQr7QvCml-LbPXqI,48
|
57
|
+
lite_kits-0.1.1.dist-info/licenses/LICENSE,sha256=MoqU59QsofBi7yU0PMqbFGUlYJuuGz87RLpJ5IZ_ktI,1089
|
58
|
+
lite_kits-0.1.1.dist-info/RECORD,,
|
lite_kits-0.1.0.dist-info/RECORD
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
lite_kits/__init__.py,sha256=FRcHyqk0_smul3HDnwxB7hT4MbTftb-7Tjncqi7kzak,273
|
2
|
-
lite_kits/cli.py,sha256=ltojWTw-j7N5KcIz6qz36XQtQnppNzyMgCNK5r4W3zs,16342
|
3
|
-
lite_kits/installer.py,sha256=HiyBCTyE4keJMj3kYgiVgLUeA7nfMN9oDy01_JeARrg,17078
|
4
|
-
lite_kits/kits/README.md,sha256=BWXJmNX3LigE471577mLE415TbrCLXo7tcMqx8A5kss,5901
|
5
|
-
lite_kits/kits/git/README.md,sha256=lyhaC92iHWmbT-AITozUK9ZcHM92vkt6t5i9Bd0hPV0,9499
|
6
|
-
lite_kits/kits/git/claude/commands/cleanup.md,sha256=0t8JP9h92ADf-rOYQGVzabEEWLt7J7LG_S0WLp4eBKM,9466
|
7
|
-
lite_kits/kits/git/claude/commands/commit.md,sha256=BwzuxzwZa3TpfQqzkgYgykWkJWWdK2fm2dUdzOLsSNY,17128
|
8
|
-
lite_kits/kits/git/claude/commands/pr.md,sha256=y96YrDvvalpMD-qsRLiWeGU64ddsTjEmKoc_xtbdIAY,14745
|
9
|
-
lite_kits/kits/git/github/prompts/cleanup.prompt.md,sha256=jExKnbFC_TBKQ1L4dwfVMXvHQ0odr-A0yNdYkh1GKR4,11123
|
10
|
-
lite_kits/kits/git/github/prompts/commit.prompt.md,sha256=dO2dxLfaiNtgZ9u0jwsOVAG6lc7o7DPJkQVPL038p3w,16644
|
11
|
-
lite_kits/kits/git/github/prompts/pr.prompt.md,sha256=GLG76yxp1buKVojgC81nmvQqg1s1UlLGwOK6qxYkd0o,16011
|
12
|
-
lite_kits/kits/git/scripts/bash/get-git-context.sh,sha256=VCN7jSqGBGFc38lwZLXgw-0bkp6mk-LsQSIa3JBK8Wk,5515
|
13
|
-
lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1,sha256=tESwvkEMB4l_KZULWqH6AZyIf2xAcsfOkk65pxxSMN4,7034
|
14
|
-
lite_kits/kits/multiagent/README.md,sha256=6Av-YLO2lvuRPPIkEUxm8gQc2R2F96Uig899nBix8uQ,11094
|
15
|
-
lite_kits/kits/multiagent/claude/commands/sync.md,sha256=YN5T5DcbFjn2JaZwcNLRf7AhlhWKf3skxYvXS1pBglE,9124
|
16
|
-
lite_kits/kits/multiagent/github/prompts/sync.prompt.md,sha256=xDg-K65PGKH3CVvpJXyl8ABiEbb3yHxTbSrdzksNus4,9200
|
17
|
-
lite_kits/kits/multiagent/memory/git-worktrees-protocol.md,sha256=JfGtvIk0RqG5wLF2OrKImnz4v8nqq1P77scYLHquKfs,8878
|
18
|
-
lite_kits/kits/multiagent/memory/parallel-work-protocol.md,sha256=viYOGLolGGfex4YOrTYBIKZfYRrb5gENMpbORMYZcmE,11047
|
19
|
-
lite_kits/kits/multiagent/memory/pr-workflow-guide.md,sha256=EvxlgwRMzUhwi5pvZVvqY_Mi6rtN27WMeeYMVYyVkYk,7063
|
20
|
-
lite_kits/kits/multiagent/templates/decision.md,sha256=If7rgke-MXtC2GgPI5agzBFMtO6SYSf2azsdp2VPycM,1653
|
21
|
-
lite_kits/kits/multiagent/templates/handoff.md,sha256=5av2s_AKmMHjZBjoxDZRw8cvDrJ-gFq-oK2J2yEY2bw,1979
|
22
|
-
lite_kits/kits/multiagent/templates/session-log.md,sha256=C4Gw1jQSYagEE4eXJOZYDmeMrJZEO8GdS2jfZCMTjTk,1297
|
23
|
-
lite_kits/kits/multiagent/templates/collaboration-structure/README.md,sha256=eJW2rEVejsbcl7obb-U-144XNrYGNbQcjpoQXWQrEQM,4618
|
24
|
-
lite_kits/kits/project/README.md,sha256=k1Agn1FVqZBhzyGNr3H6CFdO1AIPud0P7VeHqYkUNL8,7140
|
25
|
-
lite_kits/kits/project/claude/commands/orient.md,sha256=BJ1LwnsbiRW0NtuHTL11RWJo0Ln25vy61lpmJFtBYvI,4775
|
26
|
-
lite_kits/kits/project/github/prompts/orient.prompt.md,sha256=g9SvUxIotZokLcZf47DWRbB1ftQJDYt0ssi-tY-19lE,5124
|
27
|
-
lite_kits-0.1.0.dist-info/METADATA,sha256=McttiFuzsMsr3lO_N7k6jEZwPjwRnb_fBo3NmHHB2DE,12310
|
28
|
-
lite_kits-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
29
|
-
lite_kits-0.1.0.dist-info/entry_points.txt,sha256=MjQtxMuAdI6KyJXqs8hJBpWh4cCMQr7QvCml-LbPXqI,48
|
30
|
-
lite_kits-0.1.0.dist-info/licenses/LICENSE,sha256=MoqU59QsofBi7yU0PMqbFGUlYJuuGz87RLpJ5IZ_ktI,1089
|
31
|
-
lite_kits-0.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|