@staff0rd/assist 0.147.3 → 0.147.4
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/index.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.147.
|
|
9
|
+
version: "0.147.4",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -2893,6 +2893,12 @@ async function next() {
|
|
|
2893
2893
|
await spawnClaude("/draft");
|
|
2894
2894
|
return;
|
|
2895
2895
|
}
|
|
2896
|
+
if (todo.length === 1) {
|
|
2897
|
+
const only = todo[0];
|
|
2898
|
+
console.log(chalk36.bold(`Starting #${only.id}: ${only.name}`));
|
|
2899
|
+
await run2(String(only.id));
|
|
2900
|
+
return;
|
|
2901
|
+
}
|
|
2896
2902
|
const choices = todo.map((i) => ({
|
|
2897
2903
|
name: `${typeLabel(i.type)} #${i.id}: ${i.name}`,
|
|
2898
2904
|
value: String(i.id)
|