@0dai-dev/cli 4.4.1 → 4.4.2
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/lib/commands/init.js +2 -2
- package/lib/onboarding.js +1 -0
- package/lib/wizard.js +2 -0
- package/package.json +1 -1
package/lib/commands/init.js
CHANGED
|
@@ -696,8 +696,8 @@ async function cmdInit(target, args = []) {
|
|
|
696
696
|
console.log(` ${D}1.${R} Check health: ${D}0dai doctor${R}`);
|
|
697
697
|
if (agents.length > 0) {
|
|
698
698
|
const a = agents[0];
|
|
699
|
-
console.log(` ${D}2.${R}
|
|
700
|
-
console.log(` ${D}(${agents.join(", ")} detected —
|
|
699
|
+
console.log(` ${D}2.${R} Run a task now: ${D}0dai run "write tests for auth" --now${R}`);
|
|
700
|
+
console.log(` ${D}(${agents.join(", ")} detected — runs ${a} locally and prints a scored receipt; drop --now to just queue)${R}`);
|
|
701
701
|
} else {
|
|
702
702
|
console.log(` ${D}2.${R} Install an agent CLI to enable delegation:`);
|
|
703
703
|
console.log(` ${D}claude:${R} npm i -g @anthropic-ai/claude-code ${D}(or Pro subscription)${R}`);
|
package/lib/onboarding.js
CHANGED
|
@@ -44,6 +44,7 @@ function showWhatsNext(mode, isAuthed) {
|
|
|
44
44
|
console.log(" \u2705 0dai initialized! Your AI agents are configured.");
|
|
45
45
|
console.log("");
|
|
46
46
|
console.log(" What's next:");
|
|
47
|
+
console.log(" \u2610 0dai run \"add a test for X\" --now \u2014 run a task locally, get a scored receipt");
|
|
47
48
|
console.log(" \u2610 0dai status \u2014 check your config");
|
|
48
49
|
console.log(" \u2610 0dai doctor \u2014 verify everything works");
|
|
49
50
|
if (mode === "local" && !isAuthed) {
|
package/lib/wizard.js
CHANGED
|
@@ -270,6 +270,7 @@ function stepNext(mode) {
|
|
|
270
270
|
console.log(" ✅ 0dai is ready!");
|
|
271
271
|
console.log("");
|
|
272
272
|
console.log(" Try these commands:");
|
|
273
|
+
console.log(" 0dai run \"...\" --now — run a task locally + get a scored receipt");
|
|
273
274
|
console.log(" 0dai status — see your project config");
|
|
274
275
|
console.log(" 0dai doctor — check config health");
|
|
275
276
|
if (mode === "cloud") {
|
|
@@ -380,6 +381,7 @@ module.exports = {
|
|
|
380
381
|
needsWizard,
|
|
381
382
|
isInteractive,
|
|
382
383
|
stepGenerate,
|
|
384
|
+
stepNext,
|
|
383
385
|
detectLocalStack,
|
|
384
386
|
detectProjectCommands,
|
|
385
387
|
AGENTS,
|
package/package.json
CHANGED