lite-kits 0.1.1__py3-none-any.whl → 0.3.2__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 (63) hide show
  1. lite_kits/__init__.py +56 -4
  2. lite_kits/cli.py +782 -189
  3. lite_kits/core/__init__.py +6 -0
  4. lite_kits/core/banner.py +1 -1
  5. lite_kits/core/conflict_checker.py +115 -0
  6. lite_kits/core/detector.py +177 -0
  7. lite_kits/core/installer.py +242 -351
  8. lite_kits/core/manifest.py +146 -146
  9. lite_kits/core/validator.py +183 -0
  10. lite_kits/kits/README.md +6 -6
  11. lite_kits/kits/dev/README.md +241 -241
  12. lite_kits/kits/dev/{claude/commands → commands/.claude}/audit.md +143 -143
  13. lite_kits/kits/dev/{claude/commands → 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 +3 -4
  16. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/pr.md +1 -1
  17. lite_kits/kits/{git/claude/commands → dev/commands/.claude}/review.md +202 -202
  18. lite_kits/kits/{project/claude/commands → dev/commands/.claude}/stats.md +162 -162
  19. lite_kits/kits/{project/github/prompts → dev/commands/.github}/audit.prompt.md +143 -143
  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/dev/{github/prompts → commands/.github}/orient.prompt.md +3 -4
  23. lite_kits/kits/{git/github/prompts → dev/commands/.github}/pr.prompt.md +1 -1
  24. lite_kits/kits/{git/github/prompts → dev/commands/.github}/review.prompt.md +202 -202
  25. lite_kits/kits/dev/{github/prompts → commands/.github}/stats.prompt.md +163 -163
  26. lite_kits/kits/kits.yaml +497 -180
  27. lite_kits/kits/multiagent/README.md +6 -6
  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 -275
  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.2.dist-info/METADATA +259 -0
  38. lite_kits-0.3.2.dist-info/RECORD +41 -0
  39. {lite_kits-0.1.1.dist-info → lite_kits-0.3.2.dist-info}/licenses/LICENSE +21 -21
  40. lite_kits/kits/dev/claude/commands/commit.md +0 -612
  41. lite_kits/kits/dev/claude/commands/orient.md +0 -146
  42. lite_kits/kits/dev/claude/commands/pr.md +0 -593
  43. lite_kits/kits/dev/claude/commands/review.md +0 -202
  44. lite_kits/kits/dev/claude/commands/stats.md +0 -162
  45. lite_kits/kits/dev/github/prompts/audit.prompt.md +0 -143
  46. lite_kits/kits/dev/github/prompts/cleanup.prompt.md +0 -382
  47. lite_kits/kits/dev/github/prompts/commit.prompt.md +0 -591
  48. lite_kits/kits/dev/github/prompts/pr.prompt.md +0 -603
  49. lite_kits/kits/dev/github/prompts/review.prompt.md +0 -202
  50. lite_kits/kits/git/README.md +0 -365
  51. lite_kits/kits/git/claude/commands/cleanup.md +0 -361
  52. lite_kits/kits/git/scripts/bash/get-git-context.sh +0 -208
  53. lite_kits/kits/git/scripts/powershell/Get-GitContext.ps1 +0 -242
  54. lite_kits/kits/project/README.md +0 -228
  55. lite_kits/kits/project/claude/commands/audit.md +0 -143
  56. lite_kits/kits/project/claude/commands/review.md +0 -112
  57. lite_kits/kits/project/github/prompts/orient.prompt.md +0 -150
  58. lite_kits/kits/project/github/prompts/review.prompt.md +0 -112
  59. lite_kits/kits/project/github/prompts/stats.prompt.md +0 -163
  60. lite_kits-0.1.1.dist-info/METADATA +0 -447
  61. lite_kits-0.1.1.dist-info/RECORD +0 -58
  62. {lite_kits-0.1.1.dist-info → lite_kits-0.3.2.dist-info}/WHEEL +0 -0
  63. {lite_kits-0.1.1.dist-info → lite_kits-0.3.2.dist-info}/entry_points.txt +0 -0
lite_kits/__init__.py CHANGED
@@ -1,9 +1,61 @@
1
1
  """
2
- spec-kit-multiagent: Lightweight multi-agent coordination add-on for GitHub spec-kit
2
+ lite-kits: Lightweight enhancement kits for spec-driven development
3
3
 
4
- This package adds multi-agent coordination capabilities to vanilla spec-kit projects
4
+ This package adds productivity-enhancing slash commands to vanilla spec-kit projects
5
5
  without forking or replacing any core files.
6
6
  """
7
7
 
8
- __version__ = "0.1.0"
9
- __all__ = ["__version__"]
8
+ # Version
9
+ __version__ = "0.3.3"
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
+ ]