careerclaw-js 1.6.1 → 1.7.1

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
@@ -6,6 +6,20 @@ Versioning follows [Semantic Versioning](https://semver.org/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [1.7.1](https://github.com/orestes-garcia-martinez/careerclaw-js/compare/careerclaw-js-v1.7.0...careerclaw-js-v1.7.1) (2026-04-02)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * update external file version ([#64](https://github.com/orestes-garcia-martinez/careerclaw-js/issues/64)) ([7257dd4](https://github.com/orestes-garcia-martinez/careerclaw-js/commit/7257dd4b649b338796191f1d5bb4e86f41091a12))
15
+
16
+ ## [1.7.0](https://github.com/orestes-garcia-martinez/careerclaw-js/compare/careerclaw-js-v1.6.1...careerclaw-js-v1.7.0) (2026-04-02)
17
+
18
+
19
+ ### Features
20
+
21
+ * **config:** update HN Who is Hiring thread ID to April 2026 ([#62](https://github.com/orestes-garcia-martinez/careerclaw-js/issues/62)) ([53c34d0](https://github.com/orestes-garcia-martinez/careerclaw-js/commit/53c34d00cc3e60c0cb37a26a88a7b845ab049104))
22
+
9
23
  ## [1.6.1](https://github.com/orestes-garcia-martinez/careerclaw-js/compare/careerclaw-js-v1.6.0...careerclaw-js-v1.6.1) (2026-04-02)
10
24
 
11
25
 
package/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: CareerClaw
3
- version: 1.6.1
3
+ version: 1.7.1
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,
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.6.1 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
22
+ export declare const USER_AGENT = "careerclaw-js/1.7.1 (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.6.1 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
37
+ export const USER_AGENT = "careerclaw-js/1.7.1 (https://github.com/orestes-garcia-martinez/careerclaw-js)";
38
38
  // ---------------------------------------------------------------------------
39
39
  // Job sources
40
40
  // ---------------------------------------------------------------------------
@@ -52,7 +52,7 @@ export const REMOTEOK_RSS_URL = "https://remoteok.com/remote-jobs.rss";
52
52
  * To find the current thread ID: search HN for "Ask HN: Who is hiring?"
53
53
  * and copy the numeric ID from the URL (e.g. https://news.ycombinator.com/item?id=43354977).
54
54
  */
55
- export const HN_WHO_IS_HIRING_ID = parseInt(process.env["HN_WHO_IS_HIRING_ID"] ?? "47219668", 10);
55
+ export const HN_WHO_IS_HIRING_ID = parseInt(process.env["HN_WHO_IS_HIRING_ID"] ?? "47601859", 10);
56
56
  /** HN Firebase API base URL — public, no auth required. */
57
57
  export const HN_API_BASE = "https://hacker-news.firebaseio.com/v0";
58
58
  /** Maximum number of HN comment IDs to fetch per briefing run. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "careerclaw-js",
3
- "version": "1.6.1",
3
+ "version": "1.7.1",
4
4
  "description": "AI-powered job search automation for ClawOS, with a standalone Node.js runtime for local/manual workflows",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",