terminalhire 0.4.0 → 0.4.4
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/bin/jpi-bounties.js +636 -42
- package/dist/bin/jpi-claim.js +366 -0
- package/dist/bin/jpi-dispatch.js +1124 -158
- package/dist/bin/jpi-jobs.js +629 -40
- package/dist/bin/jpi-learn.js +51 -1
- package/dist/bin/jpi-login.js +629 -40
- package/dist/bin/jpi-profile.js +51 -1
- package/dist/bin/jpi-refresh.js +631 -42
- package/dist/bin/jpi-save.js +51 -1
- package/dist/bin/jpi-spinner.js +1 -1
- package/dist/bin/jpi-sync.js +51 -1
- package/dist/bin/spinner.js +2 -2
- package/dist/src/claims.js +85 -0
- package/dist/src/profile.js +16 -1
- package/dist/src/signal.js +16 -1
- package/package.json +1 -1
package/dist/bin/jpi-profile.js
CHANGED
|
@@ -145,7 +145,7 @@ var init_graph_data = __esm({
|
|
|
145
145
|
{ id: "airflow", parents: ["data-engineering"], synonyms: ["apache-airflow"] },
|
|
146
146
|
{ id: "dbt", parents: ["data-engineering"] },
|
|
147
147
|
{ id: "ml", synonyms: ["machine-learning"], related: [{ to: "pytorch", w: 0.5 }, { to: "tensorflow", w: 0.5 }, { to: "scikit-learn", w: 0.5 }, { to: "data-engineering", w: 0.4 }] },
|
|
148
|
-
{ id: "llm", parents: ["ml"], synonyms: ["llms", "genai", "generative-ai"], related: [{ to: "langchain", w: 0.5 }, { to: "rag", w: 0.55 }, { to: "openai", w: 0.45 }, { to: "anthropic", w: 0.45 }] },
|
|
148
|
+
{ id: "llm", parents: ["ml"], synonyms: ["llms", "genai", "generative-ai", "gpt"], related: [{ to: "langchain", w: 0.5 }, { to: "rag", w: 0.55 }, { to: "openai", w: 0.45 }, { to: "anthropic", w: 0.45 }] },
|
|
149
149
|
{ id: "pytorch", parents: ["ml"], synonyms: ["torch"], related: [{ to: "tensorflow", w: 0.5 }] },
|
|
150
150
|
{ id: "tensorflow", parents: ["ml"], synonyms: ["keras", "tf-keras"] },
|
|
151
151
|
{ id: "pandas", parents: ["python"], related: [{ to: "numpy", w: 0.6 }, { to: "data-engineering", w: 0.45 }, { to: "spark", w: 0.4 }] },
|
|
@@ -158,6 +158,14 @@ var init_graph_data = __esm({
|
|
|
158
158
|
{ id: "anthropic", parents: ["llm"], synonyms: ["claude"] },
|
|
159
159
|
{ id: "rag", parents: ["llm"], synonyms: ["retrieval-augmented-generation"] },
|
|
160
160
|
{ id: "mlops", parents: ["ml"], related: [{ to: "devops", w: 0.4 }] },
|
|
161
|
+
{ id: "agents", parents: ["llm"], synonyms: ["agentic", "ai-agents", "multi-agent"], related: [{ to: "rag", w: 0.4 }] },
|
|
162
|
+
{ id: "mcp", parents: ["agents"], synonyms: ["model-context-protocol"], related: [{ to: "llm", w: 0.45 }] },
|
|
163
|
+
{ id: "inference", parents: ["ml"], synonyms: ["model-inference", "llm-inference", "model-serving"], related: [{ to: "mlops", w: 0.5 }, { to: "llm", w: 0.4 }] },
|
|
164
|
+
{ id: "embeddings", parents: ["ml"], synonyms: ["embedding", "vector-embeddings"], related: [{ to: "rag", w: 0.55 }, { to: "llm", w: 0.45 }] },
|
|
165
|
+
{ id: "prompt-engineering", parents: ["llm"], synonyms: ["prompting", "prompt"] },
|
|
166
|
+
{ id: "fine-tuning", parents: ["ml"], synonyms: ["finetuning", "fine-tune", "rlhf"], related: [{ to: "llm", w: 0.5 }] },
|
|
167
|
+
{ id: "computer-vision", parents: ["ml"], synonyms: ["image-recognition", "object-detection"] },
|
|
168
|
+
{ id: "recsys", parents: ["ml"], synonyms: ["recommender-systems", "recommendation-systems", "recommendation"] },
|
|
161
169
|
// ── Mobile ──────────────────────────────────────────────────────────────────
|
|
162
170
|
{ id: "mobile", related: [{ to: "ios", w: 0.5 }, { to: "android", w: 0.5 }] },
|
|
163
171
|
{ id: "ios", parents: ["mobile", "swift"], related: [{ to: "android", w: 0.4 }] },
|
|
@@ -403,10 +411,12 @@ var init_vocabulary = __esm({
|
|
|
403
411
|
});
|
|
404
412
|
|
|
405
413
|
// ../../packages/core/src/github.ts
|
|
414
|
+
var RESUME_DECAY_HALF_LIFE_MS;
|
|
406
415
|
var init_github = __esm({
|
|
407
416
|
"../../packages/core/src/github.ts"() {
|
|
408
417
|
"use strict";
|
|
409
418
|
init_vocabulary();
|
|
419
|
+
RESUME_DECAY_HALF_LIFE_MS = 30 * 24 * 60 * 60 * 1e3;
|
|
410
420
|
}
|
|
411
421
|
});
|
|
412
422
|
|
|
@@ -419,11 +429,19 @@ var init_matcher = __esm({
|
|
|
419
429
|
}
|
|
420
430
|
});
|
|
421
431
|
|
|
432
|
+
// ../../packages/core/src/feeds/http.ts
|
|
433
|
+
var init_http = __esm({
|
|
434
|
+
"../../packages/core/src/feeds/http.ts"() {
|
|
435
|
+
"use strict";
|
|
436
|
+
}
|
|
437
|
+
});
|
|
438
|
+
|
|
422
439
|
// ../../packages/core/src/feeds/greenhouse.ts
|
|
423
440
|
var init_greenhouse = __esm({
|
|
424
441
|
"../../packages/core/src/feeds/greenhouse.ts"() {
|
|
425
442
|
"use strict";
|
|
426
443
|
init_vocabulary();
|
|
444
|
+
init_http();
|
|
427
445
|
}
|
|
428
446
|
});
|
|
429
447
|
|
|
@@ -432,6 +450,7 @@ var init_ashby = __esm({
|
|
|
432
450
|
"../../packages/core/src/feeds/ashby.ts"() {
|
|
433
451
|
"use strict";
|
|
434
452
|
init_vocabulary();
|
|
453
|
+
init_http();
|
|
435
454
|
}
|
|
436
455
|
});
|
|
437
456
|
|
|
@@ -440,6 +459,7 @@ var init_lever = __esm({
|
|
|
440
459
|
"../../packages/core/src/feeds/lever.ts"() {
|
|
441
460
|
"use strict";
|
|
442
461
|
init_vocabulary();
|
|
462
|
+
init_http();
|
|
443
463
|
}
|
|
444
464
|
});
|
|
445
465
|
|
|
@@ -448,6 +468,7 @@ var init_himalayas = __esm({
|
|
|
448
468
|
"../../packages/core/src/feeds/himalayas.ts"() {
|
|
449
469
|
"use strict";
|
|
450
470
|
init_vocabulary();
|
|
471
|
+
init_http();
|
|
451
472
|
}
|
|
452
473
|
});
|
|
453
474
|
|
|
@@ -464,6 +485,7 @@ var init_wwr = __esm({
|
|
|
464
485
|
"use strict";
|
|
465
486
|
init_vocabulary();
|
|
466
487
|
init_entities();
|
|
488
|
+
init_http();
|
|
467
489
|
}
|
|
468
490
|
});
|
|
469
491
|
|
|
@@ -473,13 +495,17 @@ var init_hn = __esm({
|
|
|
473
495
|
"use strict";
|
|
474
496
|
init_vocabulary();
|
|
475
497
|
init_entities();
|
|
498
|
+
init_http();
|
|
476
499
|
}
|
|
477
500
|
});
|
|
478
501
|
|
|
479
502
|
// ../../packages/core/src/feeds/bounty-gate.ts
|
|
503
|
+
var BOUNTY_REPO_DENYLIST, DENYLIST_LC;
|
|
480
504
|
var init_bounty_gate = __esm({
|
|
481
505
|
"../../packages/core/src/feeds/bounty-gate.ts"() {
|
|
482
506
|
"use strict";
|
|
507
|
+
BOUNTY_REPO_DENYLIST = ["SecureBananaLabs/bug-bounty"];
|
|
508
|
+
DENYLIST_LC = new Set(BOUNTY_REPO_DENYLIST.map((r) => r.toLowerCase()));
|
|
483
509
|
}
|
|
484
510
|
});
|
|
485
511
|
|
|
@@ -490,6 +516,27 @@ var init_github_bounties = __esm({
|
|
|
490
516
|
init_vocabulary();
|
|
491
517
|
init_entities();
|
|
492
518
|
init_bounty_gate();
|
|
519
|
+
init_http();
|
|
520
|
+
}
|
|
521
|
+
});
|
|
522
|
+
|
|
523
|
+
// ../../packages/core/src/feeds/opire.ts
|
|
524
|
+
var init_opire = __esm({
|
|
525
|
+
"../../packages/core/src/feeds/opire.ts"() {
|
|
526
|
+
"use strict";
|
|
527
|
+
init_vocabulary();
|
|
528
|
+
init_bounty_gate();
|
|
529
|
+
init_github_bounties();
|
|
530
|
+
init_http();
|
|
531
|
+
}
|
|
532
|
+
});
|
|
533
|
+
|
|
534
|
+
// ../../packages/core/src/feeds/workable.ts
|
|
535
|
+
var init_workable = __esm({
|
|
536
|
+
"../../packages/core/src/feeds/workable.ts"() {
|
|
537
|
+
"use strict";
|
|
538
|
+
init_vocabulary();
|
|
539
|
+
init_http();
|
|
493
540
|
}
|
|
494
541
|
});
|
|
495
542
|
|
|
@@ -508,6 +555,9 @@ var init_feeds = __esm({
|
|
|
508
555
|
init_wwr();
|
|
509
556
|
init_hn();
|
|
510
557
|
init_github_bounties();
|
|
558
|
+
init_opire();
|
|
559
|
+
init_workable();
|
|
560
|
+
init_bounty_gate();
|
|
511
561
|
init_bounty_gate();
|
|
512
562
|
GREENHOUSE_SLUGS_BY_TIER = {
|
|
513
563
|
bigco: [
|