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.
- lite_kits/__init__.py +61 -9
- lite_kits/cli.py +788 -262
- lite_kits/core/__init__.py +19 -0
- lite_kits/core/banner.py +160 -0
- lite_kits/core/conflict_checker.py +115 -0
- lite_kits/core/detector.py +140 -0
- lite_kits/core/installer.py +322 -0
- lite_kits/core/manifest.py +146 -0
- lite_kits/core/validator.py +146 -0
- lite_kits/kits/README.md +14 -15
- lite_kits/kits/dev/README.md +241 -0
- lite_kits/kits/dev/commands/.claude/audit.md +143 -0
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/cleanup.md +2 -2
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/commit.md +2 -2
- lite_kits/kits/{project/claude/commands → dev/commands/.claude}/orient.md +30 -48
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/pr.md +1 -1
- lite_kits/kits/dev/commands/.claude/review.md +202 -0
- lite_kits/kits/dev/commands/.claude/stats.md +162 -0
- lite_kits/kits/dev/commands/.github/audit.prompt.md +143 -0
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/cleanup.prompt.md +2 -2
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/commit.prompt.md +2 -2
- lite_kits/kits/{project/github/prompts → dev/commands/.github}/orient.prompt.md +34 -48
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/pr.prompt.md +1 -1
- lite_kits/kits/dev/commands/.github/review.prompt.md +202 -0
- lite_kits/kits/dev/commands/.github/stats.prompt.md +163 -0
- lite_kits/kits/kits.yaml +497 -0
- lite_kits/kits/multiagent/README.md +28 -17
- lite_kits/kits/multiagent/{claude/commands → commands/.claude}/sync.md +331 -331
- lite_kits/kits/multiagent/{github/prompts → commands/.github}/sync.prompt.md +73 -69
- lite_kits/kits/multiagent/memory/git-worktrees-protocol.md +370 -370
- lite_kits/kits/multiagent/memory/parallel-work-protocol.md +536 -536
- lite_kits/kits/multiagent/memory/pr-workflow-guide.md +275 -281
- lite_kits/kits/multiagent/templates/collaboration-structure/README.md +166 -166
- lite_kits/kits/multiagent/templates/decision.md +79 -79
- lite_kits/kits/multiagent/templates/handoff.md +95 -95
- lite_kits/kits/multiagent/templates/session-log.md +68 -68
- lite_kits-0.3.1.dist-info/METADATA +259 -0
- lite_kits-0.3.1.dist-info/RECORD +41 -0
- {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/licenses/LICENSE +21 -21
- lite_kits/installer.py +0 -417
- lite_kits/kits/git/README.md +0 -374
- lite_kits/kits/git/scripts/bash/get-git-context.sh +0 -208
- lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +0 -242
- lite_kits/kits/project/README.md +0 -244
- lite_kits-0.1.0.dist-info/METADATA +0 -415
- lite_kits-0.1.0.dist-info/RECORD +0 -31
- {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/WHEEL +0 -0
- {lite_kits-0.1.0.dist-info → lite_kits-0.3.1.dist-info}/entry_points.txt +0 -0
lite_kits/__init__.py
CHANGED
@@ -1,9 +1,61 @@
|
|
1
|
-
"""
|
2
|
-
|
3
|
-
|
4
|
-
This package adds
|
5
|
-
without forking or replacing any core files.
|
6
|
-
"""
|
7
|
-
|
8
|
-
|
9
|
-
|
1
|
+
"""
|
2
|
+
lite-kits: Lightweight enhancement kits for spec-driven development
|
3
|
+
|
4
|
+
This package adds productivity-enhancing slash commands to vanilla spec-kit projects
|
5
|
+
without forking or replacing any core files.
|
6
|
+
"""
|
7
|
+
|
8
|
+
# Version
|
9
|
+
__version__ = "0.3.1"
|
10
|
+
|
11
|
+
# Package metadata
|
12
|
+
APP_NAME = "lite-kits"
|
13
|
+
APP_DESCRIPTION = "Quick start: lite-kits add • Get help: lite-kits help [COMMAND]"
|
14
|
+
REPOSITORY_URL = "https://github.com/tmorgan181/lite-kits"
|
15
|
+
LICENSE = "MIT"
|
16
|
+
|
17
|
+
# Kit identifiers
|
18
|
+
KIT_DEV = "dev"
|
19
|
+
KIT_MULTIAGENT = "multiagent"
|
20
|
+
KITS_ALL = [KIT_DEV, KIT_MULTIAGENT]
|
21
|
+
|
22
|
+
# Kit descriptions
|
23
|
+
KIT_DESC_DEV = "Solo development essentials: /orient, /commit, /pr, /review, /cleanup, /audit, /stats"
|
24
|
+
KIT_DESC_MULTIAGENT = "Multi-agent coordination: /sync, collaboration dirs, memory guides (EXPERIMENTAL)"
|
25
|
+
|
26
|
+
# Directory paths
|
27
|
+
DIR_CLAUDE_COMMANDS = r".claude\commands"
|
28
|
+
DIR_GITHUB_PROMPTS = r".github\prompts"
|
29
|
+
DIR_SPECIFY_MEMORY = r".specify\memory"
|
30
|
+
DIR_SPECIFY_SCRIPTS_BASH = r".specify\scripts\bash"
|
31
|
+
DIR_SPECIFY_SCRIPTS_POWERSHELL = r".specify\scripts\powershell"
|
32
|
+
DIR_SPECIFY_TEMPLATES = r".specify\templates"
|
33
|
+
|
34
|
+
# Spec-kit detection paths
|
35
|
+
SPEC_KIT_DIRS = [r".specify", r".claude", r".github\prompts"]
|
36
|
+
|
37
|
+
# Error messages
|
38
|
+
ERROR_NOT_SPEC_KIT = "does not appear to be a spec-kit project!"
|
39
|
+
ERROR_SPEC_KIT_HINT = r"Looking for one of: .specify\, .claude\, or .github\prompts"
|
40
|
+
|
41
|
+
__all__ = [
|
42
|
+
"__version__",
|
43
|
+
"APP_NAME",
|
44
|
+
"APP_DESCRIPTION",
|
45
|
+
"REPOSITORY_URL",
|
46
|
+
"LICENSE",
|
47
|
+
"KIT_DEV",
|
48
|
+
"KIT_MULTIAGENT",
|
49
|
+
"KITS_ALL",
|
50
|
+
"KIT_DESC_DEV",
|
51
|
+
"KIT_DESC_MULTIAGENT",
|
52
|
+
"DIR_CLAUDE_COMMANDS",
|
53
|
+
"DIR_GITHUB_PROMPTS",
|
54
|
+
"DIR_SPECIFY_MEMORY",
|
55
|
+
"DIR_SPECIFY_SCRIPTS_BASH",
|
56
|
+
"DIR_SPECIFY_SCRIPTS_POWERSHELL",
|
57
|
+
"DIR_SPECIFY_TEMPLATES",
|
58
|
+
"SPEC_KIT_DIRS",
|
59
|
+
"ERROR_NOT_SPEC_KIT",
|
60
|
+
"ERROR_SPEC_KIT_HINT",
|
61
|
+
]
|