job-application-agent 2.0.2 → 2.0.3
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 +17 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
[](LICENSE)
|
|
9
9
|
[](job-application-agent/SKILL.md)
|
|
10
10
|
[](https://nodejs.org/)
|
|
11
|
+
[](https://www.npmjs.com/package/job-application-agent)
|
|
11
12
|
|
|
12
13
|
**Discover better roles · Apply with verified facts · Keep private data local · Learn from outcomes**
|
|
13
14
|
|
|
@@ -19,13 +20,25 @@
|
|
|
19
20
|
|
|
20
21
|
Job Application Agent helps Codex discover, qualify, complete, and track your own job applications—without inventing credentials or hiding consequential decisions. It combines browser-assisted form filling with a verified résumé, candidate-defined targeting, secure local profile storage, duplicate detection, and an application ledger.
|
|
21
22
|
|
|
22
|
-
## Install
|
|
23
|
+
## Install — for humans and agents
|
|
24
|
+
|
|
25
|
+
Run this one canonical command in a terminal:
|
|
23
26
|
|
|
24
27
|
```bash
|
|
25
28
|
npx job-application-agent@latest install
|
|
26
29
|
```
|
|
27
30
|
|
|
28
|
-
|
|
31
|
+
If you are asking a coding agent to set it up, paste this:
|
|
32
|
+
|
|
33
|
+
```text
|
|
34
|
+
Install the Job Application Agent by running:
|
|
35
|
+
npx job-application-agent@latest install
|
|
36
|
+
|
|
37
|
+
Then confirm the installed version with:
|
|
38
|
+
npx job-application-agent@latest status
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Requires Node.js 20 or newer. The installer places the skill at `~/.codex/skills/job-application-agent` and enables automatic updates by default. Restart Codex after the first installation so it discovers the skill. The updater checks npm at login, every hour on macOS, Linux, and Windows, and at the start of a job-application workflow. Candidate profile data, the canonical résumé, telemetry identity, and application ledgers remain outside the replaceable skill directory.
|
|
29
42
|
|
|
30
43
|
```bash
|
|
31
44
|
# See the installed version and update mode
|
|
@@ -73,12 +86,10 @@ It never reads browser cookies or session files, and it records an application a
|
|
|
73
86
|
### 1. Install the skill
|
|
74
87
|
|
|
75
88
|
```sh
|
|
76
|
-
|
|
77
|
-
mkdir -p ~/.codex/skills
|
|
78
|
-
cp -R job-application-agent/job-application-agent ~/.codex/skills/
|
|
89
|
+
npx job-application-agent@latest install
|
|
79
90
|
```
|
|
80
91
|
|
|
81
|
-
Restart Codex so it discovers the skill.
|
|
92
|
+
This is the supported installation path for both people and coding agents. Restart Codex so it discovers the skill.
|
|
82
93
|
|
|
83
94
|
### 2. Onboard your profile
|
|
84
95
|
|
package/package.json
CHANGED