jobarbiter 0.3.7 → 0.3.8
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/lib/onboard.js +10 -2
- package/package.json +1 -1
- package/src/lib/onboard.ts +10 -2
package/dist/lib/onboard.js
CHANGED
|
@@ -457,7 +457,12 @@ async function runToolDetectionStep(prompt, config) {
|
|
|
457
457
|
}
|
|
458
458
|
if (result.installed.length > 0) {
|
|
459
459
|
console.log(`\n ${sym.check} ${c.success(`${result.installed.length} observer${result.installed.length > 1 ? "s" : ""} installed!`)}`);
|
|
460
|
-
console.log(c.
|
|
460
|
+
console.log(`\n ${c.bold("What happens now?")}`);
|
|
461
|
+
console.log(` Observers run automatically each time you use your AI tools.`);
|
|
462
|
+
console.log(` Just work normally — every Claude Code session, every Gemini`);
|
|
463
|
+
console.log(` conversation, every Codex task builds your profile.\n`);
|
|
464
|
+
console.log(` ${sym.arrow} ${c.highlight("Your next AI session is your first proficiency data point.")}`);
|
|
465
|
+
console.log(c.dim(` Tip: The more you use your tools, the richer your profile becomes.\n`));
|
|
461
466
|
}
|
|
462
467
|
}
|
|
463
468
|
else {
|
|
@@ -567,7 +572,10 @@ async function connectProvider(prompt, providerId, providerName) {
|
|
|
567
572
|
}
|
|
568
573
|
function showWorkerCompletion(state) {
|
|
569
574
|
console.log(`${sym.done} ${c.bold("Step 7/7 — You're In!")}\n`);
|
|
570
|
-
console.log(`Your profile is live. Here's
|
|
575
|
+
console.log(`Your profile is live. Here's how it builds:\n`);
|
|
576
|
+
console.log(` 💡 ${c.bold("Just use your AI tools normally.")} Every session is observed,`);
|
|
577
|
+
console.log(` analyzed, and builds your verified proficiency profile.`);
|
|
578
|
+
console.log(` Your next AI session is your first data point.\n`);
|
|
571
579
|
console.log(` 📊 Your proficiency profile builds automatically from:`);
|
|
572
580
|
console.log(` ${c.bold("How you use AI (qualitative):")}`);
|
|
573
581
|
console.log(` ${sym.bullet} Orchestration complexity ${c.dim("— single prompts vs multi-agent pipelines")}`);
|
package/package.json
CHANGED
package/src/lib/onboard.ts
CHANGED
|
@@ -557,7 +557,12 @@ async function runToolDetectionStep(
|
|
|
557
557
|
|
|
558
558
|
if (result.installed.length > 0) {
|
|
559
559
|
console.log(`\n ${sym.check} ${c.success(`${result.installed.length} observer${result.installed.length > 1 ? "s" : ""} installed!`)}`);
|
|
560
|
-
console.log(c.
|
|
560
|
+
console.log(`\n ${c.bold("What happens now?")}`);
|
|
561
|
+
console.log(` Observers run automatically each time you use your AI tools.`);
|
|
562
|
+
console.log(` Just work normally — every Claude Code session, every Gemini`);
|
|
563
|
+
console.log(` conversation, every Codex task builds your profile.\n`);
|
|
564
|
+
console.log(` ${sym.arrow} ${c.highlight("Your next AI session is your first proficiency data point.")}`);
|
|
565
|
+
console.log(c.dim(` Tip: The more you use your tools, the richer your profile becomes.\n`));
|
|
561
566
|
}
|
|
562
567
|
} else {
|
|
563
568
|
console.log(c.dim("\n Skipped — you can install observers later with 'jobarbiter observe install'.\n"));
|
|
@@ -679,7 +684,10 @@ async function connectProvider(prompt: Prompt, providerId: string, providerName:
|
|
|
679
684
|
|
|
680
685
|
function showWorkerCompletion(state: OnboardState): void {
|
|
681
686
|
console.log(`${sym.done} ${c.bold("Step 7/7 — You're In!")}\n`);
|
|
682
|
-
console.log(`Your profile is live. Here's
|
|
687
|
+
console.log(`Your profile is live. Here's how it builds:\n`);
|
|
688
|
+
console.log(` 💡 ${c.bold("Just use your AI tools normally.")} Every session is observed,`);
|
|
689
|
+
console.log(` analyzed, and builds your verified proficiency profile.`);
|
|
690
|
+
console.log(` Your next AI session is your first data point.\n`);
|
|
683
691
|
|
|
684
692
|
console.log(` 📊 Your proficiency profile builds automatically from:`);
|
|
685
693
|
console.log(` ${c.bold("How you use AI (qualitative):")}`);
|