tide-commander 0.84.2 → 0.85.0
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/README.md +4 -1
- package/dist/assets/main-BB4dFHqm.css +1 -0
- package/dist/assets/{main-BSaZHBzs.js → main-hADDQllW.js} +97 -97
- package/dist/assets/{web-GtGat3e7.js → web-C9K1Th3w.js} +1 -1
- package/dist/index.html +2 -2
- package/dist/locales/de/config.json +4 -1
- package/dist/locales/en/config.json +4 -1
- package/dist/locales/es/config.json +4 -1
- package/dist/locales/fr/config.json +4 -1
- package/dist/locales/hi/config.json +4 -1
- package/dist/locales/it/config.json +4 -1
- package/dist/locales/ja/config.json +4 -1
- package/dist/locales/pt/config.json +4 -1
- package/dist/locales/ru/config.json +4 -1
- package/dist/locales/zh-CN/config.json +4 -1
- package/dist/src/packages/server/claude/runner/process-lifecycle.js +2 -0
- package/dist/src/packages/server/claude/session-loader.js +158 -0
- package/dist/src/packages/server/cli.js +29 -9
- package/dist/src/packages/server/codex/backend.js +26 -2
- package/dist/src/packages/server/codex/json-event-parser.js +224 -4
- package/dist/src/packages/server/data/builtin-skills/full-notifications.js +6 -12
- package/dist/src/packages/server/routes/agents.js +29 -1
- package/dist/src/packages/server/routes/config.js +1 -1
- package/dist/src/packages/server/services/system-prompt-service.js +55 -0
- package/package.json +1 -1
- package/dist/assets/main-C6IAMrFB.css +0 -1
package/README.md
CHANGED
|
@@ -304,7 +304,7 @@ Tide Commander is a Claude Code and Codex-compatible orchestrator that provides
|
|
|
304
304
|
|
|
305
305
|
**🤖 CLI Integration (Claude + Codex)**
|
|
306
306
|
- Claude agents run `claude` with `--output-format stream-json` and use stdin for follow-up messages
|
|
307
|
-
- Codex agents run `codex exec --json` and resume via session-based command args
|
|
307
|
+
- Codex agents run `codex exec --experimental-json` and resume via session-based command args
|
|
308
308
|
- Events (tool usage, text output, errors) are parsed from stdout for both providers
|
|
309
309
|
- Sessions are persisted and can be resumed
|
|
310
310
|
|
|
@@ -475,3 +475,6 @@ Have a feature idea or found a bug? Open an [issue](https://github.com/your-repo
|
|
|
475
475
|
|
|
476
476
|
MIT
|
|
477
477
|
|
|
478
|
+
|
|
479
|
+
Added a line.
|
|
480
|
+
Another line added.
|