@fifine/aim-studio 0.0.1
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.
- package/LICENSE +21 -0
- package/README.md +159 -0
- package/bin/aim.js +3 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +89 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/commands/init.d.ts +13 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +513 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/update.d.ts +27 -0
- package/dist/commands/update.d.ts.map +1 -0
- package/dist/commands/update.js +1275 -0
- package/dist/commands/update.js.map +1 -0
- package/dist/configurators/claude.d.ts +32 -0
- package/dist/configurators/claude.d.ts.map +1 -0
- package/dist/configurators/claude.js +98 -0
- package/dist/configurators/claude.js.map +1 -0
- package/dist/configurators/index.d.ts +51 -0
- package/dist/configurators/index.d.ts.map +1 -0
- package/dist/configurators/index.js +113 -0
- package/dist/configurators/index.js.map +1 -0
- package/dist/configurators/shared.d.ts +12 -0
- package/dist/configurators/shared.d.ts.map +1 -0
- package/dist/configurators/shared.js +21 -0
- package/dist/configurators/shared.js.map +1 -0
- package/dist/configurators/workflow.d.ts +28 -0
- package/dist/configurators/workflow.d.ts.map +1 -0
- package/dist/configurators/workflow.js +147 -0
- package/dist/configurators/workflow.js.map +1 -0
- package/dist/constants/paths.d.ts +68 -0
- package/dist/constants/paths.d.ts.map +1 -0
- package/dist/constants/paths.js +77 -0
- package/dist/constants/paths.js.map +1 -0
- package/dist/constants/version.d.ts +9 -0
- package/dist/constants/version.d.ts.map +1 -0
- package/dist/constants/version.js +15 -0
- package/dist/constants/version.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/dist/migrations/index.d.ts +54 -0
- package/dist/migrations/index.d.ts.map +1 -0
- package/dist/migrations/index.js +160 -0
- package/dist/migrations/index.js.map +1 -0
- package/dist/migrations/manifests/0.0.1.json +9 -0
- package/dist/migrations/manifests/0.1.9.json +30 -0
- package/dist/migrations/manifests/0.2.0.json +49 -0
- package/dist/migrations/manifests/0.2.12.json +9 -0
- package/dist/migrations/manifests/0.2.13.json +9 -0
- package/dist/migrations/manifests/0.2.14.json +175 -0
- package/dist/migrations/manifests/0.2.15.json +33 -0
- package/dist/migrations/manifests/0.3.0-beta.0.json +278 -0
- package/dist/migrations/manifests/0.3.0-beta.1.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.10.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.11.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.12.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.13.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.14.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.15.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.16.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.2.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.3.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.4.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.5.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.6.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.7.json +11 -0
- package/dist/migrations/manifests/0.3.0-beta.8.json +9 -0
- package/dist/migrations/manifests/0.3.0-beta.9.json +9 -0
- package/dist/migrations/manifests/0.3.0-rc.0.json +9 -0
- package/dist/migrations/manifests/0.3.0-rc.1.json +9 -0
- package/dist/migrations/manifests/0.3.0-rc.2.json +9 -0
- package/dist/templates/CLAUDE.md +71 -0
- package/dist/templates/aim/gitignore.txt +29 -0
- package/dist/templates/aim/index.d.ts +49 -0
- package/dist/templates/aim/index.d.ts.map +1 -0
- package/dist/templates/aim/index.js +92 -0
- package/dist/templates/aim/index.js.map +1 -0
- package/dist/templates/aim/scripts/__init__.py +5 -0
- package/dist/templates/aim/scripts/add_session.py +392 -0
- package/dist/templates/aim/scripts/common/__init__.py +80 -0
- package/dist/templates/aim/scripts/common/cli_adapter.py +435 -0
- package/dist/templates/aim/scripts/common/developer.py +190 -0
- package/dist/templates/aim/scripts/common/git_context.py +383 -0
- package/dist/templates/aim/scripts/common/paths.py +347 -0
- package/dist/templates/aim/scripts/common/phase.py +253 -0
- package/dist/templates/aim/scripts/common/registry.py +366 -0
- package/dist/templates/aim/scripts/common/task_queue.py +255 -0
- package/dist/templates/aim/scripts/common/task_utils.py +178 -0
- package/dist/templates/aim/scripts/common/worktree.py +219 -0
- package/dist/templates/aim/scripts/create_bootstrap.py +290 -0
- package/dist/templates/aim/scripts/get_context.py +16 -0
- package/dist/templates/aim/scripts/get_developer.py +26 -0
- package/dist/templates/aim/scripts/init_developer.py +51 -0
- package/dist/templates/aim/scripts/multi_agent/__init__.py +5 -0
- package/dist/templates/aim/scripts/multi_agent/cleanup.py +403 -0
- package/dist/templates/aim/scripts/multi_agent/create_pr.py +329 -0
- package/dist/templates/aim/scripts/multi_agent/plan.py +233 -0
- package/dist/templates/aim/scripts/multi_agent/start.py +461 -0
- package/dist/templates/aim/scripts/multi_agent/status.py +817 -0
- package/dist/templates/aim/scripts/task.py +1068 -0
- package/dist/templates/aim/scripts-shell-archive/add-session.sh +384 -0
- package/dist/templates/aim/scripts-shell-archive/common/developer.sh +129 -0
- package/dist/templates/aim/scripts-shell-archive/common/git-context.sh +263 -0
- package/dist/templates/aim/scripts-shell-archive/common/paths.sh +208 -0
- package/dist/templates/aim/scripts-shell-archive/common/phase.sh +150 -0
- package/dist/templates/aim/scripts-shell-archive/common/registry.sh +247 -0
- package/dist/templates/aim/scripts-shell-archive/common/task-queue.sh +142 -0
- package/dist/templates/aim/scripts-shell-archive/common/task-utils.sh +151 -0
- package/dist/templates/aim/scripts-shell-archive/common/worktree.sh +128 -0
- package/dist/templates/aim/scripts-shell-archive/create-bootstrap.sh +299 -0
- package/dist/templates/aim/scripts-shell-archive/get-context.sh +7 -0
- package/dist/templates/aim/scripts-shell-archive/get-developer.sh +15 -0
- package/dist/templates/aim/scripts-shell-archive/init-developer.sh +34 -0
- package/dist/templates/aim/scripts-shell-archive/multi-agent/cleanup.sh +396 -0
- package/dist/templates/aim/scripts-shell-archive/multi-agent/create-pr.sh +241 -0
- package/dist/templates/aim/scripts-shell-archive/multi-agent/plan.sh +207 -0
- package/dist/templates/aim/scripts-shell-archive/multi-agent/start.sh +317 -0
- package/dist/templates/aim/scripts-shell-archive/multi-agent/status.sh +828 -0
- package/dist/templates/aim/scripts-shell-archive/task.sh +1204 -0
- package/dist/templates/aim/tasks/.gitkeep +0 -0
- package/dist/templates/aim/workflow.md +258 -0
- package/dist/templates/aim/worktree.yaml +47 -0
- package/dist/templates/claude/agents/check.md +122 -0
- package/dist/templates/claude/agents/debug.md +106 -0
- package/dist/templates/claude/agents/dispatch.md +230 -0
- package/dist/templates/claude/agents/implement.md +96 -0
- package/dist/templates/claude/agents/plan.md +396 -0
- package/dist/templates/claude/agents/research.md +120 -0
- package/dist/templates/claude/agents/story.md +53 -0
- package/dist/templates/claude/commands/aim/before-backend-dev.md +13 -0
- package/dist/templates/claude/commands/aim/before-frontend-dev.md +13 -0
- package/dist/templates/claude/commands/aim/break-loop.md +153 -0
- package/dist/templates/claude/commands/aim/check-backend.md +13 -0
- package/dist/templates/claude/commands/aim/check-cross-layer.md +153 -0
- package/dist/templates/claude/commands/aim/check-frontend.md +13 -0
- package/dist/templates/claude/commands/aim/check-story.md +59 -0
- package/dist/templates/claude/commands/aim/create-command.md +154 -0
- package/dist/templates/claude/commands/aim/export.md +187 -0
- package/dist/templates/claude/commands/aim/finish-work.md +104 -0
- package/dist/templates/claude/commands/aim/integrate-skill.md +219 -0
- package/dist/templates/claude/commands/aim/onboard.md +358 -0
- package/dist/templates/claude/commands/aim/parallel.md +217 -0
- package/dist/templates/claude/commands/aim/portrait.md +170 -0
- package/dist/templates/claude/commands/aim/record-session.md +92 -0
- package/dist/templates/claude/commands/aim/start.md +112 -0
- package/dist/templates/claude/commands/aim/story.md +140 -0
- package/dist/templates/claude/commands/aim/update-spec.md +285 -0
- package/dist/templates/claude/commands/aim/visualize.md +182 -0
- package/dist/templates/claude/commands/trellis/before-backend-dev.md +13 -0
- package/dist/templates/claude/commands/trellis/before-frontend-dev.md +13 -0
- package/dist/templates/claude/commands/trellis/break-loop.md +125 -0
- package/dist/templates/claude/commands/trellis/check-backend.md +13 -0
- package/dist/templates/claude/commands/trellis/check-cross-layer.md +153 -0
- package/dist/templates/claude/commands/trellis/check-frontend.md +13 -0
- package/dist/templates/claude/commands/trellis/create-command.md +154 -0
- package/dist/templates/claude/commands/trellis/finish-work.md +129 -0
- package/dist/templates/claude/commands/trellis/integrate-skill.md +219 -0
- package/dist/templates/claude/commands/trellis/onboard.md +358 -0
- package/dist/templates/claude/commands/trellis/parallel.md +193 -0
- package/dist/templates/claude/commands/trellis/record-session.md +62 -0
- package/dist/templates/claude/commands/trellis/start.md +280 -0
- package/dist/templates/claude/commands/trellis/update-spec.md +285 -0
- package/dist/templates/claude/hooks/inject-subagent-context.py +772 -0
- package/dist/templates/claude/hooks/ralph-loop.py +388 -0
- package/dist/templates/claude/hooks/session-start.py +142 -0
- package/dist/templates/claude/index.d.ts +54 -0
- package/dist/templates/claude/index.d.ts.map +1 -0
- package/dist/templates/claude/index.js +85 -0
- package/dist/templates/claude/index.js.map +1 -0
- package/dist/templates/claude/settings.json +41 -0
- package/dist/templates/extract.d.ts +68 -0
- package/dist/templates/extract.d.ts.map +1 -0
- package/dist/templates/extract.js +128 -0
- package/dist/templates/extract.js.map +1 -0
- package/dist/templates/markdown/agents.md +25 -0
- package/dist/templates/markdown/gitignore.txt +12 -0
- package/dist/templates/markdown/index.d.ts +32 -0
- package/dist/templates/markdown/index.d.ts.map +1 -0
- package/dist/templates/markdown/index.js +58 -0
- package/dist/templates/markdown/index.js.map +1 -0
- package/dist/templates/markdown/spec/backend/database-guidelines.md.txt +51 -0
- package/dist/templates/markdown/spec/backend/directory-structure.md.txt +54 -0
- package/dist/templates/markdown/spec/backend/error-handling.md.txt +51 -0
- package/dist/templates/markdown/spec/backend/index.md +40 -0
- package/dist/templates/markdown/spec/backend/index.md.txt +38 -0
- package/dist/templates/markdown/spec/backend/logging-guidelines.md.txt +51 -0
- package/dist/templates/markdown/spec/backend/quality-guidelines.md.txt +51 -0
- package/dist/templates/markdown/spec/backend/script-conventions.md +467 -0
- package/dist/templates/markdown/spec/frontend/component-guidelines.md.txt +59 -0
- package/dist/templates/markdown/spec/frontend/directory-structure.md.txt +54 -0
- package/dist/templates/markdown/spec/frontend/hook-guidelines.md.txt +51 -0
- package/dist/templates/markdown/spec/frontend/index.md.txt +39 -0
- package/dist/templates/markdown/spec/frontend/quality-guidelines.md.txt +51 -0
- package/dist/templates/markdown/spec/frontend/state-management.md.txt +51 -0
- package/dist/templates/markdown/spec/frontend/type-safety.md.txt +51 -0
- package/dist/templates/markdown/spec/guides/code-reuse-thinking-guide.md +118 -0
- package/dist/templates/markdown/spec/guides/code-reuse-thinking-guide.md.txt +92 -0
- package/dist/templates/markdown/spec/guides/cross-layer-thinking-guide.md.txt +94 -0
- package/dist/templates/markdown/spec/guides/cross-platform-thinking-guide.md +394 -0
- package/dist/templates/markdown/spec/guides/cross-platform-thinking-guide.md.txt +319 -0
- package/dist/templates/markdown/spec/guides/index.md.txt +89 -0
- package/dist/templates/markdown/spec/story/character.md.txt +95 -0
- package/dist/templates/markdown/spec/story/index.md.txt +31 -0
- package/dist/templates/markdown/spec/story/script.md.txt +313 -0
- package/dist/templates/markdown/spec/story/world.md.txt +92 -0
- package/dist/templates/markdown/workspace-index.md +123 -0
- package/dist/templates/markdown/worktree.yaml.txt +58 -0
- package/dist/templates/trellis/gitignore.txt +29 -0
- package/dist/templates/trellis/index.d.ts +49 -0
- package/dist/templates/trellis/index.d.ts.map +1 -0
- package/dist/templates/trellis/index.js +92 -0
- package/dist/templates/trellis/index.js.map +1 -0
- package/dist/templates/trellis/scripts/__init__.py +5 -0
- package/dist/templates/trellis/scripts/add_session.py +392 -0
- package/dist/templates/trellis/scripts/common/__init__.py +80 -0
- package/dist/templates/trellis/scripts/common/cli_adapter.py +435 -0
- package/dist/templates/trellis/scripts/common/developer.py +190 -0
- package/dist/templates/trellis/scripts/common/git_context.py +383 -0
- package/dist/templates/trellis/scripts/common/paths.py +347 -0
- package/dist/templates/trellis/scripts/common/phase.py +253 -0
- package/dist/templates/trellis/scripts/common/registry.py +366 -0
- package/dist/templates/trellis/scripts/common/task_queue.py +255 -0
- package/dist/templates/trellis/scripts/common/task_utils.py +178 -0
- package/dist/templates/trellis/scripts/common/worktree.py +219 -0
- package/dist/templates/trellis/scripts/create_bootstrap.py +290 -0
- package/dist/templates/trellis/scripts/get_context.py +16 -0
- package/dist/templates/trellis/scripts/get_developer.py +26 -0
- package/dist/templates/trellis/scripts/init_developer.py +51 -0
- package/dist/templates/trellis/scripts/multi_agent/__init__.py +5 -0
- package/dist/templates/trellis/scripts/multi_agent/cleanup.py +403 -0
- package/dist/templates/trellis/scripts/multi_agent/create_pr.py +329 -0
- package/dist/templates/trellis/scripts/multi_agent/plan.py +233 -0
- package/dist/templates/trellis/scripts/multi_agent/start.py +461 -0
- package/dist/templates/trellis/scripts/multi_agent/status.py +817 -0
- package/dist/templates/trellis/scripts/task.py +1056 -0
- package/dist/templates/trellis/scripts-shell-archive/add-session.sh +384 -0
- package/dist/templates/trellis/scripts-shell-archive/common/developer.sh +129 -0
- package/dist/templates/trellis/scripts-shell-archive/common/git-context.sh +263 -0
- package/dist/templates/trellis/scripts-shell-archive/common/paths.sh +208 -0
- package/dist/templates/trellis/scripts-shell-archive/common/phase.sh +150 -0
- package/dist/templates/trellis/scripts-shell-archive/common/registry.sh +247 -0
- package/dist/templates/trellis/scripts-shell-archive/common/task-queue.sh +142 -0
- package/dist/templates/trellis/scripts-shell-archive/common/task-utils.sh +151 -0
- package/dist/templates/trellis/scripts-shell-archive/common/worktree.sh +128 -0
- package/dist/templates/trellis/scripts-shell-archive/create-bootstrap.sh +299 -0
- package/dist/templates/trellis/scripts-shell-archive/get-context.sh +7 -0
- package/dist/templates/trellis/scripts-shell-archive/get-developer.sh +15 -0
- package/dist/templates/trellis/scripts-shell-archive/init-developer.sh +34 -0
- package/dist/templates/trellis/scripts-shell-archive/multi-agent/cleanup.sh +396 -0
- package/dist/templates/trellis/scripts-shell-archive/multi-agent/create-pr.sh +241 -0
- package/dist/templates/trellis/scripts-shell-archive/multi-agent/plan.sh +207 -0
- package/dist/templates/trellis/scripts-shell-archive/multi-agent/start.sh +317 -0
- package/dist/templates/trellis/scripts-shell-archive/multi-agent/status.sh +828 -0
- package/dist/templates/trellis/scripts-shell-archive/task.sh +1204 -0
- package/dist/templates/trellis/tasks/.gitkeep +0 -0
- package/dist/templates/trellis/workflow.md +416 -0
- package/dist/templates/trellis/worktree.yaml +47 -0
- package/dist/types/ai-tools.d.ts +48 -0
- package/dist/types/ai-tools.d.ts.map +1 -0
- package/dist/types/ai-tools.js +32 -0
- package/dist/types/ai-tools.js.map +1 -0
- package/dist/types/migration.d.ts +86 -0
- package/dist/types/migration.d.ts.map +1 -0
- package/dist/types/migration.js +8 -0
- package/dist/types/migration.js.map +1 -0
- package/dist/utils/compare-versions.d.ts +12 -0
- package/dist/utils/compare-versions.d.ts.map +1 -0
- package/dist/utils/compare-versions.js +76 -0
- package/dist/utils/compare-versions.js.map +1 -0
- package/dist/utils/file-writer.d.ts +23 -0
- package/dist/utils/file-writer.d.ts.map +1 -0
- package/dist/utils/file-writer.js +140 -0
- package/dist/utils/file-writer.js.map +1 -0
- package/dist/utils/project-detector.d.ts +16 -0
- package/dist/utils/project-detector.d.ts.map +1 -0
- package/dist/utils/project-detector.js +188 -0
- package/dist/utils/project-detector.js.map +1 -0
- package/dist/utils/template-fetcher.d.ts +51 -0
- package/dist/utils/template-fetcher.d.ts.map +1 -0
- package/dist/utils/template-fetcher.js +174 -0
- package/dist/utils/template-fetcher.js.map +1 -0
- package/dist/utils/template-hash.d.ts +78 -0
- package/dist/utils/template-hash.d.ts.map +1 -0
- package/dist/utils/template-hash.js +239 -0
- package/dist/utils/template-hash.js.map +1 -0
- package/package.json +87 -0
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.14",
|
|
3
|
+
"description": "Command namespace migration + fix incorrect task directory paths in agent docs",
|
|
4
|
+
"migrations": [
|
|
5
|
+
{
|
|
6
|
+
"type": "rename",
|
|
7
|
+
"from": ".claude/commands/start.md",
|
|
8
|
+
"to": ".claude/commands/trellis/start.md",
|
|
9
|
+
"description": "Move Claude start command to trellis/ subdirectory"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"type": "rename",
|
|
13
|
+
"from": ".claude/commands/finish-work.md",
|
|
14
|
+
"to": ".claude/commands/trellis/finish-work.md",
|
|
15
|
+
"description": "Move Claude finish-work command to trellis/ subdirectory"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "rename",
|
|
19
|
+
"from": ".claude/commands/before-frontend-dev.md",
|
|
20
|
+
"to": ".claude/commands/trellis/before-frontend-dev.md",
|
|
21
|
+
"description": "Move Claude before-frontend-dev command to trellis/ subdirectory"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "rename",
|
|
25
|
+
"from": ".claude/commands/before-backend-dev.md",
|
|
26
|
+
"to": ".claude/commands/trellis/before-backend-dev.md",
|
|
27
|
+
"description": "Move Claude before-backend-dev command to trellis/ subdirectory"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"type": "rename",
|
|
31
|
+
"from": ".claude/commands/check-frontend.md",
|
|
32
|
+
"to": ".claude/commands/trellis/check-frontend.md",
|
|
33
|
+
"description": "Move Claude check-frontend command to trellis/ subdirectory"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"type": "rename",
|
|
37
|
+
"from": ".claude/commands/check-backend.md",
|
|
38
|
+
"to": ".claude/commands/trellis/check-backend.md",
|
|
39
|
+
"description": "Move Claude check-backend command to trellis/ subdirectory"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"type": "rename",
|
|
43
|
+
"from": ".claude/commands/check-cross-layer.md",
|
|
44
|
+
"to": ".claude/commands/trellis/check-cross-layer.md",
|
|
45
|
+
"description": "Move Claude check-cross-layer command to trellis/ subdirectory"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "rename",
|
|
49
|
+
"from": ".claude/commands/record-session.md",
|
|
50
|
+
"to": ".claude/commands/trellis/record-session.md",
|
|
51
|
+
"description": "Move Claude record-session command to trellis/ subdirectory"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"type": "rename",
|
|
55
|
+
"from": ".claude/commands/update-spec.md",
|
|
56
|
+
"to": ".claude/commands/trellis/update-spec.md",
|
|
57
|
+
"description": "Move Claude update-spec command to trellis/ subdirectory"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"type": "rename",
|
|
61
|
+
"from": ".claude/commands/onboard.md",
|
|
62
|
+
"to": ".claude/commands/trellis/onboard.md",
|
|
63
|
+
"description": "Move Claude onboard command to trellis/ subdirectory"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"type": "rename",
|
|
67
|
+
"from": ".claude/commands/break-loop.md",
|
|
68
|
+
"to": ".claude/commands/trellis/break-loop.md",
|
|
69
|
+
"description": "Move Claude break-loop command to trellis/ subdirectory"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"type": "rename",
|
|
73
|
+
"from": ".claude/commands/integrate-skill.md",
|
|
74
|
+
"to": ".claude/commands/trellis/integrate-skill.md",
|
|
75
|
+
"description": "Move Claude integrate-skill command to trellis/ subdirectory"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "rename",
|
|
79
|
+
"from": ".claude/commands/create-command.md",
|
|
80
|
+
"to": ".claude/commands/trellis/create-command.md",
|
|
81
|
+
"description": "Move Claude create-command command to trellis/ subdirectory"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"type": "rename",
|
|
85
|
+
"from": ".claude/commands/parallel.md",
|
|
86
|
+
"to": ".claude/commands/trellis/parallel.md",
|
|
87
|
+
"description": "Move Claude parallel command to trellis/ subdirectory"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "rename",
|
|
91
|
+
"from": ".cursor/commands/start.md",
|
|
92
|
+
"to": ".cursor/commands/trellis-start.md",
|
|
93
|
+
"description": "Rename Cursor start command with trellis- prefix"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "rename",
|
|
97
|
+
"from": ".cursor/commands/finish-work.md",
|
|
98
|
+
"to": ".cursor/commands/trellis-finish-work.md",
|
|
99
|
+
"description": "Rename Cursor finish-work command with trellis- prefix"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "rename",
|
|
103
|
+
"from": ".cursor/commands/before-frontend-dev.md",
|
|
104
|
+
"to": ".cursor/commands/trellis-before-frontend-dev.md",
|
|
105
|
+
"description": "Rename Cursor before-frontend-dev command with trellis- prefix"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"type": "rename",
|
|
109
|
+
"from": ".cursor/commands/before-backend-dev.md",
|
|
110
|
+
"to": ".cursor/commands/trellis-before-backend-dev.md",
|
|
111
|
+
"description": "Rename Cursor before-backend-dev command with trellis- prefix"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"type": "rename",
|
|
115
|
+
"from": ".cursor/commands/check-frontend.md",
|
|
116
|
+
"to": ".cursor/commands/trellis-check-frontend.md",
|
|
117
|
+
"description": "Rename Cursor check-frontend command with trellis- prefix"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"type": "rename",
|
|
121
|
+
"from": ".cursor/commands/check-backend.md",
|
|
122
|
+
"to": ".cursor/commands/trellis-check-backend.md",
|
|
123
|
+
"description": "Rename Cursor check-backend command with trellis- prefix"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"type": "rename",
|
|
127
|
+
"from": ".cursor/commands/check-cross-layer.md",
|
|
128
|
+
"to": ".cursor/commands/trellis-check-cross-layer.md",
|
|
129
|
+
"description": "Rename Cursor check-cross-layer command with trellis- prefix"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"type": "rename",
|
|
133
|
+
"from": ".cursor/commands/record-session.md",
|
|
134
|
+
"to": ".cursor/commands/trellis-record-session.md",
|
|
135
|
+
"description": "Rename Cursor record-session command with trellis- prefix"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"type": "rename",
|
|
139
|
+
"from": ".cursor/commands/update-spec.md",
|
|
140
|
+
"to": ".cursor/commands/trellis-update-spec.md",
|
|
141
|
+
"description": "Rename Cursor update-spec command with trellis- prefix"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"type": "rename",
|
|
145
|
+
"from": ".cursor/commands/onboard.md",
|
|
146
|
+
"to": ".cursor/commands/trellis-onboard.md",
|
|
147
|
+
"description": "Rename Cursor onboard command with trellis- prefix"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"type": "rename",
|
|
151
|
+
"from": ".cursor/commands/break-loop.md",
|
|
152
|
+
"to": ".cursor/commands/trellis-break-loop.md",
|
|
153
|
+
"description": "Rename Cursor break-loop command with trellis- prefix"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"type": "rename",
|
|
157
|
+
"from": ".cursor/commands/integrate-skill.md",
|
|
158
|
+
"to": ".cursor/commands/trellis-integrate-skill.md",
|
|
159
|
+
"description": "Rename Cursor integrate-skill command with trellis- prefix"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"type": "rename",
|
|
163
|
+
"from": ".cursor/commands/create-command.md",
|
|
164
|
+
"to": ".cursor/commands/trellis-create-command.md",
|
|
165
|
+
"description": "Rename Cursor create-command command with trellis- prefix"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "rename",
|
|
169
|
+
"from": ".cursor/commands/parallel.md",
|
|
170
|
+
"to": ".cursor/commands/trellis-parallel.md",
|
|
171
|
+
"description": "Rename Cursor parallel command with trellis- prefix"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"notes": "This release includes: (1) Command namespace migration - Claude Code uses subdirectory (.claude/commands/trellis/), Cursor uses filename prefix (.cursor/commands/trellis-*); (2) Bug fix for incorrect task directory paths in agent docs - these files will be updated via normal template sync"
|
|
175
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.15",
|
|
3
|
+
"description": "Fix task directory paths, base_branch auto-detection, and migration bug",
|
|
4
|
+
"migrations": [],
|
|
5
|
+
"changelog": [
|
|
6
|
+
{
|
|
7
|
+
"type": "fix",
|
|
8
|
+
"scope": "agents",
|
|
9
|
+
"description": "Correct task directory path in dispatch.md and plan.md (was .trellis/workspace/{dev}/tasks/, now .trellis/tasks/)"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"type": "fix",
|
|
13
|
+
"scope": "scripts",
|
|
14
|
+
"description": "Remove hardcoded 'taosu' in status.sh help example"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "fix",
|
|
18
|
+
"scope": "task",
|
|
19
|
+
"description": "Auto-record current branch as base_branch when creating task, so PR targets correct branch"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"type": "fix",
|
|
23
|
+
"scope": "update",
|
|
24
|
+
"description": "Remove unsupported 'update' migration type that caused 'path argument undefined' error"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"type": "feat",
|
|
28
|
+
"scope": "task",
|
|
29
|
+
"description": "Add set-base-branch command to manually override PR target branch"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"notes": "Key fix: When user creates a task on branch A, base_branch is now automatically set to A. Worktree creates feature branch based on A, and PR will target A."
|
|
33
|
+
}
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.0",
|
|
3
|
+
"description": "Command path namespace migration + Shell to Python script migration",
|
|
4
|
+
"breaking": true,
|
|
5
|
+
"recommendMigrate": true,
|
|
6
|
+
"changelog": "BREAKING: All shell scripts (.sh) have been replaced by Python scripts (.py). Requires Python 3.10+. The multi-agent/ directory is now multi_agent/ (underscore). Run with --migrate to remove legacy shell scripts.",
|
|
7
|
+
"migrationGuide": "# Migration Guide: v0.3.0 Shell to Python\n\n## Overview\n\nAll shell scripts (.sh) have been replaced by Python scripts (.py). This affects any custom workflows, slash commands, or documentation that references the old scripts.\n\n## Requirements\n\n- Python 3.10 or higher\n\n## What Changed\n\n### Script Extensions\n\n| Old Path | New Path |\n|----------|----------|\n| `.trellis/scripts/*.sh` | `.trellis/scripts/*.py` |\n| `.trellis/scripts/common/*.sh` | `.trellis/scripts/common/*.py` |\n| `.trellis/scripts/multi-agent/*.sh` | `.trellis/scripts/multi_agent/*.py` |\n\n### Directory Rename\n\n| Old | New |\n|-----|-----|\n| `multi-agent/` (hyphen) | `multi_agent/` (underscore) |\n\n### Invocation Change\n\n| Old | New |\n|-----|-----|\n| `./script.sh` | `python3 ./script.py` |\n| `./.trellis/scripts/task.sh` | `python3 ./.trellis/scripts/task.py` |\n\n## Files to Check\n\nSearch your project for these patterns and update them:\n\n```bash\n# Find files with old .sh references\ngrep -r '\\.trellis/scripts.*\\.sh' .claude/ .cursor/ .trellis/\n\n# Find files with old multi-agent directory\ngrep -r 'multi-agent/' .claude/ .cursor/ .trellis/\n```\n\n## Common Replacements\n\n```\n# Task management\n./.trellis/scripts/task.sh → python3 ./.trellis/scripts/task.py\n\n# Context\n./.trellis/scripts/get-context.sh → python3 ./.trellis/scripts/get_context.py\n\n# Developer\n./.trellis/scripts/get-developer.sh → python3 ./.trellis/scripts/get_developer.py\n./.trellis/scripts/init-developer.sh → python3 ./.trellis/scripts/init_developer.py\n\n# Session\n./.trellis/scripts/add-session.sh → python3 ./.trellis/scripts/add_session.py\n\n# Multi-agent\n./.trellis/scripts/multi-agent/start.sh → python3 ./.trellis/scripts/multi_agent/start.py\n./.trellis/scripts/multi-agent/status.sh → python3 ./.trellis/scripts/multi_agent/status.py\n./.trellis/scripts/multi-agent/plan.sh → python3 ./.trellis/scripts/multi_agent/plan.py\n./.trellis/scripts/multi-agent/cleanup.sh → python3 ./.trellis/scripts/multi_agent/cleanup.py\n./.trellis/scripts/multi-agent/create-pr.sh → python3 ./.trellis/scripts/multi_agent/create_pr.py\n```\n\n## After Migration\n\nRun `trellis update --migrate` to remove the old shell scripts from your project.",
|
|
8
|
+
"aiInstructions": "1. Search for files containing old patterns:\n - `.trellis/scripts/*.sh` references\n - `multi-agent/` directory references (should be `multi_agent/`)\n - `python script.py` without `python3` (Windows compatibility)\n2. For each file found, apply the replacements from the migration guide\n3. IMPORTANT: Always use `python3` explicitly, not just `python` or relying on shebang (Windows doesn't support shebang)\n4. Check ALL locations: docstrings, help text, error messages, markdown docs\n5. Verify the changes compile/work correctly\n6. After all files are updated, remind user to run `trellis update --migrate`",
|
|
9
|
+
"migrations": [
|
|
10
|
+
{
|
|
11
|
+
"type": "rename",
|
|
12
|
+
"from": ".claude/commands/start.md",
|
|
13
|
+
"to": ".claude/commands/trellis/start.md",
|
|
14
|
+
"description": "Move Claude start command to trellis/ subdirectory"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "rename",
|
|
18
|
+
"from": ".claude/commands/finish-work.md",
|
|
19
|
+
"to": ".claude/commands/trellis/finish-work.md",
|
|
20
|
+
"description": "Move Claude finish-work command to trellis/ subdirectory"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "rename",
|
|
24
|
+
"from": ".claude/commands/before-frontend-dev.md",
|
|
25
|
+
"to": ".claude/commands/trellis/before-frontend-dev.md",
|
|
26
|
+
"description": "Move Claude before-frontend-dev command to trellis/ subdirectory"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"type": "rename",
|
|
30
|
+
"from": ".claude/commands/before-backend-dev.md",
|
|
31
|
+
"to": ".claude/commands/trellis/before-backend-dev.md",
|
|
32
|
+
"description": "Move Claude before-backend-dev command to trellis/ subdirectory"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"type": "rename",
|
|
36
|
+
"from": ".claude/commands/check-frontend.md",
|
|
37
|
+
"to": ".claude/commands/trellis/check-frontend.md",
|
|
38
|
+
"description": "Move Claude check-frontend command to trellis/ subdirectory"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "rename",
|
|
42
|
+
"from": ".claude/commands/check-backend.md",
|
|
43
|
+
"to": ".claude/commands/trellis/check-backend.md",
|
|
44
|
+
"description": "Move Claude check-backend command to trellis/ subdirectory"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"type": "rename",
|
|
48
|
+
"from": ".claude/commands/check-cross-layer.md",
|
|
49
|
+
"to": ".claude/commands/trellis/check-cross-layer.md",
|
|
50
|
+
"description": "Move Claude check-cross-layer command to trellis/ subdirectory"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "rename",
|
|
54
|
+
"from": ".claude/commands/record-session.md",
|
|
55
|
+
"to": ".claude/commands/trellis/record-session.md",
|
|
56
|
+
"description": "Move Claude record-session command to trellis/ subdirectory"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "rename",
|
|
60
|
+
"from": ".claude/commands/update-spec.md",
|
|
61
|
+
"to": ".claude/commands/trellis/update-spec.md",
|
|
62
|
+
"description": "Move Claude update-spec command to trellis/ subdirectory"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"type": "rename",
|
|
66
|
+
"from": ".claude/commands/onboard.md",
|
|
67
|
+
"to": ".claude/commands/trellis/onboard.md",
|
|
68
|
+
"description": "Move Claude onboard command to trellis/ subdirectory"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "rename",
|
|
72
|
+
"from": ".claude/commands/break-loop.md",
|
|
73
|
+
"to": ".claude/commands/trellis/break-loop.md",
|
|
74
|
+
"description": "Move Claude break-loop command to trellis/ subdirectory"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"type": "rename",
|
|
78
|
+
"from": ".claude/commands/integrate-skill.md",
|
|
79
|
+
"to": ".claude/commands/trellis/integrate-skill.md",
|
|
80
|
+
"description": "Move Claude integrate-skill command to trellis/ subdirectory"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"type": "rename",
|
|
84
|
+
"from": ".claude/commands/create-command.md",
|
|
85
|
+
"to": ".claude/commands/trellis/create-command.md",
|
|
86
|
+
"description": "Move Claude create-command command to trellis/ subdirectory"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"type": "rename",
|
|
90
|
+
"from": ".claude/commands/parallel.md",
|
|
91
|
+
"to": ".claude/commands/trellis/parallel.md",
|
|
92
|
+
"description": "Move Claude parallel command to trellis/ subdirectory"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"type": "rename",
|
|
96
|
+
"from": ".cursor/commands/start.md",
|
|
97
|
+
"to": ".cursor/commands/trellis-start.md",
|
|
98
|
+
"description": "Rename Cursor start command with trellis- prefix"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"type": "rename",
|
|
102
|
+
"from": ".cursor/commands/finish-work.md",
|
|
103
|
+
"to": ".cursor/commands/trellis-finish-work.md",
|
|
104
|
+
"description": "Rename Cursor finish-work command with trellis- prefix"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"type": "rename",
|
|
108
|
+
"from": ".cursor/commands/before-frontend-dev.md",
|
|
109
|
+
"to": ".cursor/commands/trellis-before-frontend-dev.md",
|
|
110
|
+
"description": "Rename Cursor before-frontend-dev command with trellis- prefix"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "rename",
|
|
114
|
+
"from": ".cursor/commands/before-backend-dev.md",
|
|
115
|
+
"to": ".cursor/commands/trellis-before-backend-dev.md",
|
|
116
|
+
"description": "Rename Cursor before-backend-dev command with trellis- prefix"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"type": "rename",
|
|
120
|
+
"from": ".cursor/commands/check-frontend.md",
|
|
121
|
+
"to": ".cursor/commands/trellis-check-frontend.md",
|
|
122
|
+
"description": "Rename Cursor check-frontend command with trellis- prefix"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"type": "rename",
|
|
126
|
+
"from": ".cursor/commands/check-backend.md",
|
|
127
|
+
"to": ".cursor/commands/trellis-check-backend.md",
|
|
128
|
+
"description": "Rename Cursor check-backend command with trellis- prefix"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"type": "rename",
|
|
132
|
+
"from": ".cursor/commands/check-cross-layer.md",
|
|
133
|
+
"to": ".cursor/commands/trellis-check-cross-layer.md",
|
|
134
|
+
"description": "Rename Cursor check-cross-layer command with trellis- prefix"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "rename",
|
|
138
|
+
"from": ".cursor/commands/record-session.md",
|
|
139
|
+
"to": ".cursor/commands/trellis-record-session.md",
|
|
140
|
+
"description": "Rename Cursor record-session command with trellis- prefix"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"type": "rename",
|
|
144
|
+
"from": ".cursor/commands/update-spec.md",
|
|
145
|
+
"to": ".cursor/commands/trellis-update-spec.md",
|
|
146
|
+
"description": "Rename Cursor update-spec command with trellis- prefix"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "rename",
|
|
150
|
+
"from": ".cursor/commands/onboard.md",
|
|
151
|
+
"to": ".cursor/commands/trellis-onboard.md",
|
|
152
|
+
"description": "Rename Cursor onboard command with trellis- prefix"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "rename",
|
|
156
|
+
"from": ".cursor/commands/break-loop.md",
|
|
157
|
+
"to": ".cursor/commands/trellis-break-loop.md",
|
|
158
|
+
"description": "Rename Cursor break-loop command with trellis- prefix"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"type": "rename",
|
|
162
|
+
"from": ".cursor/commands/integrate-skill.md",
|
|
163
|
+
"to": ".cursor/commands/trellis-integrate-skill.md",
|
|
164
|
+
"description": "Rename Cursor integrate-skill command with trellis- prefix"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "rename",
|
|
168
|
+
"from": ".cursor/commands/create-command.md",
|
|
169
|
+
"to": ".cursor/commands/trellis-create-command.md",
|
|
170
|
+
"description": "Rename Cursor create-command command with trellis- prefix"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"type": "rename",
|
|
174
|
+
"from": ".cursor/commands/parallel.md",
|
|
175
|
+
"to": ".cursor/commands/trellis-parallel.md",
|
|
176
|
+
"description": "Rename Cursor parallel command with trellis- prefix"
|
|
177
|
+
},
|
|
178
|
+
|
|
179
|
+
{
|
|
180
|
+
"type": "delete",
|
|
181
|
+
"from": ".trellis/scripts/get-developer.sh",
|
|
182
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"type": "delete",
|
|
186
|
+
"from": ".trellis/scripts/init-developer.sh",
|
|
187
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"type": "delete",
|
|
191
|
+
"from": ".trellis/scripts/get-context.sh",
|
|
192
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"type": "delete",
|
|
196
|
+
"from": ".trellis/scripts/task.sh",
|
|
197
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"type": "delete",
|
|
201
|
+
"from": ".trellis/scripts/add-session.sh",
|
|
202
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"type": "delete",
|
|
206
|
+
"from": ".trellis/scripts/create-bootstrap.sh",
|
|
207
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
208
|
+
},
|
|
209
|
+
|
|
210
|
+
{
|
|
211
|
+
"type": "delete",
|
|
212
|
+
"from": ".trellis/scripts/common/paths.sh",
|
|
213
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"type": "delete",
|
|
217
|
+
"from": ".trellis/scripts/common/developer.sh",
|
|
218
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"type": "delete",
|
|
222
|
+
"from": ".trellis/scripts/common/git-context.sh",
|
|
223
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"type": "delete",
|
|
227
|
+
"from": ".trellis/scripts/common/worktree.sh",
|
|
228
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"type": "delete",
|
|
232
|
+
"from": ".trellis/scripts/common/task-queue.sh",
|
|
233
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "delete",
|
|
237
|
+
"from": ".trellis/scripts/common/task-utils.sh",
|
|
238
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"type": "delete",
|
|
242
|
+
"from": ".trellis/scripts/common/phase.sh",
|
|
243
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"type": "delete",
|
|
247
|
+
"from": ".trellis/scripts/common/registry.sh",
|
|
248
|
+
"description": "Remove legacy shell script (replaced by Python)"
|
|
249
|
+
},
|
|
250
|
+
|
|
251
|
+
{
|
|
252
|
+
"type": "delete",
|
|
253
|
+
"from": ".trellis/scripts/multi-agent/start.sh",
|
|
254
|
+
"description": "Remove legacy shell script (replaced by Python in multi_agent/)"
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"type": "delete",
|
|
258
|
+
"from": ".trellis/scripts/multi-agent/plan.sh",
|
|
259
|
+
"description": "Remove legacy shell script (replaced by Python in multi_agent/)"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"type": "delete",
|
|
263
|
+
"from": ".trellis/scripts/multi-agent/status.sh",
|
|
264
|
+
"description": "Remove legacy shell script (replaced by Python in multi_agent/)"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"type": "delete",
|
|
268
|
+
"from": ".trellis/scripts/multi-agent/create-pr.sh",
|
|
269
|
+
"description": "Remove legacy shell script (replaced by Python in multi_agent/)"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": "delete",
|
|
273
|
+
"from": ".trellis/scripts/multi-agent/cleanup.sh",
|
|
274
|
+
"description": "Remove legacy shell script (replaced by Python in multi_agent/)"
|
|
275
|
+
}
|
|
276
|
+
],
|
|
277
|
+
"notes": "Part 1: Command namespace migration - Claude Code uses subdirectory namespacing (.claude/commands/trellis/), Cursor uses filename prefix (.cursor/commands/trellis-*). Part 2: Shell to Python migration - All .trellis/scripts/*.sh files are replaced by Python equivalents. The multi-agent/ directory (with hyphen) is replaced by multi_agent/ (with underscore). Empty directories are automatically cleaned up after file deletion."
|
|
278
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.1",
|
|
3
|
+
"description": "Breaking change warning UX improvement",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(update): re-show breaking change warning before confirm prompt",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.10",
|
|
3
|
+
"description": "Windows UTF-8 encoding fix",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": true,
|
|
6
|
+
"changelog": "Fixed Windows encoding issues:\n\n**Bug Fix:**\n- Fixed `UnicodeEncodeError: 'gbk' codec can't encode character` on Windows\n- Fixed `SyntaxWarning` corrupting hook JSON output on Python 3.12+\n\n**Root Cause:**\n- Windows console defaults to GBK encoding, fails on Chinese characters in git commits/task names\n- Python 3.12+ warns on invalid escape sequences, stderr corrupts hook output\n\n**Files Fixed:**\n- All hooks: session-start.py, inject-subagent-context.py, ralph-loop.py\n- All scripts: git_context.py, task.py, add_session.py\n\n**Technical Details:**\n- Added `# -*- coding: utf-8 -*-` encoding declaration\n- Force stdout to UTF-8 on Windows using `io.TextIOWrapper`\n- Suppress Python warnings with `warnings.filterwarnings(\"ignore\")`",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Bug fix for Windows users. Strongly recommended to upgrade."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.11",
|
|
3
|
+
"description": "Windows UTF-8 encoding support",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(hooks): add Windows UTF-8 encoding support",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.12",
|
|
3
|
+
"description": "Windows compatibility & multi-model support improvements",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": true,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n\n1. **Windows Hook JSON Parse Error** (b282b14)\n - Fixed `Unexpected end of string` error when parsing hook output\n - Replaced backslash characters (`\\--`, `\\->`) in markdown templates\n - These caused JSON serialization issues on Windows\n\n2. **Cross-Platform Script Paths** (19f8a68)\n - Fixed `python3` command not found on Windows\n - Scripts now use platform-specific command paths via cli_adapter\n\n3. **Multi-Agent GPT/Codex Compatibility** (14bfbe9)\n - Fixed dispatch agent getting stuck with \"Start the pipeline\" prompt\n - GPT/Codex models were misinterpreting \"pipeline\" as CI/CD\n - New prompt explicitly guides models to follow agent instructions\n\n**Known Issue:**\n- Windows users may still experience hook failures due to Claude Code bug (#18469)\n- Workaround: Use `cmd.exe /c python ...` in hook command",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Recommended for Windows users and those using GPT/Codex models with multi-agent pipeline."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.13",
|
|
3
|
+
"description": "Cursor platform support & base_branch auto-recording",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": true,
|
|
6
|
+
"changelog": "**Features:**\n\n1. **Cursor Platform Support** (5357e98)\n - Added Cursor as a supported platform alongside Claude Code and OpenCode\n - task.py now auto-detects platform based on config directories\n - Cursor uses flat command structure: `.cursor/commands/trellis-<name>.md`\n\n2. **Auto-record base_branch on Task Creation** (e38578b)\n - Creating a task now automatically records the current branch as `base_branch`\n - PRs will target the correct branch where user was working\n - Syncs with main branch 0.2.15 changes\n\n3. **set-base-branch Command** (e38578b)\n - New command to manually change PR target branch\n - Usage: `python3 task.py set-base-branch <task-dir> <branch>`\n\n**Bug Fixes:**\n\n1. **OpenCode Agent Path Fixes** (5357e98)\n - Fixed hardcoded task directory paths in OpenCode agent docs\n - Changed from `.trellis/workspace/{developer}/tasks/` to `.trellis/tasks/`\n - Cleaned up unused hardcoded constants in plan.py and start.py",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Recommended for Cursor users and multi-agent pipeline users who need correct PR targeting."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.14",
|
|
3
|
+
"description": "Fix update error for 0.2.x users & add missing manifests",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": true,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(update): add defensive check for undefined item.from in orphanedMigrations\n- Add missing manifests: 0.2.12, 0.2.13, 0.3.0-beta.1~6, 0.3.0-beta.11\n\nFixes \"path argument must be of type string\" error when upgrading from 0.2.12/0.2.13.",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Recommended for users who encountered update errors from 0.2.x versions."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.15",
|
|
3
|
+
"description": "Add cli_adapter.py to update system",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(update): add missing cli_adapter.py to template files\n\nThis file is used by task.py and multi_agent scripts but was not being updated.",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.16",
|
|
3
|
+
"description": "iFlow CLI support and update mechanism fix",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**New Features:**\n- feat(cli): add iFlow CLI support (#22)\n\n**Bug Fixes:**\n- fix: Windows stdout encoding in iFlow hooks (use reconfigure pattern)\n- fix: sync update-spec.md to iFlow templates\n- fix: lint errors (non-null assertion, unused param)\n- fix(update): only update templates for configured platforms\n\n**Documentation:**\n- docs: add platform-integration.md spec for adding new CLI platforms",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Update mechanism now only updates platforms that have existing directories."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.2",
|
|
3
|
+
"description": "Windows compatibility fixes",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(templates): use python3 consistently for Windows compatibility\n- fix(update): move breaking change warnings to bottom of output\n\n**Docs:**\n- Add cross-platform thinking guide",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.3",
|
|
3
|
+
"description": "Breaking change warning and docs update",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(update): show breaking change warning before confirm prompt\n\n**Docs:**\n- Update backend specs for shell-to-python migration",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.5",
|
|
3
|
+
"description": "Semver prerelease version handling fix",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(update): handle prerelease versions in semver comparison",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.6",
|
|
3
|
+
"description": "Init conflict handling & trellis-meta skill",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Features:**\n- feat(skill): add trellis-meta skill documenting Trellis system\n\n**Bug Fixes:**\n- fix(init): use writeFile for all file copies to allow user choice on conflicts",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.7",
|
|
3
|
+
"description": "Windows compatibility fixes and hook JSON format corrections",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": true,
|
|
6
|
+
"changelog": "Fixes for Windows compatibility (Issue #19) and Claude Code hook JSON format (Issue #18). Hook commands now use `python3` directly. Windows users may need to manually update `.claude/settings.json` if `python3` is not available on their system.",
|
|
7
|
+
"migrationGuide": "# Migration Guide: v0.3.0-beta.7 Windows Compatibility\n\n## Overview\n\nThis release fixes Windows compatibility issues and corrects the Claude Code hook JSON output format.\n\n## What Changed\n\n### Hook JSON Format (Issue #18)\n\nSessionStart hooks now output the correct JSON format expected by Claude Code:\n\n```json\n{\n \"hookSpecificOutput\": {\n \"hookEventName\": \"SessionStart\",\n \"additionalContext\": \"...\"\n }\n}\n```\n\n### UTF-8 Encoding (Issue #19)\n\n- Git commands now force UTF-8 output encoding\n- Python subprocess calls use `encoding=\"utf-8\"` and `errors=\"replace\"`\n- Cross-platform `tail_follow()` implementation in status.py\n\n### Hook Command Change\n\nHook commands in `.claude/settings.json` now use `python3` directly:\n\n```json\n\"command\": \"python3 .claude/hooks/session-start.py\"\n```\n\n## Windows Users: Manual Step Required\n\nIf your Windows system uses `python` instead of `python3`, you need to manually update `.claude/settings.json`:\n\n1. Open `.claude/settings.json`\n2. Find all `\"command\": \"python3 ...\"` entries\n3. Change `python3` to `python` if needed\n\nExample:\n```json\n// Before (if python3 not available)\n\"command\": \"python3 .claude/hooks/session-start.py\"\n\n// After\n\"command\": \"python .claude/hooks/session-start.py\"\n```\n\n## Affected Files\n\n- `.claude/settings.json` - Hook commands updated\n- `.claude/hooks/session-start.py` - JSON format fixed\n- `.trellis/scripts/common/git_context.py` - UTF-8 encoding\n- `.trellis/scripts/multi_agent/status.py` - Cross-platform tail\n- Other scripts - UTF-8 encoding fixes",
|
|
8
|
+
"aiInstructions": "1. Update `.claude/settings.json` hook commands to use `python3`\n2. If user reports Python not found on Windows, guide them to change `python3` to `python` in settings.json\n3. Verify hook scripts output correct JSON format\n4. Check that git commands work with non-ASCII characters",
|
|
9
|
+
"migrations": [],
|
|
10
|
+
"notes": "This is a compatibility fix release. No file migrations required. Windows users using `python` instead of `python3` should manually update their `.claude/settings.json` file."
|
|
11
|
+
}
|