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.
Files changed (2) hide show
  1. package/README.md +17 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
  [![MIT License](https://img.shields.io/badge/license-MIT-2563EB.svg)](LICENSE)
9
9
  [![Codex Skill](https://img.shields.io/badge/Codex-skill-111827)](job-application-agent/SKILL.md)
10
10
  [![Node 20+](https://img.shields.io/badge/Node.js-20%2B-339933?logo=nodedotjs&logoColor=white)](https://nodejs.org/)
11
+ [![npm](https://img.shields.io/npm/v/job-application-agent?logo=npm&color=CB3837)](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 once, stay current automatically
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
- Requires Node.js 20 or newer. The installer places the skill at `~/.codex/skills/job-application-agent` and enables automatic updates by default. It checks npm at login and every hour on macOS, Linux, and Windows, then installs the newest published version without asking users to reinstall. Candidate profile data, the canonical résumé, telemetry identity, and application ledgers remain outside the replaceable skill directory.
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
- git clone https://github.com/vaibhavarora14/job-application-agent.git
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "job-application-agent",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "A self-updating Codex skill for evidence-based job discovery, application completion, and outcome tracking.",
5
5
  "license": "MIT",
6
6
  "type": "module",