@baoanaz/cviauto 0.6.5
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 +235 -0
- package/README.md +46 -0
- package/bin/trellis.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 +209 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/commands/channel/adapters/claude.d.ts +29 -0
- package/dist/commands/channel/adapters/claude.d.ts.map +1 -0
- package/dist/commands/channel/adapters/claude.js +203 -0
- package/dist/commands/channel/adapters/claude.js.map +1 -0
- package/dist/commands/channel/adapters/codex.d.ts +85 -0
- package/dist/commands/channel/adapters/codex.d.ts.map +1 -0
- package/dist/commands/channel/adapters/codex.js +505 -0
- package/dist/commands/channel/adapters/codex.js.map +1 -0
- package/dist/commands/channel/adapters/index.d.ts +84 -0
- package/dist/commands/channel/adapters/index.d.ts.map +1 -0
- package/dist/commands/channel/adapters/index.js +115 -0
- package/dist/commands/channel/adapters/index.js.map +1 -0
- package/dist/commands/channel/adapters/types.d.ts +33 -0
- package/dist/commands/channel/adapters/types.d.ts.map +1 -0
- package/dist/commands/channel/adapters/types.js +2 -0
- package/dist/commands/channel/adapters/types.js.map +1 -0
- package/dist/commands/channel/agent-loader.d.ts +32 -0
- package/dist/commands/channel/agent-loader.d.ts.map +1 -0
- package/dist/commands/channel/agent-loader.js +154 -0
- package/dist/commands/channel/agent-loader.js.map +1 -0
- package/dist/commands/channel/context-loader.d.ts +26 -0
- package/dist/commands/channel/context-loader.d.ts.map +1 -0
- package/dist/commands/channel/context-loader.js +290 -0
- package/dist/commands/channel/context-loader.js.map +1 -0
- package/dist/commands/channel/context.d.ts +16 -0
- package/dist/commands/channel/context.d.ts.map +1 -0
- package/dist/commands/channel/context.js +83 -0
- package/dist/commands/channel/context.js.map +1 -0
- package/dist/commands/channel/create.d.ts +27 -0
- package/dist/commands/channel/create.d.ts.map +1 -0
- package/dist/commands/channel/create.js +39 -0
- package/dist/commands/channel/create.js.map +1 -0
- package/dist/commands/channel/dev-parse-trace.d.ts +14 -0
- package/dist/commands/channel/dev-parse-trace.d.ts.map +1 -0
- package/dist/commands/channel/dev-parse-trace.js +70 -0
- package/dist/commands/channel/dev-parse-trace.js.map +1 -0
- package/dist/commands/channel/guard.d.ts +150 -0
- package/dist/commands/channel/guard.d.ts.map +1 -0
- package/dist/commands/channel/guard.js +474 -0
- package/dist/commands/channel/guard.js.map +1 -0
- package/dist/commands/channel/index.d.ts +3 -0
- package/dist/commands/channel/index.d.ts.map +1 -0
- package/dist/commands/channel/index.js +531 -0
- package/dist/commands/channel/index.js.map +1 -0
- package/dist/commands/channel/interrupt.d.ts +10 -0
- package/dist/commands/channel/interrupt.d.ts.map +1 -0
- package/dist/commands/channel/interrupt.js +22 -0
- package/dist/commands/channel/interrupt.js.map +1 -0
- package/dist/commands/channel/kill.d.ts +7 -0
- package/dist/commands/channel/kill.d.ts.map +1 -0
- package/dist/commands/channel/kill.js +121 -0
- package/dist/commands/channel/kill.js.map +1 -0
- package/dist/commands/channel/list.d.ts +17 -0
- package/dist/commands/channel/list.d.ts.map +1 -0
- package/dist/commands/channel/list.js +233 -0
- package/dist/commands/channel/list.js.map +1 -0
- package/dist/commands/channel/messages.d.ts +15 -0
- package/dist/commands/channel/messages.d.ts.map +1 -0
- package/dist/commands/channel/messages.js +245 -0
- package/dist/commands/channel/messages.js.map +1 -0
- package/dist/commands/channel/rm.d.ts +27 -0
- package/dist/commands/channel/rm.d.ts.map +1 -0
- package/dist/commands/channel/rm.js +216 -0
- package/dist/commands/channel/rm.js.map +1 -0
- package/dist/commands/channel/run.d.ts +30 -0
- package/dist/commands/channel/run.d.ts.map +1 -0
- package/dist/commands/channel/run.js +130 -0
- package/dist/commands/channel/run.js.map +1 -0
- package/dist/commands/channel/send.d.ts +11 -0
- package/dist/commands/channel/send.d.ts.map +1 -0
- package/dist/commands/channel/send.js +24 -0
- package/dist/commands/channel/send.js.map +1 -0
- package/dist/commands/channel/spawn.d.ts +40 -0
- package/dist/commands/channel/spawn.d.ts.map +1 -0
- package/dist/commands/channel/spawn.js +244 -0
- package/dist/commands/channel/spawn.js.map +1 -0
- package/dist/commands/channel/store/events.d.ts +39 -0
- package/dist/commands/channel/store/events.d.ts.map +1 -0
- package/dist/commands/channel/store/events.js +87 -0
- package/dist/commands/channel/store/events.js.map +1 -0
- package/dist/commands/channel/store/filter.d.ts +3 -0
- package/dist/commands/channel/store/filter.d.ts.map +1 -0
- package/dist/commands/channel/store/filter.js +2 -0
- package/dist/commands/channel/store/filter.js.map +1 -0
- package/dist/commands/channel/store/lock.d.ts +23 -0
- package/dist/commands/channel/store/lock.d.ts.map +1 -0
- package/dist/commands/channel/store/lock.js +99 -0
- package/dist/commands/channel/store/lock.js.map +1 -0
- package/dist/commands/channel/store/paths.d.ts +63 -0
- package/dist/commands/channel/store/paths.d.ts.map +1 -0
- package/dist/commands/channel/store/paths.js +246 -0
- package/dist/commands/channel/store/paths.js.map +1 -0
- package/dist/commands/channel/store/schema.d.ts +27 -0
- package/dist/commands/channel/store/schema.d.ts.map +1 -0
- package/dist/commands/channel/store/schema.js +34 -0
- package/dist/commands/channel/store/schema.js.map +1 -0
- package/dist/commands/channel/store/thread-state.d.ts +5 -0
- package/dist/commands/channel/store/thread-state.d.ts.map +1 -0
- package/dist/commands/channel/store/thread-state.js +16 -0
- package/dist/commands/channel/store/thread-state.js.map +1 -0
- package/dist/commands/channel/store/watch.d.ts +19 -0
- package/dist/commands/channel/store/watch.d.ts.map +1 -0
- package/dist/commands/channel/store/watch.js +146 -0
- package/dist/commands/channel/store/watch.js.map +1 -0
- package/dist/commands/channel/supervisor/idle.d.ts +46 -0
- package/dist/commands/channel/supervisor/idle.d.ts.map +1 -0
- package/dist/commands/channel/supervisor/idle.js +72 -0
- package/dist/commands/channel/supervisor/idle.js.map +1 -0
- package/dist/commands/channel/supervisor/inbox.d.ts +30 -0
- package/dist/commands/channel/supervisor/inbox.d.ts.map +1 -0
- package/dist/commands/channel/supervisor/inbox.js +160 -0
- package/dist/commands/channel/supervisor/inbox.js.map +1 -0
- package/dist/commands/channel/supervisor/shutdown.d.ts +68 -0
- package/dist/commands/channel/supervisor/shutdown.d.ts.map +1 -0
- package/dist/commands/channel/supervisor/shutdown.js +146 -0
- package/dist/commands/channel/supervisor/shutdown.js.map +1 -0
- package/dist/commands/channel/supervisor/stdout.d.ts +51 -0
- package/dist/commands/channel/supervisor/stdout.d.ts.map +1 -0
- package/dist/commands/channel/supervisor/stdout.js +121 -0
- package/dist/commands/channel/supervisor/stdout.js.map +1 -0
- package/dist/commands/channel/supervisor/turns.d.ts +31 -0
- package/dist/commands/channel/supervisor/turns.d.ts.map +1 -0
- package/dist/commands/channel/supervisor/turns.js +45 -0
- package/dist/commands/channel/supervisor/turns.js.map +1 -0
- package/dist/commands/channel/supervisor/warning.d.ts +48 -0
- package/dist/commands/channel/supervisor/warning.d.ts.map +1 -0
- package/dist/commands/channel/supervisor/warning.js +77 -0
- package/dist/commands/channel/supervisor/warning.js.map +1 -0
- package/dist/commands/channel/supervisor.d.ts +59 -0
- package/dist/commands/channel/supervisor.d.ts.map +1 -0
- package/dist/commands/channel/supervisor.js +376 -0
- package/dist/commands/channel/supervisor.js.map +1 -0
- package/dist/commands/channel/text-body.d.ts +13 -0
- package/dist/commands/channel/text-body.d.ts.map +1 -0
- package/dist/commands/channel/text-body.js +47 -0
- package/dist/commands/channel/text-body.js.map +1 -0
- package/dist/commands/channel/threads.d.ts +39 -0
- package/dist/commands/channel/threads.d.ts.map +1 -0
- package/dist/commands/channel/threads.js +106 -0
- package/dist/commands/channel/threads.js.map +1 -0
- package/dist/commands/channel/title.d.ts +12 -0
- package/dist/commands/channel/title.d.ts.map +1 -0
- package/dist/commands/channel/title.js +24 -0
- package/dist/commands/channel/title.js.map +1 -0
- package/dist/commands/channel/wait.d.ts +17 -0
- package/dist/commands/channel/wait.d.ts.map +1 -0
- package/dist/commands/channel/wait.js +75 -0
- package/dist/commands/channel/wait.js.map +1 -0
- package/dist/commands/init.d.ts +66 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +1704 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/mem.d.ts +30 -0
- package/dist/commands/mem.d.ts.map +1 -0
- package/dist/commands/mem.js +424 -0
- package/dist/commands/mem.js.map +1 -0
- package/dist/commands/uninstall.d.ts +27 -0
- package/dist/commands/uninstall.d.ts.map +1 -0
- package/dist/commands/uninstall.js +340 -0
- package/dist/commands/uninstall.js.map +1 -0
- package/dist/commands/update.d.ts +72 -0
- package/dist/commands/update.d.ts.map +1 -0
- package/dist/commands/update.js +2023 -0
- package/dist/commands/update.js.map +1 -0
- package/dist/commands/upgrade.d.ts +28 -0
- package/dist/commands/upgrade.d.ts.map +1 -0
- package/dist/commands/upgrade.js +88 -0
- package/dist/commands/upgrade.js.map +1 -0
- package/dist/commands/workflow.d.ts +35 -0
- package/dist/commands/workflow.d.ts.map +1 -0
- package/dist/commands/workflow.js +232 -0
- package/dist/commands/workflow.js.map +1 -0
- package/dist/configurators/antigravity.d.ts +7 -0
- package/dist/configurators/antigravity.d.ts.map +1 -0
- package/dist/configurators/antigravity.js +19 -0
- package/dist/configurators/antigravity.js.map +1 -0
- package/dist/configurators/claude.d.ts +12 -0
- package/dist/configurators/claude.d.ts.map +1 -0
- package/dist/configurators/claude.js +107 -0
- package/dist/configurators/claude.js.map +1 -0
- package/dist/configurators/codebuddy.d.ts +10 -0
- package/dist/configurators/codebuddy.d.ts.map +1 -0
- package/dist/configurators/codebuddy.js +30 -0
- package/dist/configurators/codebuddy.js.map +1 -0
- package/dist/configurators/codex.d.ts +8 -0
- package/dist/configurators/codex.d.ts.map +1 -0
- package/dist/configurators/codex.js +73 -0
- package/dist/configurators/codex.js.map +1 -0
- package/dist/configurators/copilot.d.ts +10 -0
- package/dist/configurators/copilot.d.ts.map +1 -0
- package/dist/configurators/copilot.js +51 -0
- package/dist/configurators/copilot.js.map +1 -0
- package/dist/configurators/cursor.d.ts +10 -0
- package/dist/configurators/cursor.d.ts.map +1 -0
- package/dist/configurators/cursor.js +29 -0
- package/dist/configurators/cursor.js.map +1 -0
- package/dist/configurators/devin.d.ts +7 -0
- package/dist/configurators/devin.d.ts.map +1 -0
- package/dist/configurators/devin.js +19 -0
- package/dist/configurators/devin.js.map +1 -0
- package/dist/configurators/droid.d.ts +10 -0
- package/dist/configurators/droid.d.ts.map +1 -0
- package/dist/configurators/droid.js +30 -0
- package/dist/configurators/droid.js.map +1 -0
- package/dist/configurators/gemini.d.ts +16 -0
- package/dist/configurators/gemini.d.ts.map +1 -0
- package/dist/configurators/gemini.js +38 -0
- package/dist/configurators/gemini.js.map +1 -0
- package/dist/configurators/index.d.ts +86 -0
- package/dist/configurators/index.d.ts.map +1 -0
- package/dist/configurators/index.js +430 -0
- package/dist/configurators/index.js.map +1 -0
- package/dist/configurators/kilo.d.ts +7 -0
- package/dist/configurators/kilo.d.ts.map +1 -0
- package/dist/configurators/kilo.js +19 -0
- package/dist/configurators/kilo.js.map +1 -0
- package/dist/configurators/kiro.d.ts +10 -0
- package/dist/configurators/kiro.d.ts.map +1 -0
- package/dist/configurators/kiro.js +33 -0
- package/dist/configurators/kiro.js.map +1 -0
- package/dist/configurators/opencode.d.ts +14 -0
- package/dist/configurators/opencode.d.ts.map +1 -0
- package/dist/configurators/opencode.js +102 -0
- package/dist/configurators/opencode.js.map +1 -0
- package/dist/configurators/pi.d.ts +3 -0
- package/dist/configurators/pi.d.ts.map +1 -0
- package/dist/configurators/pi.js +55 -0
- package/dist/configurators/pi.js.map +1 -0
- package/dist/configurators/qoder.d.ts +11 -0
- package/dist/configurators/qoder.d.ts.map +1 -0
- package/dist/configurators/qoder.js +31 -0
- package/dist/configurators/qoder.js.map +1 -0
- package/dist/configurators/reasonix.d.ts +23 -0
- package/dist/configurators/reasonix.d.ts.map +1 -0
- package/dist/configurators/reasonix.js +60 -0
- package/dist/configurators/reasonix.js.map +1 -0
- package/dist/configurators/shared.d.ts +172 -0
- package/dist/configurators/shared.d.ts.map +1 -0
- package/dist/configurators/shared.js +530 -0
- package/dist/configurators/shared.js.map +1 -0
- package/dist/configurators/trae.d.ts +17 -0
- package/dist/configurators/trae.d.ts.map +1 -0
- package/dist/configurators/trae.js +42 -0
- package/dist/configurators/trae.js.map +1 -0
- package/dist/configurators/workflow.d.ts +37 -0
- package/dist/configurators/workflow.d.ts.map +1 -0
- package/dist/configurators/workflow.js +177 -0
- package/dist/configurators/workflow.js.map +1 -0
- package/dist/configurators/zcode.d.ts +19 -0
- package/dist/configurators/zcode.d.ts.map +1 -0
- package/dist/configurators/zcode.js +54 -0
- package/dist/configurators/zcode.js.map +1 -0
- package/dist/constants/paths.d.ts +74 -0
- package/dist/constants/paths.d.ts.map +1 -0
- package/dist/constants/paths.js +83 -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 +62 -0
- package/dist/migrations/index.d.ts.map +1 -0
- package/dist/migrations/index.js +187 -0
- package/dist/migrations/index.js.map +1 -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 +297 -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/migrations/manifests/0.3.0-rc.3.json +9 -0
- package/dist/migrations/manifests/0.3.0-rc.4.json +9 -0
- package/dist/migrations/manifests/0.3.0-rc.5.json +9 -0
- package/dist/migrations/manifests/0.3.0-rc.6.json +9 -0
- package/dist/migrations/manifests/0.3.0.json +11 -0
- package/dist/migrations/manifests/0.3.1.json +9 -0
- package/dist/migrations/manifests/0.3.10.json +9 -0
- package/dist/migrations/manifests/0.3.2.json +9 -0
- package/dist/migrations/manifests/0.3.3.json +9 -0
- package/dist/migrations/manifests/0.3.4.json +21 -0
- package/dist/migrations/manifests/0.3.5.json +9 -0
- package/dist/migrations/manifests/0.3.6.json +9 -0
- package/dist/migrations/manifests/0.3.7.json +9 -0
- package/dist/migrations/manifests/0.3.8.json +9 -0
- package/dist/migrations/manifests/0.3.9.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.1.json +300 -0
- package/dist/migrations/manifests/0.4.0-beta.10.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.2.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.3.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.4.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.5.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.6.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.7.json +9 -0
- package/dist/migrations/manifests/0.4.0-beta.8.json +42 -0
- package/dist/migrations/manifests/0.4.0-beta.9.json +9 -0
- package/dist/migrations/manifests/0.4.0-rc.0.json +9 -0
- package/dist/migrations/manifests/0.4.0-rc.1.json +9 -0
- package/dist/migrations/manifests/0.4.0.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.0.json +1646 -0
- package/dist/migrations/manifests/0.5.0-beta.1.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.10.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.11.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.12.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.13.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.14.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.15.json +116 -0
- package/dist/migrations/manifests/0.5.0-beta.16.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.17.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.18.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.19.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.2.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.3.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.4.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.5.json +222 -0
- package/dist/migrations/manifests/0.5.0-beta.6.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.7.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.8.json +9 -0
- package/dist/migrations/manifests/0.5.0-beta.9.json +48 -0
- package/dist/migrations/manifests/0.5.0-rc.0.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.1.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.2.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.3.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.4.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.5.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.6.json +9 -0
- package/dist/migrations/manifests/0.5.0-rc.7.json +9 -0
- package/dist/migrations/manifests/0.5.0.json +9 -0
- package/dist/migrations/manifests/0.5.1.json +9 -0
- package/dist/migrations/manifests/0.5.10.json +9 -0
- package/dist/migrations/manifests/0.5.11.json +16 -0
- package/dist/migrations/manifests/0.5.12.json +9 -0
- package/dist/migrations/manifests/0.5.13.json +9 -0
- package/dist/migrations/manifests/0.5.14.json +9 -0
- package/dist/migrations/manifests/0.5.15.json +9 -0
- package/dist/migrations/manifests/0.5.16.json +9 -0
- package/dist/migrations/manifests/0.5.17.json +9 -0
- package/dist/migrations/manifests/0.5.18.json +9 -0
- package/dist/migrations/manifests/0.5.19.json +9 -0
- package/dist/migrations/manifests/0.5.2.json +9 -0
- package/dist/migrations/manifests/0.5.3.json +9 -0
- package/dist/migrations/manifests/0.5.4.json +9 -0
- package/dist/migrations/manifests/0.5.5.json +9 -0
- package/dist/migrations/manifests/0.5.6.json +9 -0
- package/dist/migrations/manifests/0.5.7.json +16 -0
- package/dist/migrations/manifests/0.5.8.json +9 -0
- package/dist/migrations/manifests/0.5.9.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.0.json +16 -0
- package/dist/migrations/manifests/0.6.0-beta.1.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.10.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.11.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.12.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.13.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.14.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.15.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.16.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.17.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.18.json +16 -0
- package/dist/migrations/manifests/0.6.0-beta.19.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.2.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.20.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.21.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.22.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.23.json +88 -0
- package/dist/migrations/manifests/0.6.0-beta.3.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.4.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.5.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.6.json +16 -0
- package/dist/migrations/manifests/0.6.0-beta.7.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.8.json +9 -0
- package/dist/migrations/manifests/0.6.0-beta.9.json +9 -0
- package/dist/migrations/manifests/0.6.0-rc.0.json +9 -0
- package/dist/migrations/manifests/0.6.0.json +9 -0
- package/dist/migrations/manifests/0.6.1.json +9 -0
- package/dist/migrations/manifests/0.6.2.json +9 -0
- package/dist/migrations/manifests/0.6.3.json +24 -0
- package/dist/migrations/manifests/0.6.4.json +9 -0
- package/dist/migrations/manifests/0.6.5.json +9 -0
- package/dist/templates/claude/agents/trellis-check.md +115 -0
- package/dist/templates/claude/agents/trellis-implement.md +110 -0
- package/dist/templates/claude/agents/trellis-research.md +137 -0
- package/dist/templates/claude/hooks/statusline.py +324 -0
- package/dist/templates/claude/index.d.ts +31 -0
- package/dist/templates/claude/index.d.ts.map +1 -0
- package/dist/templates/claude/index.js +58 -0
- package/dist/templates/claude/index.js.map +1 -0
- package/dist/templates/claude/settings.json +73 -0
- package/dist/templates/codebuddy/agents/trellis-check.md +115 -0
- package/dist/templates/codebuddy/agents/trellis-implement.md +110 -0
- package/dist/templates/codebuddy/agents/trellis-research.md +137 -0
- package/dist/templates/codebuddy/index.d.ts +15 -0
- package/dist/templates/codebuddy/index.d.ts.map +1 -0
- package/dist/templates/codebuddy/index.js +15 -0
- package/dist/templates/codebuddy/index.js.map +1 -0
- package/dist/templates/codebuddy/settings.json +59 -0
- package/dist/templates/codex/agents/trellis-check.toml +59 -0
- package/dist/templates/codex/agents/trellis-implement.toml +40 -0
- package/dist/templates/codex/agents/trellis-research.toml +73 -0
- package/dist/templates/codex/config.toml +28 -0
- package/dist/templates/codex/hooks/session-start.py +545 -0
- package/dist/templates/codex/hooks.json +15 -0
- package/dist/templates/codex/index.d.ts +39 -0
- package/dist/templates/codex/index.d.ts.map +1 -0
- package/dist/templates/codex/index.js +86 -0
- package/dist/templates/codex/index.js.map +1 -0
- package/dist/templates/codex/skills/before-dev/SKILL.md +40 -0
- package/dist/templates/codex/skills/brainstorm/SKILL.md +130 -0
- package/dist/templates/codex/skills/break-loop/SKILL.md +130 -0
- package/dist/templates/codex/skills/check/SKILL.md +98 -0
- package/dist/templates/codex/skills/check-cross-layer/SKILL.md +158 -0
- package/dist/templates/codex/skills/create-command/SKILL.md +101 -0
- package/dist/templates/codex/skills/finish-work/SKILL.md +98 -0
- package/dist/templates/codex/skills/improve-ut/SKILL.md +69 -0
- package/dist/templates/codex/skills/integrate-skill/SKILL.md +221 -0
- package/dist/templates/codex/skills/onboard/SKILL.md +363 -0
- package/dist/templates/codex/skills/record-session/SKILL.md +67 -0
- package/dist/templates/codex/skills/start/SKILL.md +64 -0
- package/dist/templates/codex/skills/update-spec/SKILL.md +335 -0
- package/dist/templates/common/bundled-skills/trellis-channel/SKILL.md +67 -0
- package/dist/templates/common/bundled-skills/trellis-channel/references/command-reference.md +480 -0
- package/dist/templates/common/bundled-skills/trellis-channel/references/forum.md +233 -0
- package/dist/templates/common/bundled-skills/trellis-channel/references/progress-debugging.md +226 -0
- package/dist/templates/common/bundled-skills/trellis-channel/references/workers.md +276 -0
- package/dist/templates/common/bundled-skills/trellis-channel/references/workflows.md +128 -0
- package/dist/templates/common/bundled-skills/trellis-meta/SKILL.md +85 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/add-project-local-conventions.md +83 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-agents.md +56 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-context-loading.md +84 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-hooks.md +57 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-skills-or-commands.md +123 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-spec-structure.md +83 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-task-lifecycle.md +90 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/change-workflow.md +66 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/customize-local/overview.md +55 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/bundled-skills.md +146 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/context-injection.md +68 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/generated-files.md +80 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/multi-agent-channel.md +69 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/overview.md +51 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/spec-system.md +102 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/task-system.md +130 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/workflow.md +75 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/local-architecture/workspace-memory.md +71 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/agents.md +82 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/hooks-and-settings.md +72 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/overview.md +59 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/platform-map.md +88 -0
- package/dist/templates/common/bundled-skills/trellis-meta/references/platform-files/skills-and-commands.md +85 -0
- package/dist/templates/common/bundled-skills/trellis-session-insight/SKILL.md +81 -0
- package/dist/templates/common/bundled-skills/trellis-session-insight/references/cli-quick-reference.md +65 -0
- package/dist/templates/common/bundled-skills/trellis-session-insight/references/triggering-patterns.md +93 -0
- package/dist/templates/common/bundled-skills/trellis-spec-bootstrap/SKILL.md +41 -0
- package/dist/templates/common/bundled-skills/trellis-spec-bootstrap/references/mcp-setup.md +90 -0
- package/dist/templates/common/bundled-skills/trellis-spec-bootstrap/references/repository-analysis.md +59 -0
- package/dist/templates/common/bundled-skills/trellis-spec-bootstrap/references/spec-task-planning.md +61 -0
- package/dist/templates/common/bundled-skills/trellis-spec-bootstrap/references/spec-writing.md +70 -0
- package/dist/templates/common/commands/continue.md +57 -0
- package/dist/templates/common/commands/finish-work.md +74 -0
- package/dist/templates/common/commands/start.md +59 -0
- package/dist/templates/common/index.d.ts +48 -0
- package/dist/templates/common/index.d.ts.map +1 -0
- package/dist/templates/common/index.js +104 -0
- package/dist/templates/common/index.js.map +1 -0
- package/dist/templates/common/skills/before-dev.md +35 -0
- package/dist/templates/common/skills/brainstorm.md +168 -0
- package/dist/templates/common/skills/break-loop.md +184 -0
- package/dist/templates/common/skills/check.md +93 -0
- package/dist/templates/common/skills/update-spec.md +351 -0
- package/dist/templates/copilot/hooks/session-start.py +547 -0
- package/dist/templates/copilot/hooks.json +19 -0
- package/dist/templates/copilot/index.d.ts +23 -0
- package/dist/templates/copilot/index.d.ts.map +1 -0
- package/dist/templates/copilot/index.js +54 -0
- package/dist/templates/copilot/index.js.map +1 -0
- package/dist/templates/copilot/prompts/before-dev.prompt.md +39 -0
- package/dist/templates/copilot/prompts/brainstorm.prompt.md +129 -0
- package/dist/templates/copilot/prompts/break-loop.prompt.md +129 -0
- package/dist/templates/copilot/prompts/check-cross-layer.prompt.md +157 -0
- package/dist/templates/copilot/prompts/check.prompt.md +97 -0
- package/dist/templates/copilot/prompts/create-command.prompt.md +116 -0
- package/dist/templates/copilot/prompts/finish-work.prompt.md +107 -0
- package/dist/templates/copilot/prompts/integrate-skill.prompt.md +223 -0
- package/dist/templates/copilot/prompts/onboard.prompt.md +362 -0
- package/dist/templates/copilot/prompts/parallel.prompt.md +204 -0
- package/dist/templates/copilot/prompts/record-session.prompt.md +66 -0
- package/dist/templates/copilot/prompts/start.prompt.md +63 -0
- package/dist/templates/copilot/prompts/update-spec.prompt.md +358 -0
- package/dist/templates/cursor/agents/trellis-check.md +114 -0
- package/dist/templates/cursor/agents/trellis-implement.md +109 -0
- package/dist/templates/cursor/agents/trellis-research.md +136 -0
- package/dist/templates/cursor/hooks.json +24 -0
- package/dist/templates/cursor/index.d.ts +13 -0
- package/dist/templates/cursor/index.d.ts.map +1 -0
- package/dist/templates/cursor/index.js +13 -0
- package/dist/templates/cursor/index.js.map +1 -0
- package/dist/templates/droid/droids/trellis-check.md +107 -0
- package/dist/templates/droid/droids/trellis-implement.md +102 -0
- package/dist/templates/droid/droids/trellis-research.md +137 -0
- package/dist/templates/droid/index.d.ts +15 -0
- package/dist/templates/droid/index.d.ts.map +1 -0
- package/dist/templates/droid/index.js +15 -0
- package/dist/templates/droid/index.js.map +1 -0
- package/dist/templates/droid/settings.json +59 -0
- package/dist/templates/extract.d.ts +40 -0
- package/dist/templates/extract.d.ts.map +1 -0
- package/dist/templates/extract.js +106 -0
- package/dist/templates/extract.js.map +1 -0
- package/dist/templates/gemini/agents/trellis-check.md +107 -0
- package/dist/templates/gemini/agents/trellis-implement.md +102 -0
- package/dist/templates/gemini/agents/trellis-research.md +136 -0
- package/dist/templates/gemini/index.d.ts +13 -0
- package/dist/templates/gemini/index.d.ts.map +1 -0
- package/dist/templates/gemini/index.js +13 -0
- package/dist/templates/gemini/index.js.map +1 -0
- package/dist/templates/gemini/settings.json +28 -0
- package/dist/templates/kiro/agents/trellis-check.json +14 -0
- package/dist/templates/kiro/agents/trellis-implement.json +14 -0
- package/dist/templates/kiro/agents/trellis-research.json +22 -0
- package/dist/templates/kiro/agents/trellis.json +20 -0
- package/dist/templates/kiro/hooks/cviauto-workflow-state.kiro.hook +14 -0
- package/dist/templates/kiro/index.d.ts +32 -0
- package/dist/templates/kiro/index.d.ts.map +1 -0
- package/dist/templates/kiro/index.js +28 -0
- package/dist/templates/kiro/index.js.map +1 -0
- package/dist/templates/markdown/agents.md +21 -0
- package/dist/templates/markdown/gitignore.txt +15 -0
- package/dist/templates/markdown/index.d.ts +27 -0
- package/dist/templates/markdown/index.d.ts.map +1 -0
- package/dist/templates/markdown/index.js +52 -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.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/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.txt +223 -0
- package/dist/templates/markdown/spec/guides/cross-layer-thinking-guide.md.txt +327 -0
- package/dist/templates/markdown/spec/guides/cross-platform-thinking-guide.md.txt +633 -0
- package/dist/templates/markdown/spec/guides/index.md.txt +97 -0
- package/dist/templates/markdown/workspace-index.md +125 -0
- package/dist/templates/markdown/worktree.yaml.txt +58 -0
- package/dist/templates/opencode/agents/trellis-check.md +122 -0
- package/dist/templates/opencode/agents/trellis-implement.md +118 -0
- package/dist/templates/opencode/agents/trellis-research.md +145 -0
- package/dist/templates/opencode/lib/cviauto-context.js +418 -0
- package/dist/templates/opencode/lib/session-utils.js +609 -0
- package/dist/templates/opencode/package.json +5 -0
- package/dist/templates/opencode/plugins/inject-subagent-context.js +570 -0
- package/dist/templates/opencode/plugins/inject-workflow-state.js +175 -0
- package/dist/templates/opencode/plugins/session-start.js +140 -0
- package/dist/templates/pi/agents/trellis-check.md +37 -0
- package/dist/templates/pi/agents/trellis-implement.md +42 -0
- package/dist/templates/pi/agents/trellis-research.md +25 -0
- package/dist/templates/pi/extensions/trellis/index.ts.txt +1680 -0
- package/dist/templates/pi/index.d.ts +5 -0
- package/dist/templates/pi/index.d.ts.map +1 -0
- package/dist/templates/pi/index.js +12 -0
- package/dist/templates/pi/index.js.map +1 -0
- package/dist/templates/pi/settings.json +6 -0
- package/dist/templates/qoder/agents/trellis-check.md +108 -0
- package/dist/templates/qoder/agents/trellis-implement.md +103 -0
- package/dist/templates/qoder/agents/trellis-research.md +137 -0
- package/dist/templates/qoder/index.d.ts +15 -0
- package/dist/templates/qoder/index.d.ts.map +1 -0
- package/dist/templates/qoder/index.js +15 -0
- package/dist/templates/qoder/index.js.map +1 -0
- package/dist/templates/qoder/settings.json +47 -0
- package/dist/templates/reasonix/agents/trellis-check.md +36 -0
- package/dist/templates/reasonix/agents/trellis-implement.md +41 -0
- package/dist/templates/reasonix/index.d.ts +13 -0
- package/dist/templates/reasonix/index.d.ts.map +1 -0
- package/dist/templates/reasonix/index.js +16 -0
- package/dist/templates/reasonix/index.js.map +1 -0
- package/dist/templates/shared-hooks/index.d.ts +58 -0
- package/dist/templates/shared-hooks/index.d.ts.map +1 -0
- package/dist/templates/shared-hooks/index.js +101 -0
- package/dist/templates/shared-hooks/index.js.map +1 -0
- package/dist/templates/shared-hooks/inject-shell-session-context.py +183 -0
- package/dist/templates/shared-hooks/inject-subagent-context.py +786 -0
- package/dist/templates/shared-hooks/inject-workflow-state.py +408 -0
- package/dist/templates/shared-hooks/session-start.py +844 -0
- package/dist/templates/template-utils.d.ts +28 -0
- package/dist/templates/template-utils.d.ts.map +1 -0
- package/dist/templates/template-utils.js +95 -0
- package/dist/templates/template-utils.js.map +1 -0
- package/dist/templates/trae/agents/trellis-check.md +108 -0
- package/dist/templates/trae/agents/trellis-implement.md +103 -0
- package/dist/templates/trae/agents/trellis-research.md +137 -0
- package/dist/templates/trae/hooks.json +27 -0
- package/dist/templates/trae/index.d.ts +15 -0
- package/dist/templates/trae/index.d.ts.map +1 -0
- package/dist/templates/trae/index.js +15 -0
- package/dist/templates/trae/index.js.map +1 -0
- package/dist/templates/trellis/agents/check.md +70 -0
- package/dist/templates/trellis/agents/implement.md +71 -0
- package/dist/templates/trellis/config.yaml +110 -0
- package/dist/templates/trellis/gitignore.txt +40 -0
- package/dist/templates/trellis/index.d.ts +65 -0
- package/dist/templates/trellis/index.d.ts.map +1 -0
- package/dist/templates/trellis/index.js +119 -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 +567 -0
- package/dist/templates/trellis/scripts/common/__init__.py +92 -0
- package/dist/templates/trellis/scripts/common/active_task.py +628 -0
- package/dist/templates/trellis/scripts/common/cli_adapter.py +851 -0
- package/dist/templates/trellis/scripts/common/config.py +444 -0
- package/dist/templates/trellis/scripts/common/cviauto_config.py +131 -0
- package/dist/templates/trellis/scripts/common/developer.py +190 -0
- package/dist/templates/trellis/scripts/common/git.py +31 -0
- package/dist/templates/trellis/scripts/common/git_context.py +106 -0
- package/dist/templates/trellis/scripts/common/io.py +37 -0
- package/dist/templates/trellis/scripts/common/log.py +45 -0
- package/dist/templates/trellis/scripts/common/packages_context.py +238 -0
- package/dist/templates/trellis/scripts/common/paths.py +447 -0
- package/dist/templates/trellis/scripts/common/safe_commit.py +315 -0
- package/dist/templates/trellis/scripts/common/session_context.py +821 -0
- package/dist/templates/trellis/scripts/common/task_context.py +223 -0
- package/dist/templates/trellis/scripts/common/task_queue.py +188 -0
- package/dist/templates/trellis/scripts/common/task_store.py +747 -0
- package/dist/templates/trellis/scripts/common/task_utils.py +274 -0
- package/dist/templates/trellis/scripts/common/tasks.py +112 -0
- package/dist/templates/trellis/scripts/common/types.py +110 -0
- package/dist/templates/trellis/scripts/common/workflow_phase.py +212 -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/hooks/linear_sync.py +243 -0
- package/dist/templates/trellis/scripts/init_developer.py +51 -0
- package/dist/templates/trellis/scripts/task.py +500 -0
- package/dist/templates/trellis/tasks/.gitkeep +0 -0
- package/dist/templates/trellis/workflow.md +697 -0
- package/dist/templates/zcode/agents/trellis-check.md +102 -0
- package/dist/templates/zcode/agents/trellis-implement.md +102 -0
- package/dist/templates/zcode/index.d.ts +15 -0
- package/dist/templates/zcode/index.d.ts.map +1 -0
- package/dist/templates/zcode/index.js +18 -0
- package/dist/templates/zcode/index.js.map +1 -0
- package/dist/types/ai-tools.d.ts +95 -0
- package/dist/types/ai-tools.d.ts.map +1 -0
- package/dist/types/ai-tools.js +330 -0
- package/dist/types/ai-tools.js.map +1 -0
- package/dist/types/migration.d.ts +125 -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/agent-refs.d.ts +31 -0
- package/dist/utils/agent-refs.d.ts.map +1 -0
- package/dist/utils/agent-refs.js +63 -0
- package/dist/utils/agent-refs.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 +86 -0
- package/dist/utils/compare-versions.js.map +1 -0
- package/dist/utils/cwd-guard.d.ts +38 -0
- package/dist/utils/cwd-guard.d.ts.map +1 -0
- package/dist/utils/cwd-guard.js +62 -0
- package/dist/utils/cwd-guard.js.map +1 -0
- package/dist/utils/file-writer.d.ts +36 -0
- package/dist/utils/file-writer.d.ts.map +1 -0
- package/dist/utils/file-writer.js +203 -0
- package/dist/utils/file-writer.js.map +1 -0
- package/dist/utils/manifest-prune.d.ts +61 -0
- package/dist/utils/manifest-prune.d.ts.map +1 -0
- package/dist/utils/manifest-prune.js +137 -0
- package/dist/utils/manifest-prune.js.map +1 -0
- package/dist/utils/posix.d.ts +13 -0
- package/dist/utils/posix.d.ts.map +1 -0
- package/dist/utils/posix.js +15 -0
- package/dist/utils/posix.js.map +1 -0
- package/dist/utils/project-detector.d.ts +46 -0
- package/dist/utils/project-detector.d.ts.map +1 -0
- package/dist/utils/project-detector.js +666 -0
- package/dist/utils/project-detector.js.map +1 -0
- package/dist/utils/proxy.d.ts +25 -0
- package/dist/utils/proxy.d.ts.map +1 -0
- package/dist/utils/proxy.js +60 -0
- package/dist/utils/proxy.js.map +1 -0
- package/dist/utils/registry-config.d.ts +7 -0
- package/dist/utils/registry-config.d.ts.map +1 -0
- package/dist/utils/registry-config.js +171 -0
- package/dist/utils/registry-config.js.map +1 -0
- package/dist/utils/task-json.d.ts +13 -0
- package/dist/utils/task-json.d.ts.map +1 -0
- package/dist/utils/task-json.js +12 -0
- package/dist/utils/task-json.js.map +1 -0
- package/dist/utils/template-fetcher.d.ts +161 -0
- package/dist/utils/template-fetcher.d.ts.map +1 -0
- package/dist/utils/template-fetcher.js +956 -0
- package/dist/utils/template-fetcher.js.map +1 -0
- package/dist/utils/template-hash.d.ts +123 -0
- package/dist/utils/template-hash.d.ts.map +1 -0
- package/dist/utils/template-hash.js +334 -0
- package/dist/utils/template-hash.js.map +1 -0
- package/dist/utils/uninstall-scrubbers.d.ts +64 -0
- package/dist/utils/uninstall-scrubbers.d.ts.map +1 -0
- package/dist/utils/uninstall-scrubbers.js +367 -0
- package/dist/utils/uninstall-scrubbers.js.map +1 -0
- package/dist/utils/workflow-resolver.d.ts +86 -0
- package/dist/utils/workflow-resolver.d.ts.map +1 -0
- package/dist/utils/workflow-resolver.js +265 -0
- package/dist/utils/workflow-resolver.js.map +1 -0
- package/package.json +89 -0
|
@@ -0,0 +1,297 @@
|
|
|
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 archive legacy shell scripts to scripts-shell-archive/.",
|
|
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| `.cviauto/scripts/*.sh` | `.cviauto/scripts/*.py` |\n| `.cviauto/scripts/common/*.sh` | `.cviauto/scripts/common/*.py` |\n| `.cviauto/scripts/multi-agent/*.sh` | `.cviauto/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| `./.cviauto/scripts/task.sh` | `python3 ./.cviauto/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 '\\.cviauto/scripts.*\\.sh' .claude/ .cursor/ .cviauto/\n\n# Find files with old multi-agent directory\ngrep -r 'multi-agent/' .claude/ .cursor/ .cviauto/\n```\n\n## Common Replacements\n\n```\n# Task management\n./.cviauto/scripts/task.sh → python3 ./.cviauto/scripts/task.py\n\n# Context\n./.cviauto/scripts/get-context.sh → python3 ./.cviauto/scripts/get_context.py\n\n# Developer\n./.cviauto/scripts/get-developer.sh → python3 ./.cviauto/scripts/get_developer.py\n./.cviauto/scripts/init-developer.sh → python3 ./.cviauto/scripts/init_developer.py\n\n# Session\n./.cviauto/scripts/add-session.sh → python3 ./.cviauto/scripts/add_session.py\n\n# Multi-agent\n./.cviauto/scripts/multi-agent/start.sh → python3 ./.cviauto/scripts/multi_agent/start.py\n./.cviauto/scripts/multi-agent/status.sh → python3 ./.cviauto/scripts/multi_agent/status.py\n./.cviauto/scripts/multi-agent/plan.sh → python3 ./.cviauto/scripts/multi_agent/plan.py\n./.cviauto/scripts/multi-agent/cleanup.sh → python3 ./.cviauto/scripts/multi_agent/cleanup.py\n./.cviauto/scripts/multi-agent/create-pr.sh → python3 ./.cviauto/scripts/multi_agent/create_pr.py\n```\n\n## After Migration\n\nRun `cviauto update --migrate` to archive the old shell scripts to `.cviauto/scripts-shell-archive/`.",
|
|
8
|
+
"aiInstructions": "1. Search for files containing old patterns:\n - `.cviauto/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 `cviauto update --migrate`",
|
|
9
|
+
"migrations": [
|
|
10
|
+
{
|
|
11
|
+
"type": "rename",
|
|
12
|
+
"from": ".claude/commands/start.md",
|
|
13
|
+
"to": ".claude/commands/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto/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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-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/cviauto-parallel.md",
|
|
176
|
+
"description": "Rename Cursor parallel command with trellis- prefix"
|
|
177
|
+
},
|
|
178
|
+
|
|
179
|
+
{
|
|
180
|
+
"type": "rename",
|
|
181
|
+
"from": ".cviauto/scripts/get-developer.sh",
|
|
182
|
+
"to": ".cviauto/scripts-shell-archive/get-developer.sh",
|
|
183
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"type": "rename",
|
|
187
|
+
"from": ".cviauto/scripts/init-developer.sh",
|
|
188
|
+
"to": ".cviauto/scripts-shell-archive/init-developer.sh",
|
|
189
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"type": "rename",
|
|
193
|
+
"from": ".cviauto/scripts/get-context.sh",
|
|
194
|
+
"to": ".cviauto/scripts-shell-archive/get-context.sh",
|
|
195
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"type": "rename",
|
|
199
|
+
"from": ".cviauto/scripts/task.sh",
|
|
200
|
+
"to": ".cviauto/scripts-shell-archive/task.sh",
|
|
201
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"type": "rename",
|
|
205
|
+
"from": ".cviauto/scripts/add-session.sh",
|
|
206
|
+
"to": ".cviauto/scripts-shell-archive/add-session.sh",
|
|
207
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"type": "rename",
|
|
211
|
+
"from": ".cviauto/scripts/create-bootstrap.sh",
|
|
212
|
+
"to": ".cviauto/scripts-shell-archive/create-bootstrap.sh",
|
|
213
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
214
|
+
},
|
|
215
|
+
|
|
216
|
+
{
|
|
217
|
+
"type": "rename",
|
|
218
|
+
"from": ".cviauto/scripts/common/paths.sh",
|
|
219
|
+
"to": ".cviauto/scripts-shell-archive/common/paths.sh",
|
|
220
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"type": "rename",
|
|
224
|
+
"from": ".cviauto/scripts/common/developer.sh",
|
|
225
|
+
"to": ".cviauto/scripts-shell-archive/common/developer.sh",
|
|
226
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"type": "rename",
|
|
230
|
+
"from": ".cviauto/scripts/common/git-context.sh",
|
|
231
|
+
"to": ".cviauto/scripts-shell-archive/common/git-context.sh",
|
|
232
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"type": "rename",
|
|
236
|
+
"from": ".cviauto/scripts/common/worktree.sh",
|
|
237
|
+
"to": ".cviauto/scripts-shell-archive/common/worktree.sh",
|
|
238
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"type": "rename",
|
|
242
|
+
"from": ".cviauto/scripts/common/task-queue.sh",
|
|
243
|
+
"to": ".cviauto/scripts-shell-archive/common/task-queue.sh",
|
|
244
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"type": "rename",
|
|
248
|
+
"from": ".cviauto/scripts/common/task-utils.sh",
|
|
249
|
+
"to": ".cviauto/scripts-shell-archive/common/task-utils.sh",
|
|
250
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"type": "rename",
|
|
254
|
+
"from": ".cviauto/scripts/common/phase.sh",
|
|
255
|
+
"to": ".cviauto/scripts-shell-archive/common/phase.sh",
|
|
256
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"type": "rename",
|
|
260
|
+
"from": ".cviauto/scripts/common/registry.sh",
|
|
261
|
+
"to": ".cviauto/scripts-shell-archive/common/registry.sh",
|
|
262
|
+
"description": "Archive legacy shell script (replaced by Python)"
|
|
263
|
+
},
|
|
264
|
+
|
|
265
|
+
{
|
|
266
|
+
"type": "rename",
|
|
267
|
+
"from": ".cviauto/scripts/multi-agent/start.sh",
|
|
268
|
+
"to": ".cviauto/scripts-shell-archive/multi-agent/start.sh",
|
|
269
|
+
"description": "Archive legacy shell script (replaced by Python in multi_agent/)"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"type": "rename",
|
|
273
|
+
"from": ".cviauto/scripts/multi-agent/plan.sh",
|
|
274
|
+
"to": ".cviauto/scripts-shell-archive/multi-agent/plan.sh",
|
|
275
|
+
"description": "Archive legacy shell script (replaced by Python in multi_agent/)"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "rename",
|
|
279
|
+
"from": ".cviauto/scripts/multi-agent/status.sh",
|
|
280
|
+
"to": ".cviauto/scripts-shell-archive/multi-agent/status.sh",
|
|
281
|
+
"description": "Archive legacy shell script (replaced by Python in multi_agent/)"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": "rename",
|
|
285
|
+
"from": ".cviauto/scripts/multi-agent/create-pr.sh",
|
|
286
|
+
"to": ".cviauto/scripts-shell-archive/multi-agent/create-pr.sh",
|
|
287
|
+
"description": "Archive legacy shell script (replaced by Python in multi_agent/)"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"type": "rename",
|
|
291
|
+
"from": ".cviauto/scripts/multi-agent/cleanup.sh",
|
|
292
|
+
"to": ".cviauto/scripts-shell-archive/multi-agent/cleanup.sh",
|
|
293
|
+
"description": "Archive legacy shell script (replaced by Python in multi_agent/)"
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
"notes": "Part 1: Command namespace migration - Claude Code uses subdirectory namespacing (.claude/commands/cviauto/), Cursor uses filename prefix (.cursor/commands/cviauto-*). Part 2: Shell to Python migration - All .cviauto/scripts/*.sh files are archived to .cviauto/scripts-shell-archive/ (not deleted). The multi-agent/ directory (with hyphen) is replaced by multi_agent/ (with underscore). Empty source directories are automatically cleaned up after rename."
|
|
297
|
+
}
|
|
@@ -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/cviauto-<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 `.cviauto/workspace/{developer}/tasks/` to `.cviauto/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- `.cviauto/scripts/common/git_context.py` - UTF-8 encoding\n- `.cviauto/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
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.8",
|
|
3
|
+
"description": "Task commands now support task name lookup",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "All task commands (start, init-context, set-branch, etc.) now support task name in addition to full path. Example: `python3 task.py start my-task` instead of `python3 task.py start .cviauto/tasks/01-31-my-task`.",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Usability improvement. No migration required."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-beta.9",
|
|
3
|
+
"description": "OpenCode platform support",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "Added OpenCode platform support:\n\n**New Features:**\n- `cviauto init --opencode` - Initialize project for OpenCode\n- `--platform opencode` flag for plan.py, start.py\n- Complete `.opencode/` templates (agents, commands, plugins)\n- Session ID extraction and resume for OpenCode (`ses_xxx` format)\n- CLI adapter abstraction (`cli_adapter.py`)\n\n**Changes:**\n- Agent definitions use `permission:` format instead of deprecated `tools:`\n- Agents no longer hardcode `model:` field, inherit from user's global config\n- `status.py` outputs platform-specific resume commands\n\n**OpenCode Usage:**\n```bash\n# Initialize\ncviauto init --opencode\n\n# Multi-agent with OpenCode\npython3 .cviauto/scripts/multi_agent/plan.py --platform opencode ...\npython3 .cviauto/scripts/multi_agent/start.py --platform opencode ...\n```\n\n**Note:** Full subagent context injection requires oh-my-opencode (omo). Without omo, agents use Self-Loading fallback.",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "New platform support. No migration required for existing Claude Code users."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.0",
|
|
3
|
+
"description": "Registry refactor, bug fixes, test coverage, release tooling",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**New Features:**\n- feat(init): support remote spec templates from docs repo\n- feat(scripts): create-manifest.js supports beta/rc/release workflows\n- feat(scripts): add release:rc script to package.json\n\n**Bug Fixes:**\n- fix: template placeholder roundtrip — collectTemplates settings now resolve {{PYTHON_CMD}} correctly\n- fix: remove stale cross-platform-thinking-guide.md reference from update command\n- fix: tool flags (--claude etc.) now take precedence over -y default\n- fix: Windows python3 command compatibility ({{PYTHON_CMD}} placeholder)\n\n**Refactor:**\n- refactor: centralized platform registry pattern (replaces scattered init/update logic)\n- refactor: extract resolvePlaceholders to shared.ts, remove templates.ts dispatcher\n- refactor: simplify tool selection with data-driven approach\n- refactor: extract VERSION constant to src/constants/version.ts\n\n**Testing:**\n- 312 tests across 17 files (unit, integration, regression)\n- @vitest/coverage-v8 with pnpm test:coverage\n\n**Documentation:**\n- docs: add .cviauto/spec/unit-test/ conventions (4 files)\n- docs: update platform-integration.md with registry pattern, known gaps, CliFlag type\n- docs: integrate test guidance into workflow commands (start, check-backend, finish-work)",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. First release candidate — feature complete, stabilization phase."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.1",
|
|
3
|
+
"description": "Fix CLI version comparison for prerelease versions",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix: CLI startup incorrectly reports rc version as older than beta (e.g., 0.3.0-rc.0 < 0.3.0-beta.16)\n- fix: deduplicate compareVersions — extract to shared utils/compare-versions.ts (was duplicated 3x with inconsistent implementations)\n\n**Root Cause:**\n- cli/index.ts used a simplified compareVersions that ignored prerelease identifiers, parsing \"0.3.0-rc.0\" as [0, 3, 0, 0] and \"0.3.0-beta.16\" as [0, 3, 0, 16], concluding rc < beta\n- commands/update.ts and migrations/index.ts had the correct full implementation but it was not shared",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Hotfix for version comparison bug introduced in rc.0."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.2",
|
|
3
|
+
"description": "Codex platform integration and test/doc alignment",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**New Features:**\n- feat(platform): add Codex as a first-class platform in AI tool registry (types, CLI flag, init options, configurator dispatch)\n- feat(templates): add Codex skill templates under `src/templates/codex/skills/*/SKILL.md`\n- feat(configurator): add `configureCodex()` and template collection mapping to `.agents/skills/<name>/SKILL.md`\n- feat(runtime): extend Python `cli_adapter.py` / `registry.py` to support Codex detection and command path mapping\n\n**Testing:**\n- test(codex): add focused coverage for Codex template loading, init behavior, managed path detection, platform configurator output, and regression checks\n- test: full suite passing (`pnpm lint`, `pnpm typecheck`, `pnpm test`, `pnpm test:coverage`)\n\n**Documentation & Workflow:**\n- docs(workflow): add `improve-ut` skill/command to standardize UT planning and reporting\n- docs(spec): update backend platform integration guidance for Codex scope and common pitfalls",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Existing projects can adopt Codex via re-init/update workflows; no file rename/delete migration is needed."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.3",
|
|
3
|
+
"description": "Code-spec enforcement, codex skill fixes, and add_session robustness",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(templates): tolerate formatted markdown in add_session.py table separator matching — `startswith(\"|---\")` replaced with `re.match(r\"^\\|\\s*-\", line)` to handle formatters adding spaces\n- fix(codex): replace `/cviauto:xxx` with `$xxx` syntax in codex skill templates (finish-work, update-spec, start)\n- fix(codex): remove Claude Code-specific `Task()`, `subagent_type`, `model: \"opus\"` references from codex start skill\n\n**Enhancements:**\n- feat(codex): add codex platform support to local cli_adapter.py (config dir, detect, command path)\n- docs(code-spec): enforce executable spec requirements — add Step 1.5 Code-Spec Depth Requirement to start, Section 2.5 Hard Block to finish-work, 7-section structure to update-spec\n- docs(templates): sync code-spec requirements to all 5 platform command templates\n\n**Testing:**\n- test(regression): add [rc.2] regression test for add_session.py table separator fix",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Fixes and enhancements are template-level only."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.4",
|
|
3
|
+
"description": "Active spec sync in finish agent and codex skill template fixes",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Enhancements:**\n- feat(templates): finish agent now actively syncs spec docs during pipeline runs — injects `update-spec.md` into finish context across all pipeline platforms (claude/iflow/opencode), rewrites finish workflow from passive verification to active spec sync that detects new patterns/contracts and updates spec files before confirming PR readiness\n\n**Documentation:**\n- docs(templates): update dispatch.md across claude/iflow/opencode to document the new finish-phase spec injection (update-spec.md + finish-work.md + prd.md)\n- docs(templates): update finish-work.md block rule — pipeline platforms note automatic spec sync by finish agent, non-pipeline platforms (cursor/codex) retain manual-first wording\n- docs(codex): restore code-spec enforcement sections (Section 2.5 Hard Block) in codex skill templates that were missing from initial codex integration",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Template-level changes only — run `cviauto update` to sync."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.5",
|
|
3
|
+
"description": "Brainstorm templates for all platforms",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Enhancements:**\n- feat(templates): add brainstorm command to all 5 platform templates (claude/iflow/opencode/cursor/codex) with platform-specific command syntax — previously only existed in deployed dirs, never generated by `cviauto init/update`\n\n**Documentation:**\n- docs(templates): add brainstorm references to start commands across iflow/opencode/cursor/codex — adds Complex Task classification, brainstorm-first workflow section, and command table entry (matching existing Claude start.md)",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Template-level changes only — run `cviauto update` to sync."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0-rc.6",
|
|
3
|
+
"description": "4 new platforms: Kilo, Kiro, Gemini CLI, Antigravity",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**New Platforms:**\n- feat(kilo): add Kilo CLI as commands-only platform (.kilocode/commands/cviauto/)\n- feat(kiro): add Kiro Code as skills-based platform (.kiro/skills/)\n- feat(gemini): add Gemini CLI as first TOML-format command platform (.gemini/commands/cviauto/*.toml)\n- feat(antigravity): add Antigravity as workflow-based platform (.agent/workflows/)\n\n**Bug Fixes:**\n- fix(scripts): remove non-existent spec/shared/ references from init-context defaults\n- fix(templates): correct iflow start/finish-work template content\n- fix(docs): correct license badge from FSL to AGPL-3.0\n- fix(init): fix start process flow (#48)\n\n**Tests:**\n- Added 50+ new tests covering all 4 new platforms (templates, configurators, init integration, regression)",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. New platform templates only — existing projects unaffected. Run `cviauto init --kilo`, `--kiro`, `--gemini`, or `--antigravity` to add new platform support."
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.0",
|
|
3
|
+
"description": "Stable release: Shell→Python migration, 9 AI platforms, centralized registry",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**BREAKING: Shell to Python Migration**\n- All `.cviauto/scripts/*.sh` replaced by Python equivalents (requires Python 3.10+)\n- Directory rename: `multi-agent/` → `multi_agent/` (underscore)\n- Command namespace migration: Claude uses `.claude/commands/cviauto/` subdirectory, Cursor uses `trellis-` prefix\n\n**New Platforms (9 total):**\n- Codex (`.agents/skills/`) — OpenAI's CLI agent\n- Kilo (`.kilocode/commands/cviauto/`) — commands-only platform\n- Kiro (`.kiro/skills/`) — skills-based platform\n- Gemini CLI (`.gemini/commands/cviauto/*.toml`) — TOML-format commands\n- Antigravity (`.agent/workflows/`) — workflow-based platform\n- Plus existing: Claude Code, Cursor, iFlow, OpenCode\n\n**Architecture:**\n- Centralized platform registry replacing scattered init/update logic\n- Extracted `resolvePlaceholders()` to shared module\n- Deduplicated `compareVersions()` to `utils/compare-versions.ts`\n- Remote spec templates from docs repo\n\n**Key Fixes:**\n- Windows encoding: `_configure_stream` with reconfigure/detach fallback for stdout/stderr\n- Windows subprocess: `CREATE_NEW_PROCESS_GROUP` on win32, `start_new_session` on Unix\n- Template placeholder roundtrip (`{{PYTHON_CMD}}` resolution)\n- CLI version comparison for prerelease versions\n- add_session.py table separator tolerance for formatted markdown\n\n**Quality:**\n- 312+ tests across 17+ files (unit, integration, regression)\n- @vitest/coverage-v8 support\n- Executable spec enforcement (7-section structure)",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"migrationGuide": "# Migration Guide: v0.2.x → v0.3.0\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| `.cviauto/scripts/*.sh` | `.cviauto/scripts/*.py` |\n| `.cviauto/scripts/common/*.sh` | `.cviauto/scripts/common/*.py` |\n| `.cviauto/scripts/multi-agent/*.sh` | `.cviauto/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| `./.cviauto/scripts/task.sh` | `python3 ./.cviauto/scripts/task.py` |\n\n## After Migration\n\nRun `cviauto update --migrate` to archive the old shell scripts to `.cviauto/scripts-shell-archive/`.",
|
|
9
|
+
"aiInstructions": "When assisting users upgrading from 0.2.x to 0.3.0:\n1. Search for files containing `.cviauto/scripts/*.sh` references and update to `.py`\n2. Replace `multi-agent/` directory references with `multi_agent/` (underscore)\n3. Always use `python3` explicitly, not just `python` (Windows compatibility)\n4. Check ALL locations: docstrings, help text, error messages, markdown docs\n5. Run `cviauto update --migrate` to remove legacy shell scripts\n\nNote: Users upgrading from any 0.3.0 prerelease (beta/rc) need no file changes — only the version stamp is updated.",
|
|
10
|
+
"notes": "Aggregated release covering beta.0 through rc.6. All file migrations were applied in beta.0 — shell scripts are archived to .cviauto/scripts-shell-archive/ (not deleted). Users upgrading from any 0.3.0 prerelease will see no file changes — only the .version stamp is updated. New projects get all 9 platform options via `cviauto init`."
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.1",
|
|
3
|
+
"description": "SessionStart reinject on clear/compact + spec template project-type awareness",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Enhancements:**\n- feat(hooks): SessionStart hook now fires on `clear` and `compact` events in addition to `startup` — ensures context is always re-injected after session reset (Claude + iFlow)\n\n**Bug Fixes:**\n- fix(iflow): command templates now write to `.iflow/commands/cviauto/` subdirectory (was missing `trellis/` prefix)\n- fix(update): `collectTemplateFiles()` now checks `fs.existsSync` for backend/frontend spec dirs — prevents ghost spec files on project types that don't have them\n- fix(init): `createSpecTemplates()` respects project type — backend-only projects skip frontend spec, vice versa\n- fix(templates): removed dead `guidesCrossPlatformThinkingGuideContent` export and dead links in guides/index.md.txt",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "No migration required. Template-level changes only — run `cviauto update` to sync. The settings.json changes (clear/compact matchers) will be applied automatically if the file hasn't been user-modified."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.10",
|
|
3
|
+
"description": "HTTPS registry URLs, record-session wording fix",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Bug Fixes:**\n- fix(init): accept HTTPS URLs for --registry option — auto-converts GitHub/GitLab/Bitbucket URLs to giget format (#87)\n- fix(templates): clarify record-session commit rule so AI models run metadata scripts without refusing (#88)",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Run `cviauto update` to sync updated record-session templates."
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.3.2",
|
|
3
|
+
"description": "Auto-commit workspace changes after record-session",
|
|
4
|
+
"breaking": false,
|
|
5
|
+
"recommendMigrate": false,
|
|
6
|
+
"changelog": "**Enhancements:**\n- feat(scripts): add auto-commit for workspace changes after record-session — journal/index changes are now automatically committed, keeping the working directory clean\n- feat(scripts): add `.cviauto/config.yaml` for project-level settings (session_commit_message, max_journal_lines)\n- feat(scripts): add `--no-commit` flag to `add_session.py` to skip auto-commit\n- feat(scripts): add `common/config.py` module for reading config.yaml with sensible defaults\n- feat(templates): update all 8 platform record-session templates with auto-commit documentation",
|
|
7
|
+
"migrations": [],
|
|
8
|
+
"notes": "Run `cviauto update` to sync new files (config.yaml, config.py) and updated templates."
|
|
9
|
+
}
|