@locusai/cli 0.17.14 → 0.17.15
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/bin/locus.js +3 -2
- package/package.json +1 -1
package/bin/locus.js
CHANGED
|
@@ -4054,7 +4054,8 @@ class CodexRunner {
|
|
|
4054
4054
|
const event = JSON.parse(line);
|
|
4055
4055
|
const { type, item } = event;
|
|
4056
4056
|
if (type === "item.started" && item?.type === "command_execution") {
|
|
4057
|
-
const cmd = (item.command ?? "").
|
|
4057
|
+
const cmd = (item.command ?? "").split(`
|
|
4058
|
+
`)[0].slice(0, 80);
|
|
4058
4059
|
options.onToolActivity?.(`running: ${cmd}`);
|
|
4059
4060
|
} else if (type === "item.completed" && item?.type === "command_execution") {
|
|
4060
4061
|
const code = item.exit_code;
|
|
@@ -8786,7 +8787,7 @@ ${bold("Plan saved:")} ${cyan(id)}
|
|
|
8786
8787
|
`);
|
|
8787
8788
|
return;
|
|
8788
8789
|
}
|
|
8789
|
-
process.stderr.write(` To create these issues: ${bold(`locus plan approve ${id.slice(0, 8)}
|
|
8790
|
+
process.stderr.write(` To create these issues: ${bold(`locus plan approve ${id.slice(0, 8)} --sprint <sprint name>`)}
|
|
8790
8791
|
|
|
8791
8792
|
`);
|
|
8792
8793
|
}
|