@neta-art/cohub-cli 1.10.0 → 1.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/spaces.js +1 -1
- package/package.json +4 -4
package/dist/commands/spaces.js
CHANGED
|
@@ -192,7 +192,7 @@ async function sendPrompt(command, words, opts) {
|
|
|
192
192
|
if (jsonRequested(opts))
|
|
193
193
|
return outJson(result);
|
|
194
194
|
if (result.mode === "immediate")
|
|
195
|
-
return ok(`Prompt sent — sessionId: ${result.
|
|
195
|
+
return ok(`Prompt sent — sessionId: ${result.session.id}, turnId: ${result.turn.id}`);
|
|
196
196
|
if (result.mode === "repeat")
|
|
197
197
|
return ok(`Prompt scheduled — cronJobId: ${result.cronJobId}, nextRunAt: ${result.nextRunAt}`);
|
|
198
198
|
return ok(`Prompt scheduled — taskRunId: ${result.taskRunId}, scheduledAt: ${result.scheduledAt}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neta-art/cohub-cli",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"description": "CLI for Cohub — spaces, sessions, and agent collaboration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -14,15 +14,15 @@
|
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@neta-art/generation": "^0.1.2",
|
|
17
|
-
"commander": "^
|
|
17
|
+
"commander": "^14.0.3",
|
|
18
18
|
"sharp": "^0.34.5",
|
|
19
|
-
"@neta-art/cohub": "1.18.
|
|
19
|
+
"@neta-art/cohub": "1.18.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/node": "^
|
|
25
|
+
"@types/node": "^25.9.1",
|
|
26
26
|
"typescript": "^6.0.3"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|