@justestif/go-jobs 0.1.10 → 0.1.12

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 +34 -34
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,25 +10,25 @@ CLI for [go-jobs](https://github.com/justEstif/go-jobs) — a self-hosted job ag
10
10
  npm install -g @justestif/go-jobs
11
11
  ```
12
12
 
13
- This downloads the prebuilt `jobs` binary for your platform (macOS, Linux, Windows).
13
+ This downloads the prebuilt `go-jobs` binary for your platform (macOS, Linux, Windows).
14
14
 
15
15
  ## Quick start
16
16
 
17
17
  ```sh
18
18
  # Target the hosted site
19
- jobs --base-url https://jobs.estifanos.cc search --query "backend engineer"
19
+ go-jobs --base-url https://jobs.estifanos.cc search --query "backend engineer"
20
20
 
21
21
  # Register / login
22
- jobs --base-url https://jobs.estifanos.cc register
23
- jobs --base-url https://jobs.estifanos.cc login
22
+ go-jobs --base-url https://jobs.estifanos.cc register
23
+ go-jobs --base-url https://jobs.estifanos.cc login
24
24
 
25
25
  # Search with filters
26
- jobs search --query "frontend react" --role engineering --seniority senior
26
+ go-jobs search --query "frontend react" --role engineering --seniority senior
27
27
 
28
28
  # Track applications
29
- jobs interested <job-id>
30
- jobs apply <job-id>
31
- jobs pipeline
29
+ go-jobs interested <job-id>
30
+ go-jobs apply <job-id>
31
+ go-jobs pipeline
32
32
  ```
33
33
 
34
34
  If you're running your own instance, set `--base-url` to your server or export `BASE_URL`.
@@ -39,16 +39,16 @@ Analyze job postings against your resume with AI:
39
39
 
40
40
  ```sh
41
41
  # Set your resume
42
- jobs resume set --file ~/resume.md
42
+ go-jobs resume set --file ~/resume.md
43
43
 
44
44
  # Analyze a job (requires LLM provider configured in web UI)
45
- jobs analyze <job-id>
45
+ go-jobs analyze <job-id>
46
46
 
47
47
  # Export the raw prompt to pipe to your own LLM
48
- jobs prompt <job-id> | llm "analyze my fit for this role"
48
+ go-jobs prompt <job-id> | llm "analyze my fit for this role"
49
49
  ```
50
50
 
51
- `jobs prompt` outputs the full analysis prompt without calling any LLM — no API key needed, just a resume on file.
51
+ `go-jobs prompt` outputs the full analysis prompt without calling any LLM — no API key needed, just a resume on file.
52
52
 
53
53
  ## Use with AI agents
54
54
 
@@ -59,10 +59,10 @@ The CLI is designed to work as a tool for AI coding agents. Give your agent a pr
59
59
  The agent can drive the full workflow:
60
60
 
61
61
  ```sh
62
- jobs search --query "backend engineer" --role engineering --json
63
- jobs resume set --file ~/resume.md
64
- jobs analyze <job-id>
65
- jobs prompt <job-id> | llm "optimize my resume for this role"
62
+ go-jobs search --query "backend engineer" --role engineering --json
63
+ go-jobs resume set --file ~/resume.md
64
+ go-jobs analyze <job-id>
65
+ go-jobs prompt <job-id> | llm "optimize my resume for this role"
66
66
  ```
67
67
 
68
68
  **MCP server coming soon.**
@@ -71,24 +71,24 @@ jobs prompt <job-id> | llm "optimize my resume for this role"
71
71
 
72
72
  | Command | Description |
73
73
  |---|---|
74
- | `jobs search` | Search jobs with filters |
75
- | `jobs login` | Authenticate with email/password |
76
- | `jobs register` | Create an account |
77
- | `jobs logout` | Clear session |
78
- | `jobs interested <id>` | Mark a job as interested |
79
- | `jobs apply <id>` | Mark a job as applied |
80
- | `jobs status <id> <status>` | Set job status |
81
- | `jobs notes <id> <text>` | Add notes to a job |
82
- | `jobs applied` | List applied jobs |
83
- | `jobs pipeline` | View full pipeline |
84
- | `jobs resume set` | Set resume from file or stdin |
85
- | `jobs resume show` | Print stored resume |
86
- | `jobs resume clear` | Remove stored resume |
87
- | `jobs analyze <id>` | AI analysis of job vs resume |
88
- | `jobs prompt <id>` | Export raw LLM prompt |
89
- | `jobs scrape` | Run the scrape pipeline |
90
- | `jobs enrich` | Run enrichment on untagged jobs |
91
- | `jobs serve` | Start the web server |
74
+ | `go-jobs search` | Search jobs with filters |
75
+ | `go-jobs login` | Authenticate with email/password |
76
+ | `go-jobs register` | Create an account |
77
+ | `go-jobs logout` | Clear session |
78
+ | `go-jobs interested <id>` | Mark a job as interested |
79
+ | `go-jobs apply <id>` | Mark a job as applied |
80
+ | `go-jobs status <id> <status>` | Set job status |
81
+ | `go-jobs notes <id> <text>` | Add notes to a job |
82
+ | `go-jobs applied` | List applied jobs |
83
+ | `go-jobs pipeline` | View full pipeline |
84
+ | `go-jobs resume set` | Set resume from file or stdin |
85
+ | `go-jobs resume show` | Print stored resume |
86
+ | `go-jobs resume clear` | Remove stored resume |
87
+ | `go-jobs analyze <id>` | AI analysis of job vs resume |
88
+ | `go-jobs prompt <id>` | Export raw LLM prompt |
89
+ | `go-jobs scrape` | Run the scrape pipeline |
90
+ | `go-jobs enrich` | Run enrichment on untagged jobs |
91
+ | `go-jobs serve` | Start the web server |
92
92
 
93
93
  ## Self-hosting
94
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justestif/go-jobs",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "CLI for jobs.estifanos.cc — search job postings and track applications",
5
5
  "bin": {
6
6
  "go-jobs": "bin.js"