jobarbiter 0.3.4 → 0.3.5
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 +1 -1
- package/dist/lib/observe.d.ts +1 -1
- package/dist/lib/observe.js +3 -3
- package/dist/lib/onboard.js +4 -3
- package/package.json +1 -1
- package/src/lib/observe.ts +3 -3
- package/src/lib/onboard.ts +4 -3
package/dist/index.js
CHANGED
|
@@ -745,7 +745,7 @@ program
|
|
|
745
745
|
// ============================================================
|
|
746
746
|
// observe (manage AI agent observers)
|
|
747
747
|
// ============================================================
|
|
748
|
-
const observe = program.command("observe").description("Manage AI
|
|
748
|
+
const observe = program.command("observe").description("Manage AI tool proficiency observers");
|
|
749
749
|
observe
|
|
750
750
|
.command("status")
|
|
751
751
|
.description("Show observer status and accumulated data")
|
package/dist/lib/observe.d.ts
CHANGED
package/dist/lib/observe.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* JobArbiter Observer — Hook installer for AI
|
|
2
|
+
* JobArbiter Observer — Hook installer for AI tools
|
|
3
3
|
*
|
|
4
4
|
* Installs observation hooks that extract proficiency signals from
|
|
5
5
|
* session transcripts. Uses detect-tools.ts for agent detection.
|
|
@@ -75,7 +75,7 @@ function getObserverScript() {
|
|
|
75
75
|
return `#!/usr/bin/env node
|
|
76
76
|
/**
|
|
77
77
|
* JobArbiter Observer Hook
|
|
78
|
-
* Extracts proficiency signals from AI
|
|
78
|
+
* Extracts proficiency signals from AI tool sessions.
|
|
79
79
|
*
|
|
80
80
|
* Reads JSON from stdin, writes observations to:
|
|
81
81
|
* ~/.config/jobarbiter/observer/observations.json
|
|
@@ -105,7 +105,7 @@ process.stdin.on("end", () => {
|
|
|
105
105
|
const observation = extractSignals(data);
|
|
106
106
|
if (observation) appendObservation(observation);
|
|
107
107
|
} catch (err) {
|
|
108
|
-
// Silent failure — never block the AI
|
|
108
|
+
// Silent failure — never block the AI tool
|
|
109
109
|
fs.appendFileSync(
|
|
110
110
|
path.join(os.homedir(), ".config", "jobarbiter", "observer", "errors.log"),
|
|
111
111
|
\`[\${new Date().toISOString()}] \${err.message}\\n\`
|
package/dist/lib/onboard.js
CHANGED
|
@@ -562,16 +562,17 @@ function showWorkerCompletion(state) {
|
|
|
562
562
|
console.log(`${sym.done} ${c.bold("Step 7/7 — You're In!")}\n`);
|
|
563
563
|
console.log(`Your profile is live. Here's what happens next:\n`);
|
|
564
564
|
console.log(` 📊 Your proficiency score builds automatically from:`);
|
|
565
|
-
console.log(` ${sym.bullet}
|
|
565
|
+
console.log(` ${sym.bullet} AI tool observation ${c.dim("(biggest factor — 35%)")}`);
|
|
566
566
|
console.log(` ${sym.bullet} GitHub contribution analysis ${c.dim("(20%)")}`);
|
|
567
567
|
console.log(` ${sym.bullet} Token consumption patterns ${c.dim("(15%)")}`);
|
|
568
568
|
console.log(` ${sym.bullet} Tool diversity & fluency ${c.dim("(15%)")}`);
|
|
569
569
|
console.log(` ${sym.bullet} Outcome verification ${c.dim("(15%)")}\n`);
|
|
570
570
|
console.log(` 🎯 Your proficiency ${c.bold("track")} (Orchestrator, Systems Builder, or`);
|
|
571
571
|
console.log(` Domain Translator) is determined automatically as we observe`);
|
|
572
|
-
console.log(` how you work
|
|
572
|
+
console.log(` how you work — whether that's coding, research, automation,`);
|
|
573
|
+
console.log(` content creation, or anything else. No need to self-assess.\n`);
|
|
573
574
|
console.log(` 🤖 For deeper attestation, install the ${c.highlight("jobarbiter-proficiency")}`);
|
|
574
|
-
console.log(` skill in your AI
|
|
575
|
+
console.log(` skill in your AI tools (OpenClaw, Claude Code, etc.)\n`);
|
|
575
576
|
console.log(` ${c.bold("Useful commands:")}`);
|
|
576
577
|
console.log(` ${c.highlight("jobarbiter profile score")} — Check your proficiency score`);
|
|
577
578
|
console.log(` ${c.highlight("jobarbiter observe status")} — See collected observation data`);
|
package/package.json
CHANGED
package/src/lib/observe.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* JobArbiter Observer — Hook installer for AI
|
|
2
|
+
* JobArbiter Observer — Hook installer for AI tools
|
|
3
3
|
*
|
|
4
4
|
* Installs observation hooks that extract proficiency signals from
|
|
5
5
|
* session transcripts. Uses detect-tools.ts for agent detection.
|
|
@@ -109,7 +109,7 @@ function getObserverScript(): string {
|
|
|
109
109
|
return `#!/usr/bin/env node
|
|
110
110
|
/**
|
|
111
111
|
* JobArbiter Observer Hook
|
|
112
|
-
* Extracts proficiency signals from AI
|
|
112
|
+
* Extracts proficiency signals from AI tool sessions.
|
|
113
113
|
*
|
|
114
114
|
* Reads JSON from stdin, writes observations to:
|
|
115
115
|
* ~/.config/jobarbiter/observer/observations.json
|
|
@@ -139,7 +139,7 @@ process.stdin.on("end", () => {
|
|
|
139
139
|
const observation = extractSignals(data);
|
|
140
140
|
if (observation) appendObservation(observation);
|
|
141
141
|
} catch (err) {
|
|
142
|
-
// Silent failure — never block the AI
|
|
142
|
+
// Silent failure — never block the AI tool
|
|
143
143
|
fs.appendFileSync(
|
|
144
144
|
path.join(os.homedir(), ".config", "jobarbiter", "observer", "errors.log"),
|
|
145
145
|
\`[\${new Date().toISOString()}] \${err.message}\\n\`
|
package/src/lib/onboard.ts
CHANGED
|
@@ -675,7 +675,7 @@ function showWorkerCompletion(state: OnboardState): void {
|
|
|
675
675
|
console.log(`Your profile is live. Here's what happens next:\n`);
|
|
676
676
|
|
|
677
677
|
console.log(` 📊 Your proficiency score builds automatically from:`);
|
|
678
|
-
console.log(` ${sym.bullet}
|
|
678
|
+
console.log(` ${sym.bullet} AI tool observation ${c.dim("(biggest factor — 35%)")}`);
|
|
679
679
|
console.log(` ${sym.bullet} GitHub contribution analysis ${c.dim("(20%)")}`);
|
|
680
680
|
console.log(` ${sym.bullet} Token consumption patterns ${c.dim("(15%)")}`);
|
|
681
681
|
console.log(` ${sym.bullet} Tool diversity & fluency ${c.dim("(15%)")}`);
|
|
@@ -683,10 +683,11 @@ function showWorkerCompletion(state: OnboardState): void {
|
|
|
683
683
|
|
|
684
684
|
console.log(` 🎯 Your proficiency ${c.bold("track")} (Orchestrator, Systems Builder, or`);
|
|
685
685
|
console.log(` Domain Translator) is determined automatically as we observe`);
|
|
686
|
-
console.log(` how you work
|
|
686
|
+
console.log(` how you work — whether that's coding, research, automation,`);
|
|
687
|
+
console.log(` content creation, or anything else. No need to self-assess.\n`);
|
|
687
688
|
|
|
688
689
|
console.log(` 🤖 For deeper attestation, install the ${c.highlight("jobarbiter-proficiency")}`);
|
|
689
|
-
console.log(` skill in your AI
|
|
690
|
+
console.log(` skill in your AI tools (OpenClaw, Claude Code, etc.)\n`);
|
|
690
691
|
|
|
691
692
|
console.log(` ${c.bold("Useful commands:")}`);
|
|
692
693
|
console.log(` ${c.highlight("jobarbiter profile score")} — Check your proficiency score`);
|