lite-kits 0.1.0__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 (31) hide show
  1. lite_kits/__init__.py +9 -0
  2. lite_kits/cli.py +481 -0
  3. lite_kits/installer.py +417 -0
  4. lite_kits/kits/README.md +191 -0
  5. lite_kits/kits/git/README.md +374 -0
  6. lite_kits/kits/git/claude/commands/cleanup.md +361 -0
  7. lite_kits/kits/git/claude/commands/commit.md +612 -0
  8. lite_kits/kits/git/claude/commands/pr.md +593 -0
  9. lite_kits/kits/git/github/prompts/cleanup.prompt.md +382 -0
  10. lite_kits/kits/git/github/prompts/commit.prompt.md +591 -0
  11. lite_kits/kits/git/github/prompts/pr.prompt.md +603 -0
  12. lite_kits/kits/git/scripts/bash/get-git-context.sh +208 -0
  13. lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +242 -0
  14. lite_kits/kits/multiagent/README.md +395 -0
  15. lite_kits/kits/multiagent/claude/commands/sync.md +331 -0
  16. lite_kits/kits/multiagent/github/prompts/sync.prompt.md +331 -0
  17. lite_kits/kits/multiagent/memory/git-worktrees-protocol.md +370 -0
  18. lite_kits/kits/multiagent/memory/parallel-work-protocol.md +536 -0
  19. lite_kits/kits/multiagent/memory/pr-workflow-guide.md +281 -0
  20. lite_kits/kits/multiagent/templates/collaboration-structure/README.md +166 -0
  21. lite_kits/kits/multiagent/templates/decision.md +79 -0
  22. lite_kits/kits/multiagent/templates/handoff.md +95 -0
  23. lite_kits/kits/multiagent/templates/session-log.md +68 -0
  24. lite_kits/kits/project/README.md +244 -0
  25. lite_kits/kits/project/claude/commands/orient.md +163 -0
  26. lite_kits/kits/project/github/prompts/orient.prompt.md +163 -0
  27. lite_kits-0.1.0.dist-info/METADATA +415 -0
  28. lite_kits-0.1.0.dist-info/RECORD +31 -0
  29. lite_kits-0.1.0.dist-info/WHEEL +4 -0
  30. lite_kits-0.1.0.dist-info/entry_points.txt +2 -0
  31. lite_kits-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,415 @@
