@canonmsg/codex-plugin 0.11.10 → 0.11.12
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/dist/host.js +6 -0
- package/package.json +3 -3
package/dist/host.js
CHANGED
|
@@ -820,6 +820,8 @@ export async function main() {
|
|
|
820
820
|
runtimeState.writeStreaming(session.conversationId, {
|
|
821
821
|
text: 'Thinking…',
|
|
822
822
|
status: 'thinking',
|
|
823
|
+
messageId: session.currentTurnId ?? undefined,
|
|
824
|
+
turnId: session.currentTurnId,
|
|
823
825
|
}).catch(() => { });
|
|
824
826
|
try {
|
|
825
827
|
const modelGuard = buildCodexModelGuardMessage(session.state.model, codexCliStatus);
|
|
@@ -847,6 +849,8 @@ export async function main() {
|
|
|
847
849
|
runtimeState.writeStreaming(session.conversationId, {
|
|
848
850
|
text: event.text,
|
|
849
851
|
status: 'streaming',
|
|
852
|
+
messageId: session.currentTurnId ?? undefined,
|
|
853
|
+
turnId: session.currentTurnId,
|
|
850
854
|
}).catch(() => { });
|
|
851
855
|
return;
|
|
852
856
|
}
|
|
@@ -858,6 +862,8 @@ export async function main() {
|
|
|
858
862
|
runtimeState.writeStreaming(session.conversationId, {
|
|
859
863
|
text: summarizeCommand(event.command),
|
|
860
864
|
status: 'tool',
|
|
865
|
+
messageId: session.currentTurnId ?? undefined,
|
|
866
|
+
turnId: session.currentTurnId,
|
|
861
867
|
}).catch(() => { });
|
|
862
868
|
return;
|
|
863
869
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canonmsg/codex-plugin",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.12",
|
|
4
4
|
"description": "Canon host integration for Codex CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"prepack": "npm run build"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@canonmsg/agent-sdk": "^1.
|
|
33
|
-
"@canonmsg/core": "^0.
|
|
32
|
+
"@canonmsg/agent-sdk": "^1.7.0",
|
|
33
|
+
"@canonmsg/core": "^0.24.0"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=18.0.0"
|