@justestif/go-jobs 0.1.12 → 0.1.14
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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,10 +46,16 @@ go-jobs analyze <job-id>
|
|
|
46
46
|
|
|
47
47
|
# Export the raw prompt to pipe to your own LLM
|
|
48
48
|
go-jobs prompt <job-id> | llm "analyze my fit for this role"
|
|
49
|
+
|
|
50
|
+
# Print just the system prompt (no job ID or login needed)
|
|
51
|
+
go-jobs system-prompt
|
|
52
|
+
go-jobs system-prompt | pbcopy
|
|
49
53
|
```
|
|
50
54
|
|
|
51
55
|
`go-jobs prompt` outputs the full analysis prompt without calling any LLM — no API key needed, just a resume on file.
|
|
52
56
|
|
|
57
|
+
`go-jobs system-prompt` prints only the system prompt — no job ID, no login, no DB required.
|
|
58
|
+
|
|
53
59
|
## Use with AI agents
|
|
54
60
|
|
|
55
61
|
The CLI is designed to work as a tool for AI coding agents. Give your agent a prompt like:
|
|
@@ -86,6 +92,7 @@ go-jobs prompt <job-id> | llm "optimize my resume for this role"
|
|
|
86
92
|
| `go-jobs resume clear` | Remove stored resume |
|
|
87
93
|
| `go-jobs analyze <id>` | AI analysis of job vs resume |
|
|
88
94
|
| `go-jobs prompt <id>` | Export raw LLM prompt |
|
|
95
|
+
| `go-jobs system-prompt` | Print the Job Coach system prompt |
|
|
89
96
|
| `go-jobs scrape` | Run the scrape pipeline |
|
|
90
97
|
| `go-jobs enrich` | Run enrichment on untagged jobs |
|
|
91
98
|
| `go-jobs serve` | Start the web server |
|