1
+ Metadata-Version: 2.4
2
+ Name: lite-kits
3
+ Version: 0.1.0
4
+ Summary: Lightweight enhancement kits for vanilla dev tools (spec-kit, etc.)
5
+ Project-URL: Homepage, https://github.com/tmorgan181/lite-kits
6
+ Project-URL: Documentation, https://github.com/tmorgan181/lite-kits#readme
7
+ Project-URL: Repository, https://github.com/tmorgan181/lite-kits
8
+ Project-URL: Issues, https://github.com/tmorgan181/lite-kits/issues
9
+ Author: lite-kits contributors
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: ai,development-workflow,enhancement,git,kits,spec-kit
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Python: >=3.11
21
+ Requires-Dist: rich>=13.0.0
22
+ Requires-Dist: typer[all]>=0.9.0
23
+ Provides-Extra: dev
24
+ Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
25
+ Requires-Dist: pytest>=7.0.0; extra == 'dev'
26
+ Requires-Dist: ruff>=0.1.0; extra == 'dev'
27
+ Description-Content-Type: text/markdown
28
+
29
+ # lite-kits
30
+
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)
36
+ [![Python](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
37
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
38
+
39
+ ## What is this?
40
+
41
+ **lite-kits** enhances spec-driven development workflows built on [GitHub Spec-Kit](https://github.com/github/spec-kit).
42
+
43
+ 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
+
45
+ **lite-kits** adds three optional enhancement kits to vanilla spec-kit projects:
46
+
47
+ - 🎯 **project-kit** - Agent orientation (`/orient` command)
48
+ - 🔧 **git-kit** - Smart git workflows (`/commit`, `/pr`, `/cleanup`)
49
+ - 🤝 **multiagent-kit** - Multi-agent coordination (`/sync`, collaboration directories)
50
+
51
+ Each kit installs `.md` prompt files for AI assistants (Claude Code, GitHub Copilot, Cursor) and optional scripts.
52
+
53
+ ## Key Features
54
+
55
+ ### 🔧 Git-Kit
56
+
57
+ Smart git workflow commands:
58
+
59
+ **`/commit`** - Intelligent commits with staging proposals
60
+ - Combined staging + commit message approval
61
+ - Multi-commit suggestions for large changesets
62
+ - Conventional commits with feature numbers
63
+ - Agent attribution tracking
64
+
65
+ **`/pr`** - Pull request creation with auto-push
66
+ - Automatic branch pushing before PR
67
+ - PR status checking (prevents duplicates)
68
+ - Smart description generation from commits
69
+ - Modular PR scope (only describes current work)
70
+
71
+ **`/cleanup`** - Safe branch cleanup
72
+ - Delete merged branches safely
73
+ - Optional remote deletion
74
+ - Current branch detection
75
+ - Protected branch safety
76
+
77
+ ### 🎯 Project-Kit
78
+
79
+ **`/orient`** - Agent orientation command
80
+ - Reads project documentation
81
+ - Checks current git state
82
+ - Determines agent role
83
+ - Provides concise context
84
+
85
+ ### 🤝 Multiagent-Kit
86
+
87
+ **`/sync`** - Multi-agent coordination status
88
+ - Visual sync status display
89
+ - Agent activity tracking
90
+ - Collaboration structure detection
91
+
92
+ **Collaboration directories** for multi-agent coordination:
93
+ ```
94
+ specs/NNN-feature/collaboration/
95
+ ├── active/ # Current work
96
+ │ ├── sessions/ # Work session logs
97
+ │ └── decisions/ # Handoffs, proposals
98
+ ├── archive/ # Historical (YYYY-MM/)
99
+ └── results/ # Completed deliverables
100
+ ```
101
+
102
+ **Memory guides**:
103
+ - PR Workflow Guide - How AI agents create pull requests
104
+ - Git Worktrees Protocol - Parallel development with worktrees
105
+
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
+ ## Quick Start
151
+
152
+ ### 1. Add kits to your spec-kit project
153
+
154
+ ```bash
155
+ cd your-spec-kit-project
156
+ lite-kits add --here --dry-run --recommended # Preview changes
157
+ lite-kits add --here --recommended # Add project + git kits
158
+ ```
159
+
160
+ **What gets added**:
161
+ - Git workflow commands (`/commit`, `/pr`, `/cleanup`)
162
+ - Project orientation command (`/orient`)
163
+ - Multi-agent coordination tools (`/sync`, collaboration structure) - optional
164
+ - Memory guides (PR workflow, git worktrees protocol) - optional
165
+
166
+ ### 2. Use the commands in your AI assistant
167
+
168
+ ```bash
169
+ # In Claude Code or GitHub Copilot
170
+ /orient # Get project context
171
+ /commit # Smart commit with staging
172
+ /pr # Create PR with auto-push
173
+ /cleanup # Clean up merged branches
174
+ /sync # Check multi-agent status
175
+ ```
176
+
177
+ ### 3. Start building
178
+
179
+ ```bash
180
+ # Standard spec-kit workflow with enhanced git commands
181
+ /specify Build a user authentication system
182
+ /plan
183
+ /tasks
184
+ /implement
185
+ /commit # Use smart commit
186
+ /pr # Auto-push and create PR
187
+ ```
188
+
189
+ ## Usage
190
+
191
+ ### CLI Commands
192
+
193
+ **Kit Management:**
194
+ ```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
199
+
200
+ # Check status
201
+ lite-kits status --here # Show installed kits
202
+
203
+ # Validate installation
204
+ lite-kits validate --here # Verify kit installation
205
+
206
+ # Remove kits
207
+ lite-kits remove --here --kit git # Remove specific kit
208
+ lite-kits remove --here --all # Remove all kits
209
+ ```
210
+
211
+ **Package Management:**
212
+ ```bash
213
+ # Get package info
214
+ lite-kits info # Show version, kits, quick start
215
+
216
+ # Uninstall instructions
217
+ lite-kits uninstall # How to remove package
218
+
219
+ # Version
220
+ lite-kits --version # Show version only
221
+ ```
222
+
223
+ ### Git Workflow Example
224
+
225
+ ```bash
226
+ # Make changes to your code
227
+
228
+ # Smart commit with combined staging + message approval
229
+ /commit
230
+ # Shows: staging plan + commit message in one prompt
231
+ # Options: y (approve), es (edit staging), em (edit message)
232
+
233
+ # Create PR (auto-pushes branch first!)
234
+ /pr
235
+ # Checks: No existing PR, pushes branch, creates PR
236
+ # Description: Only describes commits in THIS PR (modular scope)
237
+
238
+ # Clean up merged branches
239
+ /cleanup
240
+ # Safe deletion with protection for current/base/unmerged branches
241
+ # Optional: --remote flag to delete from remote too
242
+ ```
243
+
244
+ ### Multi-Agent Workflow Example
245
+
246
+ **Scenario**: Claude Code (backend) + GitHub Copilot (frontend) building a blog.
247
+
248
+ 1. **Claude Code**: Creates spec and plan
249
+ ```bash
250
+ /specify Build a blog platform with auth
251
+ /plan
252
+ ```
253
+
254
+ 2. **Claude Code**: Creates handoff document
255
+ ```
256
+ specs/002-blog/collaboration/active/decisions/agent-split.md
257
+ - Claude: Backend (API, database, auth)
258
+ - Copilot: Frontend (React, UI, components)
259
+ ```
260
+
261
+ 3. **Both agents**: Work in parallel with git worktrees
262
+ ```bash
263
+ # Claude
264
+ git worktree add ../blog-backend 002-blog
265
+
266
+ # Copilot
267
+ git worktree add ../blog-frontend 002-blog
268
+ ```
269
+
270
+ 4. **Both agents**: Commit with attribution
271
+ ```bash
272
+ /commit
273
+ # Message includes: via claude-sonnet-4.5 @ claude-code
274
+ ```
275
+
276
+ 5. **Check sync status**:
277
+ ```bash
278
+ /sync
279
+ # Shows: agent activity, collaboration status, recommendations
280
+ ```
281
+
282
+ 6. **Integration**: Test together, create PR with `/pr`
283
+
284
+ ## Architecture
285
+
286
+ ### Add-on Design (Not a Fork)
287
+
288
+ **lite-kits** is an **add-on** for vanilla spec-kit, not a fork or replacement:
289
+
290
+ - ✅ **Vanilla spec-kit stays vanilla** - Your `specify` workflow is unchanged
291
+ - ✅ **Get upstream updates** - Benefit from spec-kit improvements automatically
292
+ - ✅ **Modular kits** - Add/remove individual kits as needed
293
+ - ✅ **No file replacements** - Only adds new files, never modifies spec-kit core
294
+
295
+ ### What Gets Added
296
+
297
+ When you run `lite-kits add`, it installs `.md` prompt files and optional scripts:
298
+
299
+ **Kit commands** (markdown prompts for AI assistants):
300
+ - `.claude/commands/*.md` - Claude Code slash commands
301
+ - `.github/prompts/*.prompt.md` - GitHub Copilot prompt files
302
+
303
+ **Memory guides** (multiagent-kit only):
304
+ - `.specify/memory/pr-workflow-guide.md` - How AI agents should create PRs
305
+ - `.specify/memory/git-worktrees-protocol.md` - Parallel dev with worktrees
306
+
307
+ **Collaboration structure** (multiagent-kit only):
308
+ - `specs/NNN-feature/collaboration/` - Session logs, handoffs, decisions
309
+
310
+ **No modifications** to existing spec-kit files like `.specify/`, vanilla prompts, etc.
311
+
312
+ ## Project Structure
313
+
314
+ ```
315
+ lite-kits/
316
+ ├── src/lite_kits/
317
+ │ ├── __init__.py
318
+ │ ├── cli.py # CLI commands
319
+ │ ├── installer.py # Installation logic
320
+ │ └── kits/ # Enhancement kits
321
+ │ ├── git/ # Git workflow commands
322
+ │ ├── project/ # Project orientation
323
+ │ └── multiagent/ # Multi-agent coordination
324
+ ├── examples/ # Example projects
325
+ ├── docs/ # Documentation
326
+ ├── pyproject.toml # Package metadata
327
+ └── README.md
328
+ ```
329
+
330
+ ## Development
331
+
332
+ ### Setup
333
+
334
+ ```bash
335
+ # Clone repository
336
+ git clone https://github.com/tmorgan181/lite-kits.git
337
+ cd lite-kits
338
+
339
+ # Install with dev dependencies
340
+ uv tool install -e ".[dev]"
341
+ ```
342
+
343
+ ### Building
344
+
345
+ ```bash
346
+ # Build package
347
+ uv build
348
+
349
+ # Install locally
350
+ uv tool install dist/lite_kits-0.1.0-py3-none-any.whl
351
+ ```
352
+
353
+ ### Testing (TODO)
354
+
355
+ ```bash
356
+ pytest
357
+ pytest --cov=src/lite_kits
358
+ ```
359
+
360
+ ## Roadmap
361
+
362
+ ### ✅ Phase 1: Foundation (v0.1.0)
363
+ - [x] Package structure with constants and clean architecture
364
+ - [x] Kit-based modular architecture
365
+ - [x] Git-kit (/commit, /pr, /cleanup)
366
+ - [x] Project-kit (/orient)
367
+ - [x] Multiagent-kit (/sync, collaboration)
368
+ - [x] Cross-platform support (Bash + PowerShell)
369
+ - [x] Windows encoding fixes (ASCII-safe status indicators)
370
+ - [x] CLI with Kit Management and Package Management sections
371
+ - [x] Shell completion disabled (no profile modifications)
372
+ - [x] Proper pip/uv tool installation
373
+
374
+ ### Phase 2: Polish & Publish (Next - v0.2.0)
375
+ - [x] Complete CLI rebrand (`install` → `add`, proper flags)
376
+ - [x] Fix installer kit mappings (sync in multiagent, cleanup in git)
377
+ - [ ] Add examples directory with sample projects
378
+ - [ ] PyPI publication
379
+ - [ ] Documentation improvements (architecture docs, guides)
380
+
381
+ ### Phase 3: Expansion (Future - v0.3.0)
382
+ - [ ] Additional kits for other vanilla tools
383
+ - [ ] Template library expansion
384
+ - [ ] Test suite (pytest)
385
+ - [ ] CI/CD automation
386
+ - [ ] Plugin system for custom kits
387
+
388
+ ## Contributing
389
+
390
+ Contributions welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
391
+
392
+ ## License
393
+
394
+ MIT License - see [LICENSE](LICENSE) for details.
395
+
396
+ ## Related Projects
397
+
398
+ - [GitHub spec-kit](https://github.com/github/spec-kit) - Spec-driven development framework
399
+ - [Claude Code](https://claude.ai/code) - AI coding assistant
400
+ - [GitHub Copilot](https://github.com/features/copilot) - AI pair programmer
401
+
402
+ ## Support
403
+
404
+ - **Issues**: [GitHub Issues](https://github.com/tmorgan181/lite-kits/issues)
405
+ - **Discussions**: [GitHub Discussions](https://github.com/tmorgan181/lite-kits/discussions)
406
+
407
+ ## Acknowledgments
408
+
409
+ Built to enhance [GitHub Spec-Kit](https://github.com/github/spec-kit), a framework for spec-driven development with AI agents.
410
+
411
+ ---
412
+
413
+ **Status**: Alpha (v0.1.0) - APIs may change
414
+
415
+ **Philosophy**: Enhance, don't replace. lite-kits adds features to vanilla spec-kit without forking or modifying core files.
@@ -0,0 +1,31 @@
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,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ lite-kits = lite_kits.cli:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 spec-kit-multiagent contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.