terminalhire 0.4.6 → 0.5.0
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/README.md +11 -0
- package/dist/bin/jpi-dispatch.js +1201 -120
- package/dist/bin/jpi-trajectory.js +1076 -0
- package/dist/src/trajectory.js +927 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,6 +45,17 @@ terminalhire jobs --limit 20 # show top 20 results (default: 10)
|
|
|
45
45
|
terminalhire jobs --remote-only # filter to remote roles only
|
|
46
46
|
terminalhire jobs --all # show all matches above zero score
|
|
47
47
|
|
|
48
|
+
terminalhire bounties # day-sized paid tasks you can knock out today
|
|
49
|
+
terminalhire bounties --priced # only bounties with a known $ amount
|
|
50
|
+
|
|
51
|
+
terminalhire claim record <id|issueUrl> # claim a bounty locally + print the executor brief
|
|
52
|
+
terminalhire claim list --active # list your active claims + accepted-PR rate
|
|
53
|
+
terminalhire claim status <id> # poll source PR merge state (updates the metric)
|
|
54
|
+
|
|
55
|
+
terminalhire trajectory # trajectory from your local Claude Code corpus
|
|
56
|
+
terminalhire trajectory --export # write a derived score + Markdown to ~/.terminalhire/
|
|
57
|
+
terminalhire trajectory --inward # also show private rework/recovery (never exported)
|
|
58
|
+
|
|
48
59
|
terminalhire profile --show # inspect your encrypted local profile (incl. GitHub fields)
|
|
49
60
|
terminalhire profile --edit # set displayName, contactEmail, prefs
|
|
50
61
|
terminalhire profile --delete # wipe profile and encryption key from disk
|