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.
- lite_kits/__init__.py +56 -4
- lite_kits/cli.py +782 -189
- lite_kits/core/__init__.py +6 -0
- lite_kits/core/banner.py +1 -1
- lite_kits/core/conflict_checker.py +115 -0
- lite_kits/core/detector.py +177 -0
- lite_kits/core/installer.py +242 -351
- lite_kits/core/manifest.py +146 -146
- lite_kits/core/validator.py +183 -0
- lite_kits/kits/README.md +6 -6
- lite_kits/kits/dev/README.md +241 -241
- lite_kits/kits/dev/{claude/commands → commands/.claude}/audit.md +143 -143
- lite_kits/kits/dev/{claude/commands → 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 +3 -4
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/pr.md +1 -1
- lite_kits/kits/{git/claude/commands → dev/commands/.claude}/review.md +202 -202
- lite_kits/kits/{project/claude/commands → dev/commands/.claude}/stats.md +162 -162
- lite_kits/kits/{project/github/prompts → dev/commands/.github}/audit.prompt.md +143 -143
- 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/dev/{github/prompts → commands/.github}/orient.prompt.md +3 -4
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/pr.prompt.md +1 -1
- lite_kits/kits/{git/github/prompts → dev/commands/.github}/review.prompt.md +202 -202
- lite_kits/kits/dev/{github/prompts → commands/.github}/stats.prompt.md +163 -163
- lite_kits/kits/kits.yaml +497 -180
- lite_kits/kits/multiagent/README.md +6 -6
- 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 -275
- 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.2.dist-info/METADATA +259 -0
- lite_kits-0.3.2.dist-info/RECORD +41 -0
- {lite_kits-0.1.1.dist-info → lite_kits-0.3.2.dist-info}/licenses/LICENSE +21 -21
- lite_kits/kits/dev/claude/commands/commit.md +0 -612
- lite_kits/kits/dev/claude/commands/orient.md +0 -146
- lite_kits/kits/dev/claude/commands/pr.md +0 -593
- lite_kits/kits/dev/claude/commands/review.md +0 -202
- lite_kits/kits/dev/claude/commands/stats.md +0 -162
- lite_kits/kits/dev/github/prompts/audit.prompt.md +0 -143
- lite_kits/kits/dev/github/prompts/cleanup.prompt.md +0 -382
- lite_kits/kits/dev/github/prompts/commit.prompt.md +0 -591
- lite_kits/kits/dev/github/prompts/pr.prompt.md +0 -603
- lite_kits/kits/dev/github/prompts/review.prompt.md +0 -202
- lite_kits/kits/git/README.md +0 -365
- lite_kits/kits/git/claude/commands/cleanup.md +0 -361
- 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 -228
- lite_kits/kits/project/claude/commands/audit.md +0 -143
- lite_kits/kits/project/claude/commands/review.md +0 -112
- lite_kits/kits/project/github/prompts/orient.prompt.md +0 -150
- lite_kits/kits/project/github/prompts/review.prompt.md +0 -112
- lite_kits/kits/project/github/prompts/stats.prompt.md +0 -163
- lite_kits-0.1.1.dist-info/METADATA +0 -447
- lite_kits-0.1.1.dist-info/RECORD +0 -58
- {lite_kits-0.1.1.dist-info → lite_kits-0.3.2.dist-info}/WHEEL +0 -0
- {lite_kits-0.1.1.dist-info → lite_kits-0.3.2.dist-info}/entry_points.txt +0 -0
lite_kits/kits/kits.yaml
CHANGED
@@ -1,180 +1,497 @@
|
|
1
|
-
# Lite-Kits Manifest
|
2
|
-
#
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
#
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
1
|
+
# Lite-Kits Manifest
|
2
|
+
# Complete catalog of kits, commands, files, scripts, and supported platforms
|
3
|
+
# Version: 1.0
|
4
|
+
|
5
|
+
# ============================================================================
|
6
|
+
# METADATA
|
7
|
+
# ============================================================================
|
8
|
+
|
9
|
+
metadata:
|
10
|
+
manifest_version: "1.0"
|
11
|
+
last_updated: "2025-10-09"
|
12
|
+
schema_url: "https://github.com/tmorgan181/lite-kits/blob/main/docs/manifest-schema.md"
|
13
|
+
|
14
|
+
# Compatibility
|
15
|
+
min_lite_kits_version: "0.2.0"
|
16
|
+
min_spec_kit_version: "0.1.0" # Minimum vanilla spec-kit version
|
17
|
+
|
18
|
+
# ============================================================================
|
19
|
+
# CONSTANTS - DRY principle for maintainability
|
20
|
+
# ============================================================================
|
21
|
+
|
22
|
+
# VERSION CONSTANTS
|
23
|
+
versions:
|
24
|
+
manifest: "1.0"
|
25
|
+
dev_kit: "0.2.0"
|
26
|
+
multiagent_kit: "0.2.0"
|
27
|
+
min_lite_kits: "0.2.0"
|
28
|
+
min_spec_kit: "0.1.0"
|
29
|
+
|
30
|
+
# STATUS CONSTANTS (for commands and features)
|
31
|
+
status_values:
|
32
|
+
stable: "stable" # Production-ready, tested
|
33
|
+
beta: "beta" # Functional but not fully tested
|
34
|
+
planned: "planned" # Documented but not implemented
|
35
|
+
deprecated: "deprecated" # Legacy, will be removed
|
36
|
+
|
37
|
+
# TYPE CONSTANTS (for file types)
|
38
|
+
file_types:
|
39
|
+
command: "command" # Agent commands (.md files)
|
40
|
+
prompt: "prompt" # Agent prompts (.prompt.md files)
|
41
|
+
script: "script" # Executable scripts (.sh, .ps1)
|
42
|
+
memory: "memory" # Memory/guide documents
|
43
|
+
template: "template" # Template files
|
44
|
+
|
45
|
+
# CATEGORY CONSTANTS (for organizing commands/files)
|
46
|
+
categories:
|
47
|
+
project: "project" # Project management and orientation
|
48
|
+
git: "git" # Git workflow automation
|
49
|
+
analysis: "analysis" # Code analysis and quality
|
50
|
+
coordination: "coordination" # Multi-agent coordination
|
51
|
+
workflow: "workflow" # Workflow guides and protocols
|
52
|
+
collaboration: "collaboration" # Collaboration templates
|
53
|
+
|
54
|
+
# REQUIRED CONSTANTS (for validation)
|
55
|
+
required_values:
|
56
|
+
required: true
|
57
|
+
optional: false
|
58
|
+
|
59
|
+
# PATH CONSTANTS
|
60
|
+
paths:
|
61
|
+
# Kit source directories (where files are stored in lite-kits)
|
62
|
+
# Content type subdirectories (content-first hierarchy)
|
63
|
+
content_dirs:
|
64
|
+
commands: "commands"
|
65
|
+
scripts: "scripts"
|
66
|
+
memory: "memory"
|
67
|
+
templates: "templates"
|
68
|
+
|
69
|
+
# Agent subdirectories (within content dirs)
|
70
|
+
agent_dirs:
|
71
|
+
claude: ".claude"
|
72
|
+
github: ".github"
|
73
|
+
|
74
|
+
# Shell subdirectories (within scripts dir)
|
75
|
+
shell_dirs:
|
76
|
+
bash: "bash"
|
77
|
+
powershell: "powershell"
|
78
|
+
|
79
|
+
# Target installation paths (where files go in user projects)
|
80
|
+
target_paths:
|
81
|
+
claude_commands: ".claude/commands"
|
82
|
+
github_prompts: ".github/prompts"
|
83
|
+
spec_scripts: ".specify/scripts"
|
84
|
+
spec_memory: ".specify/memory"
|
85
|
+
spec_templates: ".specify/templates"
|
86
|
+
|
87
|
+
# ============================================================================
|
88
|
+
# SPEC-KIT DETECTION
|
89
|
+
# ============================================================================
|
90
|
+
|
91
|
+
spec_kit:
|
92
|
+
# Markers that indicate a spec-kit project
|
93
|
+
# At least one must exist for valid spec-kit detection
|
94
|
+
markers:
|
95
|
+
- path: ".specify"
|
96
|
+
type: "directory"
|
97
|
+
description: "Spec-kit core directory"
|
98
|
+
|
99
|
+
- path: ".claude"
|
100
|
+
type: "directory"
|
101
|
+
description: "Claude Code commands directory"
|
102
|
+
|
103
|
+
- path: ".github/prompts"
|
104
|
+
type: "directory"
|
105
|
+
description: "GitHub Copilot prompts directory"
|
106
|
+
|
107
|
+
# Detection logic
|
108
|
+
require_any: true # At least one marker must exist (true) vs all must exist (false)
|
109
|
+
|
110
|
+
# ============================================================================
|
111
|
+
# KITS
|
112
|
+
# ============================================================================
|
113
|
+
|
114
|
+
kits:
|
115
|
+
# --------------------------------------------------------------------------
|
116
|
+
# DEV KIT - Solo development essentials
|
117
|
+
# --------------------------------------------------------------------------
|
118
|
+
dev:
|
119
|
+
name: "Dev Kit"
|
120
|
+
description: "Solo development essentials: /orient, /commit, /pr, /review, /cleanup, /audit, /stats"
|
121
|
+
icon: "🚀"
|
122
|
+
recommended: true
|
123
|
+
version: "0.2.0"
|
124
|
+
|
125
|
+
# Commands provided by this kit
|
126
|
+
commands:
|
127
|
+
- name: "orient"
|
128
|
+
description: "Agent orientation protocol"
|
129
|
+
status: "stable" # stable | beta | planned | deprecated
|
130
|
+
category: "project" # project | git | analysis
|
131
|
+
|
132
|
+
- name: "commit"
|
133
|
+
description: "Smart commit with staging and message generation"
|
134
|
+
status: "stable"
|
135
|
+
category: "git"
|
136
|
+
|
137
|
+
- name: "pr"
|
138
|
+
description: "Pull request creation with auto-push"
|
139
|
+
status: "stable"
|
140
|
+
category: "git"
|
141
|
+
|
142
|
+
- name: "review"
|
143
|
+
description: "Code review helper for staged changes"
|
144
|
+
status: "stable"
|
145
|
+
category: "git"
|
146
|
+
|
147
|
+
- name: "cleanup"
|
148
|
+
description: "Safe branch cleanup (delete merged branches)"
|
149
|
+
status: "stable"
|
150
|
+
category: "git"
|
151
|
+
|
152
|
+
- name: "audit"
|
153
|
+
description: "Security & quality audit"
|
154
|
+
status: "planned"
|
155
|
+
category: "analysis"
|
156
|
+
|
157
|
+
- name: "stats"
|
158
|
+
description: "Project statistics"
|
159
|
+
status: "planned"
|
160
|
+
category: "analysis"
|
161
|
+
|
162
|
+
# Files that get installed
|
163
|
+
files:
|
164
|
+
# Claude Code command files
|
165
|
+
claude:
|
166
|
+
- path: ".claude/commands/orient.md"
|
167
|
+
source: "dev/commands/.claude/orient.md"
|
168
|
+
required: true
|
169
|
+
type: "command"
|
170
|
+
category: "project"
|
171
|
+
|
172
|
+
- path: ".claude/commands/commit.md"
|
173
|
+
source: "dev/commands/.claude/commit.md"
|
174
|
+
required: true
|
175
|
+
type: "command"
|
176
|
+
category: "git"
|
177
|
+
|
178
|
+
- path: ".claude/commands/pr.md"
|
179
|
+
source: "dev/commands/.claude/pr.md"
|
180
|
+
required: true
|
181
|
+
type: "command"
|
182
|
+
category: "git"
|
183
|
+
|
184
|
+
- path: ".claude/commands/review.md"
|
185
|
+
source: "dev/commands/.claude/review.md"
|
186
|
+
required: true
|
187
|
+
type: "command"
|
188
|
+
category: "git"
|
189
|
+
|
190
|
+
- path: ".claude/commands/cleanup.md"
|
191
|
+
source: "dev/commands/.claude/cleanup.md"
|
192
|
+
required: true
|
193
|
+
type: "command"
|
194
|
+
category: "git"
|
195
|
+
|
196
|
+
- path: ".claude/commands/audit.md"
|
197
|
+
source: "dev/commands/.claude/audit.md"
|
198
|
+
required: false
|
199
|
+
type: "command"
|
200
|
+
category: "analysis"
|
201
|
+
|
202
|
+
- path: ".claude/commands/stats.md"
|
203
|
+
source: "dev/commands/.claude/stats.md"
|
204
|
+
required: false
|
205
|
+
type: "command"
|
206
|
+
category: "analysis"
|
207
|
+
|
208
|
+
# GitHub Copilot prompt files
|
209
|
+
copilot:
|
210
|
+
- path: ".github/prompts/orient.prompt.md"
|
211
|
+
source: "dev/commands/.github/orient.prompt.md"
|
212
|
+
required: true
|
213
|
+
type: "prompt"
|
214
|
+
category: "project"
|
215
|
+
|
216
|
+
- path: ".github/prompts/commit.prompt.md"
|
217
|
+
source: "dev/commands/.github/commit.prompt.md"
|
218
|
+
required: true
|
219
|
+
type: "prompt"
|
220
|
+
category: "git"
|
221
|
+
|
222
|
+
- path: ".github/prompts/pr.prompt.md"
|
223
|
+
source: "dev/commands/.github/pr.prompt.md"
|
224
|
+
required: true
|
225
|
+
type: "prompt"
|
226
|
+
category: "git"
|
227
|
+
|
228
|
+
- path: ".github/prompts/review.prompt.md"
|
229
|
+
source: "dev/commands/.github/review.prompt.md"
|
230
|
+
required: true
|
231
|
+
type: "prompt"
|
232
|
+
category: "git"
|
233
|
+
|
234
|
+
- path: ".github/prompts/cleanup.prompt.md"
|
235
|
+
source: "dev/commands/.github/cleanup.prompt.md"
|
236
|
+
required: true
|
237
|
+
type: "prompt"
|
238
|
+
category: "git"
|
239
|
+
|
240
|
+
- path: ".github/prompts/audit.prompt.md"
|
241
|
+
source: "dev/commands/.github/audit.prompt.md"
|
242
|
+
required: false
|
243
|
+
type: "prompt"
|
244
|
+
category: "analysis"
|
245
|
+
|
246
|
+
- path: ".github/prompts/stats.prompt.md"
|
247
|
+
source: "dev/commands/.github/stats.prompt.md"
|
248
|
+
required: false
|
249
|
+
type: "prompt"
|
250
|
+
category: "analysis"
|
251
|
+
|
252
|
+
# Bash scripts (Linux/macOS/WSL)
|
253
|
+
bash:
|
254
|
+
- path: ".specify/scripts/bash/git-status.sh"
|
255
|
+
source: "dev/scripts/bash/git-status.sh"
|
256
|
+
required: false
|
257
|
+
type: "script"
|
258
|
+
category: "git"
|
259
|
+
status: "planned"
|
260
|
+
|
261
|
+
- path: ".specify/scripts/bash/project-info.sh"
|
262
|
+
source: "dev/scripts/bash/project-info.sh"
|
263
|
+
required: false
|
264
|
+
type: "script"
|
265
|
+
category: "project"
|
266
|
+
status: "planned"
|
267
|
+
|
268
|
+
# PowerShell scripts (Windows/cross-platform)
|
269
|
+
powershell:
|
270
|
+
- path: ".specify/scripts/powershell/Get-GitStatus.ps1"
|
271
|
+
source: "dev/scripts/powershell/Get-GitStatus.ps1"
|
272
|
+
required: false
|
273
|
+
type: "script"
|
274
|
+
category: "git"
|
275
|
+
status: "planned"
|
276
|
+
|
277
|
+
- path: ".specify/scripts/powershell/Get-ProjectInfo.ps1"
|
278
|
+
source: "dev/scripts/powershell/Get-ProjectInfo.ps1"
|
279
|
+
required: false
|
280
|
+
type: "script"
|
281
|
+
category: "project"
|
282
|
+
status: "planned"
|
283
|
+
|
284
|
+
# Marker files for detection (if any of these exist, kit is installed)
|
285
|
+
markers:
|
286
|
+
- ".claude/commands/orient.md"
|
287
|
+
- ".github/prompts/orient.prompt.md"
|
288
|
+
|
289
|
+
# --------------------------------------------------------------------------
|
290
|
+
# MULTIAGENT KIT - Multi-agent coordination
|
291
|
+
# --------------------------------------------------------------------------
|
292
|
+
multiagent:
|
293
|
+
name: "Multiagent Kit"
|
294
|
+
description: "Multi-agent coordination: /sync, collaboration dirs, memory guides"
|
295
|
+
icon: "🤝"
|
296
|
+
recommended: false
|
297
|
+
version: "0.2.0"
|
298
|
+
|
299
|
+
commands:
|
300
|
+
- name: "sync"
|
301
|
+
description: "Multi-agent coordination status"
|
302
|
+
status: "stable"
|
303
|
+
category: "coordination"
|
304
|
+
|
305
|
+
files:
|
306
|
+
# Claude Code commands
|
307
|
+
claude:
|
308
|
+
- path: ".claude/commands/sync.md"
|
309
|
+
source: "multiagent/commands/.claude/sync.md"
|
310
|
+
required: true
|
311
|
+
type: "command"
|
312
|
+
category: "coordination"
|
313
|
+
|
314
|
+
# GitHub Copilot prompts
|
315
|
+
copilot:
|
316
|
+
- path: ".github/prompts/sync.prompt.md"
|
317
|
+
source: "multiagent/commands/.github/sync.prompt.md"
|
318
|
+
required: true
|
319
|
+
type: "prompt"
|
320
|
+
category: "coordination"
|
321
|
+
|
322
|
+
# Memory guides (agent-agnostic)
|
323
|
+
memory:
|
324
|
+
- path: ".specify/memory/pr-workflow-guide.md"
|
325
|
+
source: "multiagent/memory/pr-workflow-guide.md"
|
326
|
+
required: true
|
327
|
+
type: "memory"
|
328
|
+
category: "workflow"
|
329
|
+
|
330
|
+
- path: ".specify/memory/git-worktrees-protocol.md"
|
331
|
+
source: "multiagent/memory/git-worktrees-protocol.md"
|
332
|
+
required: true
|
333
|
+
type: "memory"
|
334
|
+
category: "workflow"
|
335
|
+
|
336
|
+
- path: ".specify/memory/parallel-work-protocol.md"
|
337
|
+
source: "multiagent/memory/parallel-work-protocol.md"
|
338
|
+
required: true
|
339
|
+
type: "memory"
|
340
|
+
category: "workflow"
|
341
|
+
|
342
|
+
# Templates (agent-agnostic)
|
343
|
+
templates:
|
344
|
+
- path: ".specify/templates/session-log.md"
|
345
|
+
source: "multiagent/templates/session-log.md"
|
346
|
+
required: true
|
347
|
+
type: "template"
|
348
|
+
category: "collaboration"
|
349
|
+
|
350
|
+
- path: ".specify/templates/handoff.md"
|
351
|
+
source: "multiagent/templates/handoff.md"
|
352
|
+
required: true
|
353
|
+
type: "template"
|
354
|
+
category: "collaboration"
|
355
|
+
|
356
|
+
- path: ".specify/templates/decision.md"
|
357
|
+
source: "multiagent/templates/decision.md"
|
358
|
+
required: true
|
359
|
+
type: "template"
|
360
|
+
category: "collaboration"
|
361
|
+
|
362
|
+
- path: ".specify/templates/collaboration-README.md"
|
363
|
+
source: "multiagent/templates/collaboration-structure/README.md"
|
364
|
+
required: true
|
365
|
+
type: "template"
|
366
|
+
category: "collaboration"
|
367
|
+
|
368
|
+
# Bash scripts
|
369
|
+
bash:
|
370
|
+
- path: ".specify/scripts/bash/sync-status.sh"
|
371
|
+
source: "multiagent/scripts/bash/sync-status.sh"
|
372
|
+
required: false
|
373
|
+
type: "script"
|
374
|
+
category: "coordination"
|
375
|
+
status: "planned"
|
376
|
+
|
377
|
+
# PowerShell scripts
|
378
|
+
powershell:
|
379
|
+
- path: ".specify/scripts/powershell/Get-SyncStatus.ps1"
|
380
|
+
source: "multiagent/scripts/powershell/Get-SyncStatus.ps1"
|
381
|
+
required: false
|
382
|
+
type: "script"
|
383
|
+
category: "coordination"
|
384
|
+
status: "planned"
|
385
|
+
|
386
|
+
markers:
|
387
|
+
- ".specify/memory/pr-workflow-guide.md"
|
388
|
+
- ".claude/commands/sync.md"
|
389
|
+
- ".github/prompts/sync.prompt.md"
|
390
|
+
|
391
|
+
# ============================================================================
|
392
|
+
# AGENTS - AI assistant configurations
|
393
|
+
# ============================================================================
|
394
|
+
|
395
|
+
agents:
|
396
|
+
claude:
|
397
|
+
name: "Claude Code"
|
398
|
+
marker_dir: ".claude"
|
399
|
+
commands_dir: ".claude/commands"
|
400
|
+
file_extension: ".md"
|
401
|
+
supported: true
|
402
|
+
priority: 1 # Lower = higher priority for auto-detection
|
403
|
+
|
404
|
+
copilot:
|
405
|
+
name: "GitHub Copilot"
|
406
|
+
marker_dir: ".github/prompts"
|
407
|
+
commands_dir: ".github/prompts"
|
408
|
+
file_extension: ".prompt.md"
|
409
|
+
supported: true
|
410
|
+
priority: 2
|
411
|
+
|
412
|
+
# Future agent support (planned)
|
413
|
+
cursor:
|
414
|
+
name: "Cursor"
|
415
|
+
marker_dir: ".cursor"
|
416
|
+
commands_dir: ".cursor/commands"
|
417
|
+
file_extension: ".md"
|
418
|
+
supported: false
|
419
|
+
priority: 3
|
420
|
+
status: "planned"
|
421
|
+
|
422
|
+
windsurf:
|
423
|
+
name: "Windsurf"
|
424
|
+
marker_dir: ".windsurf"
|
425
|
+
commands_dir: ".windsurf/prompts"
|
426
|
+
file_extension: ".md"
|
427
|
+
supported: false
|
428
|
+
priority: 4
|
429
|
+
status: "planned"
|
430
|
+
|
431
|
+
# ============================================================================
|
432
|
+
# SHELLS - Script shell environments
|
433
|
+
# ============================================================================
|
434
|
+
|
435
|
+
shells:
|
436
|
+
bash:
|
437
|
+
name: "Bash"
|
438
|
+
extension: ".sh"
|
439
|
+
script_dir: ".specify/scripts/bash"
|
440
|
+
platforms: ["linux", "macos", "wsl"]
|
441
|
+
supported: true
|
442
|
+
priority: 1
|
443
|
+
|
444
|
+
powershell:
|
445
|
+
name: "PowerShell"
|
446
|
+
extension: ".ps1"
|
447
|
+
script_dir: ".specify/scripts/powershell"
|
448
|
+
platforms: ["windows", "linux", "macos"] # PowerShell Core is cross-platform
|
449
|
+
supported: true
|
450
|
+
priority: 2
|
451
|
+
|
452
|
+
# Future shell support (planned)
|
453
|
+
fish:
|
454
|
+
name: "Fish Shell"
|
455
|
+
extension: ".fish"
|
456
|
+
script_dir: ".specify/scripts/fish"
|
457
|
+
platforms: ["linux", "macos"]
|
458
|
+
supported: false
|
459
|
+
priority: 3
|
460
|
+
status: "planned"
|
461
|
+
|
462
|
+
zsh:
|
463
|
+
name: "Zsh"
|
464
|
+
extension: ".zsh"
|
465
|
+
script_dir: ".specify/scripts/zsh"
|
466
|
+
platforms: ["linux", "macos"]
|
467
|
+
supported: false
|
468
|
+
priority: 4
|
469
|
+
status: "planned"
|
470
|
+
|
471
|
+
# ============================================================================
|
472
|
+
# INSTALLATION OPTIONS
|
473
|
+
# ============================================================================
|
474
|
+
|
475
|
+
options:
|
476
|
+
# Default kit to install when no kit specified
|
477
|
+
default_kit: "dev"
|
478
|
+
|
479
|
+
# Installation behavior
|
480
|
+
allow_partial_install: true # Can install for just one agent/shell
|
481
|
+
skip_existing: true # Don't overwrite existing files by default
|
482
|
+
validate_on_install: true # Run validation after install
|
483
|
+
create_backups: false # Create .bak files before overwriting (future)
|
484
|
+
|
485
|
+
# Auto-detection behavior
|
486
|
+
auto_detect_agents: true # Auto-detect which agents are present
|
487
|
+
auto_detect_shells: true # Auto-detect which shells to install for
|
488
|
+
prefer_all_agents: true # Install for all detected agents by default
|
489
|
+
prefer_all_shells: false # Only install for primary shell by default
|
490
|
+
|
491
|
+
# Validation behavior
|
492
|
+
check_file_integrity: true # Verify file contents during validation
|
493
|
+
min_file_size: 100 # Minimum file size in bytes to be considered valid
|
494
|
+
|
495
|
+
# Future options (planned)
|
496
|
+
enable_telemetry: false # Anonymous usage stats
|
497
|
+
auto_update_check: false # Check for kit updates
|