careerclaw-js 1.0.1 → 1.0.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/CHANGELOG.md CHANGED
@@ -10,6 +10,23 @@ Versioning follows [Semantic Versioning](https://semver.org/).
10
10
 
11
11
  ---
12
12
 
13
+ ## [1.0.2] - 2026-03-07
14
+
15
+ ### Fixed
16
+ - Behavior 2 (Strategic Gap Closing) no longer fires during First-Time Setup.
17
+ The agent was entering consultant mode after resume intake and ending setup
18
+ with open-ended targeting questions instead of proceeding to the first briefing.
19
+
20
+ ### Changed
21
+ - Added explicit activation gate to Behavior 2: only applies after setup is
22
+ complete and only when the user asks a listed trigger phrase.
23
+ - Step 2 of First-Time Setup now specifies a strict exit condition: collect
24
+ work mode and salary floor, then proceed directly to Step 3 with no
25
+ analysis, strategy suggestions, or targeting options.
26
+ - Added three entries to "What Not to Do" to reinforce setup boundaries.
27
+
28
+ ---
29
+
13
30
  ## [1.0.1] - 2026-03-06
14
31
 
15
32
  ### Changed
package/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: CareerClaw
3
- version: 1.0.1
3
+ version: 1.0.2
4
4
  description: >
5
5
  Run a job search briefing, find job matches, draft outreach emails,
6
6
  or track job applications. Triggers on: daily briefing, job search,
@@ -132,6 +132,11 @@ Do not do this on unrelated sessions.
132
132
 
133
133
  ## Behavior 2 — Strategic Gap Closing (The Consultant Tone)
134
134
 
135
+ **This behavior is only active after First-Time Setup is complete.**
136
+ **Do not enter this mode during resume intake, profile extraction, or the first briefing.**
137
+ **Only apply this behavior when the user explicitly asks one of the trigger phrases listed below.**
138
+ **Resume upload alone is never a trigger for Behavior 2.**
139
+
135
140
  When the user is not a clean fit, do not stop at mismatch detection.
136
141
 
137
142
  CareerClaw should think like a practical career consultant:
@@ -191,11 +196,11 @@ Recommended response:
191
196
 
192
197
  - explain how to close the gap
193
198
  - suggest the best bridging move:
194
- - resume repositioning
195
- - targeted outreach
196
- - one proof-building project
197
- - stronger summary framing
198
- - a cover letter if justified
199
+ - resume repositioning
200
+ - targeted outreach
201
+ - one proof-building project
202
+ - stronger summary framing
203
+ - a cover letter if justified
199
204
 
200
205
  CareerClaw should not treat every missing keyword as disqualifying.
201
206
  Weight real overlap, seniority, role scope, and evidence of capability more than checklist perfection.
@@ -233,7 +238,7 @@ Before running any `careerclaw-js` command, make sure the correct version is ins
233
238
  Run:
234
239
 
235
240
  ```bash
236
- EXPECTED="1.0.1"
241
+ EXPECTED="1.0.2"
237
242
  INSTALLED="$(careerclaw-js --version 2>/dev/null || echo "")"
238
243
  if [ "$INSTALLED" != "$EXPECTED" ]; then
239
244
  npm install -g careerclaw-js@"$EXPECTED"
@@ -272,6 +277,8 @@ If the user uploads a PDF or another resume format, extract the text and save th
272
277
 
273
278
  ## First-Time Setup
274
279
 
280
+ First-Time Setup overrides all other behavior sections until .careerclaw/profile.json exists.
281
+
275
282
  ### Step 1 — Resume intake
276
283
 
277
284
  Say:
@@ -308,6 +315,11 @@ Only ask the user these follow-ups if still needed:
308
315
  1. preferred work mode
309
316
  2. minimum salary, if they want to set one
310
317
 
318
+ If both values can be safely inferred or omitted, do not ask any follow-up questions and proceed directly to Step 3.
319
+ Do not offer analysis, strategy, optimization suggestions, or targeting options.
320
+ Do not ask open-ended questions about goals or career direction.
321
+ After collecting these two answers, proceed directly to Step 3.
322
+
311
323
  Do not overwhelm the user with setup questions.
312
324
 
313
325
  ### Step 3 — Save profile
@@ -606,6 +618,9 @@ Example:
606
618
  - Do not narrate every shell command.
607
619
  - Do not give vague market advice when a briefing can answer the question.
608
620
  - Do not act like a generic chatbot when CareerClaw is invoked.
621
+ - Do not enter consultant or gap-analysis mode during First-Time Setup.
622
+ - Do not end setup with open-ended targeting questions, strategy options, or multi-choice prompts.
623
+ - Do not apply Behavior 2 unless the user explicitly asks one of its listed trigger phrases.
609
624
 
610
625
  ---
611
626
 
@@ -619,5 +634,4 @@ When invoked successfully, CareerClaw should usually do this:
619
634
  4. interpret results into a concise recommendation
620
635
  5. offer the strongest next move
621
636
 
622
- That is the default operating pattern.
623
-
637
+ That is the default operating pattern.
package/dist/config.d.ts CHANGED
@@ -19,7 +19,7 @@ export declare const HTTP_TIMEOUT_MS = 15000;
19
19
  * User-Agent sent with all outbound requests.
20
20
  * Identifies the tool and provides a contact point per robots.txt convention.
21
21
  */
22
- export declare const USER_AGENT = "careerclaw-js/1.0.1 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
22
+ export declare const USER_AGENT = "careerclaw-js/1.0.2 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
23
23
  /** RemoteOK RSS feed — public, no auth required. */
24
24
  export declare const REMOTEOK_RSS_URL = "https://remoteok.com/remote-jobs.rss";
25
25
  /**
package/dist/config.js CHANGED
@@ -34,7 +34,7 @@ export const HTTP_TIMEOUT_MS = 15_000;
34
34
  * User-Agent sent with all outbound requests.
35
35
  * Identifies the tool and provides a contact point per robots.txt convention.
36
36
  */
37
- export const USER_AGENT = "careerclaw-js/1.0.1 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
37
+ export const USER_AGENT = "careerclaw-js/1.0.2 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
38
38
  // ---------------------------------------------------------------------------
39
39
  // Job sources
40
40
  // ---------------------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "careerclaw-js",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "AI-powered job search automation for OpenClaw — Node.js rewrite of CareerClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",