job-application-agent 3.4.1 → 3.4.2
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
CHANGED
|
@@ -9,22 +9,42 @@
|
|
|
9
9
|
[](LICENSE)
|
|
10
10
|
[](job-application-agent/SKILL.md)
|
|
11
11
|
|
|
12
|
-
[Get started](#-get-started) · [Safety](#-safety) · [Privacy](#-privacy) · [Dashboard](https://job-application-agent-telemetry.varora1406.workers.dev/) · [Security](SECURITY.md)
|
|
12
|
+
[Get started](#-get-started) · [Privacy in 30 seconds](#-privacy-in-30-seconds) · [Safety](#-safety) · [Privacy](#-privacy) · [Where to find it](#-where-to-find-it) · [Dashboard](https://job-application-agent-telemetry.varora1406.workers.dev/) · [Security](SECURITY.md)
|
|
13
13
|
|
|
14
14
|
</div>
|
|
15
15
|
|
|
16
|
+
```bash
|
|
17
|
+
npx job-application-agent@latest install
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npx skills add vaibhavarora14/job-application-agent
|
|
22
|
+
```
|
|
23
|
+
|
|
16
24
|
---
|
|
17
25
|
|
|
18
26
|
Job Application Agent is an [Agent Skill](https://agentskills.io/specification) that helps a coding agent discover, evaluate, complete, and track your own job applications. It uses one verified résumé, checks eligibility and duplicates, and records only confirmed submissions.
|
|
19
27
|
|
|
28
|
+
## 🔒 Privacy in 30 seconds
|
|
29
|
+
|
|
30
|
+
- OS credential store for profile
|
|
31
|
+
- One verified résumé; refuse unverifiable claims
|
|
32
|
+
- Never reads cookies/session files; pauses for SSO/MFA/CAPTCHA/legal
|
|
33
|
+
- Only records confirmed submissions (filled ≠ applied)
|
|
34
|
+
- Analytics/community sharing opt-out via CLI
|
|
35
|
+
|
|
20
36
|
## 🚀 Get started
|
|
21
37
|
|
|
22
|
-
Install it:
|
|
38
|
+
Install it with either:
|
|
23
39
|
|
|
24
40
|
```bash
|
|
25
41
|
npx job-application-agent@latest install
|
|
26
42
|
```
|
|
27
43
|
|
|
44
|
+
```bash
|
|
45
|
+
npx skills add vaibhavarora14/job-application-agent
|
|
46
|
+
```
|
|
47
|
+
|
|
28
48
|
Then tell your coding agent:
|
|
29
49
|
|
|
30
50
|
```text
|
|
@@ -158,6 +178,18 @@ Updates are staged and validated before replacement. Private candidate state liv
|
|
|
158
178
|
|
|
159
179
|
</details>
|
|
160
180
|
|
|
181
|
+
## 📍 Where to find it
|
|
182
|
+
|
|
183
|
+
- [jobappagent.com](https://jobappagent.com) — product site (cloud launch Oct 1; open-source skill on GitHub/npm)
|
|
184
|
+
- [GitHub](https://github.com/vaibhavarora14/job-application-agent)
|
|
185
|
+
- [npm](https://www.npmjs.com/package/job-application-agent)
|
|
186
|
+
- [skills.sh](https://skills.sh/vaibhavarora14/job-application-agent)
|
|
187
|
+
- [Agent Skills discussion](https://github.com/agentskills/agentskills/discussions/537)
|
|
188
|
+
- [awesome-agent-skills (Community Skills)](https://github.com/VoltAgent/awesome-agent-skills)
|
|
189
|
+
- [SkillHub](https://www.skillhub.club/app/skills/b99cbef5-2445-47d0-94d0-e6d1fac81263) (may still be in review)
|
|
190
|
+
- [ClawHub](https://clawhub.ai/vaibhavarora14/skills/job-application-agent)
|
|
191
|
+
- [cursor.directory](https://cursor.directory/plugins/job-application-agent) (pending review)
|
|
192
|
+
|
|
161
193
|
## 🧰 Develop
|
|
162
194
|
|
|
163
195
|
```bash
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SKILL_VERSION = '3.4.
|
|
1
|
+
export const SKILL_VERSION = '3.4.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "job-application-agent",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.2",
|
|
4
4
|
"description": "A privacy-first Agent Skill and CLI for evidence-based job discovery, application completion, and outcome tracking.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,9 +19,15 @@
|
|
|
19
19
|
"skill",
|
|
20
20
|
"job-search",
|
|
21
21
|
"job-application",
|
|
22
|
-
"career"
|
|
22
|
+
"career",
|
|
23
|
+
"privacy",
|
|
24
|
+
"claude",
|
|
25
|
+
"cursor",
|
|
26
|
+
"codex",
|
|
27
|
+
"resume",
|
|
28
|
+
"browser-automation"
|
|
23
29
|
],
|
|
24
|
-
"homepage": "https://
|
|
30
|
+
"homepage": "https://jobappagent.com",
|
|
25
31
|
"repository": {
|
|
26
32
|
"type": "git",
|
|
27
33
|
"url": "git+https://github.com/vaibhavarora14/job-application-agent.git"
|