openings 0.1.5 → 0.1.7

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openings",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Find evidence-grounded jobs, including relevant roles you may not have searched for, without accounts or API keys.",
5
5
  "author": { "name": "Openings contributors" },
6
6
  "license": "MIT",
@@ -10,7 +10,7 @@
10
10
  "interface": {
11
11
  "displayName": "Openings",
12
12
  "shortDescription": "Find real jobs with evidence you can inspect.",
13
- "longDescription": "A free, candidate-safe job-search workflow. Build a private local index, check honest country coverage before sharing a resume, find direct and hidden opportunities across eight public ATS providers, inspect fit evidence and gaps, and generate truthful resume improvements without storing the resume or submitting an application.",
13
+ "longDescription": "A free, candidate-safe job-search workflow. Build a private local index, check honest country coverage before sharing a resume, find direct and hidden opportunities across nine public ATS providers, inspect fit evidence and gaps, and generate truthful resume improvements without storing the resume or submitting an application.",
14
14
  "developerName": "Openings contributors",
15
15
  "category": "Productivity",
16
16
  "capabilities": ["Coverage-aware job discovery", "Evidence-grounded fit analysis", "Truthful resume optimization"],
package/README.md CHANGED
@@ -4,7 +4,7 @@ A free, candidate-safe job search for AI agents.
4
4
 
5
5
  Openings indexes public company job boards into a private index on your machine and exposes it to any MCP client. Your agent can find roles that fit a resume, explain the fit with evidence, and propose truthful resume improvements. There are no accounts, no API keys, no model calls, and no way to submit an application.
6
6
 
7
- - **Eight providers.** Greenhouse, Lever, Ashby, Workday, Recruitee, SmartRecruiters, Workable, and Breezy, crawled from their public structured endpoints. No HTML scraping.
7
+ - **Nine providers.** Greenhouse, Lever, Ashby, Workday, Recruitee, SmartRecruiters, Workable, Breezy, and Freshteam, crawled from their public structured endpoints. No HTML scraping.
8
8
  - **Verified sources only.** Every company in the catalog passed an identity check against its own board.
9
9
  - **Resumes stay in memory.** Resume content is parsed for a single request and never written to disk.
10
10
  - **Honest coverage.** Before you share a resume, Openings tells you how many employers and jobs it actually has for your countries.
@@ -89,9 +89,11 @@ bun run src/cli.ts sources verify data/source-candidates.json
89
89
 
90
90
  The verifier resolves the canonical board endpoint, validates its payload, applies the provider's identity check, and regenerates the catalog atomically. Rejected candidates are reported with a machine-readable reason. Boards discovered without a known company website can enter as *board-verified* sources instead, admitted on the provider's own identity and marked `provider_board` in the catalog so tools and pages can label them; see the maintainer guide. `cohorts` records why a source was selected for a country campaign; eligibility is always decided per job. An optional `slug` keeps existing job IDs stable when it differs from the first label of the company domain.
91
91
 
92
- ## Sharing crawls
92
+ ## Sharing crawls and usage
93
93
 
94
- The packaged server reports each source you crawl to the shared Openings aggregator at `openings.avagama.co`, which merges reports from every install and publishes the result. New installs download the published index on first setup instead of crawling every source. Only public job data is sent, never resume content. Set `OPENINGS_AGGREGATOR_URL` to an empty string to keep every crawl local, or to another URL to use your own aggregator. The source entrypoint reports only when the variable is set.
94
+ The packaged server reports each source you crawl to the shared Openings aggregator at `openings.avagama.co`, which merges reports from every install and publishes the result. New installs download the published index for their countries on first setup instead of crawling every source. Only public job data is sent in crawl reports, never resume content.
95
+
96
+ The server also sends anonymous usage events so we can see what people search for and improve coverage. Each install gets a random ID on first run, stored in the data directory. An event records the tool that ran, the countries, the intent fields you passed (roles, seniority, skills, remote, query text), the IDs of jobs you opened, and the skill and title values the parser extracted from a resume. It never includes the resume text, the quoted evidence, your name, or contact details, and no IP address is stored with it. Set `OPENINGS_USAGE=off` to stop usage events while keeping the shared index, or set `OPENINGS_AGGREGATOR_URL` to an empty string to keep everything local. The source entrypoint reports only when the aggregator variable is set.
95
97
 
96
98
  ## Privacy
97
99