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 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 agent proficiency observers");
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")
@@ -1,5 +1,5 @@
1
1
  /**
2
- * JobArbiter Observer — Hook installer for AI agent CLIs
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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * JobArbiter Observer — Hook installer for AI agent CLIs
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 agent sessions.
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 agent
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\`
@@ -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} Coding agent observation ${c.dim("(biggest factor — 35%)")}`);
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. No need to self-assess.\n`);
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 agent (OpenClaw, Claude Code, etc.)\n`);
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jobarbiter",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "CLI for JobArbiter — the first AI Proficiency Marketplace",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * JobArbiter Observer — Hook installer for AI agent CLIs
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 agent sessions.
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 agent
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\`
@@ -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} Coding agent observation ${c.dim("(biggest factor — 35%)")}`);
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. No need to self-assess.\n`);
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 agent (OpenClaw, Claude Code, etc.)\n`);
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`);