stage-cli 1.0.0__py3-none-any.whl
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.
- stage/__init__.py +1 -0
- stage/__main__.py +8 -0
- stage/banner.py +32 -0
- stage/bootstrap/__init__.py +0 -0
- stage/bootstrap/openjobs.py +392 -0
- stage/classify/__init__.py +29 -0
- stage/classify/eligibility.py +115 -0
- stage/classify/internship.py +64 -0
- stage/classify/role.py +91 -0
- stage/classify/scope.py +47 -0
- stage/cli/__init__.py +0 -0
- stage/cli/app.py +4 -0
- stage/cli/commands/__init__.py +8 -0
- stage/cli/commands/discovery.py +294 -0
- stage/cli/commands/insight.py +494 -0
- stage/cli/commands/pipeline.py +337 -0
- stage/cli/commands/postings.py +473 -0
- stage/cli/commands/schedule.py +171 -0
- stage/cli/housekeeping.py +64 -0
- stage/cli/logfile.py +56 -0
- stage/cli/notify.py +170 -0
- stage/cli/options.py +678 -0
- stage/cli/render.py +1398 -0
- stage/cli/runlock.py +74 -0
- stage/cli/schedule.py +702 -0
- stage/cli/schedule_state.py +363 -0
- stage/cli/selection.py +83 -0
- stage/cli/serialize.py +196 -0
- stage/companies.py +542 -0
- stage/data/companies/a.yaml +1289 -0
- stage/data/companies/b.yaml +900 -0
- stage/data/companies/c.yaml +1377 -0
- stage/data/companies/d.yaml +497 -0
- stage/data/companies/e.yaml +519 -0
- stage/data/companies/f.yaml +454 -0
- stage/data/companies/g.yaml +601 -0
- stage/data/companies/h.yaml +446 -0
- stage/data/companies/i.yaml +503 -0
- stage/data/companies/j.yaml +138 -0
- stage/data/companies/k.yaml +278 -0
- stage/data/companies/l.yaml +402 -0
- stage/data/companies/m.yaml +937 -0
- stage/data/companies/n.yaml +549 -0
- stage/data/companies/o.yaml +371 -0
- stage/data/companies/other.yaml +58 -0
- stage/data/companies/p.yaml +825 -0
- stage/data/companies/q.yaml +121 -0
- stage/data/companies/r.yaml +583 -0
- stage/data/companies/s.yaml +1140 -0
- stage/data/companies/t.yaml +817 -0
- stage/data/companies/u.yaml +196 -0
- stage/data/companies/v.yaml +325 -0
- stage/data/companies/w.yaml +353 -0
- stage/data/companies/x.yaml +67 -0
- stage/data/companies/y.yaml +36 -0
- stage/data/companies/z.yaml +146 -0
- stage/data/fonts/DejaVuSans.LICENSE.txt +99 -0
- stage/data/fonts/DejaVuSans.ttf +0 -0
- stage/data/lexicon/company_tokens.yaml +228 -0
- stage/data/lexicon/eligibility.yaml +455 -0
- stage/data/lexicon/inclusive_suffixes.yaml +37 -0
- stage/data/lexicon/internship.yaml +187 -0
- stage/data/lexicon/language.yaml +226 -0
- stage/data/lexicon/locations.yaml +1159 -0
- stage/data/lexicon/roles.yaml +2012 -0
- stage/data/lexicon/terms.yaml +76 -0
- stage/data/lexicon/workday_facets.yaml +27 -0
- stage/data/seed_companies.yaml +198 -0
- stage/dedup/__init__.py +19 -0
- stage/dedup/identity.py +113 -0
- stage/dedup/resolve.py +97 -0
- stage/domain/__init__.py +244 -0
- stage/domain/company.py +49 -0
- stage/domain/coverage.py +86 -0
- stage/domain/custom_board.py +92 -0
- stage/domain/discovery.py +94 -0
- stage/domain/enums.py +114 -0
- stage/domain/events.py +204 -0
- stage/domain/filters.py +27 -0
- stage/domain/health.py +169 -0
- stage/domain/ids.py +48 -0
- stage/domain/job.py +47 -0
- stage/domain/matching.py +15 -0
- stage/domain/priority.py +34 -0
- stage/domain/quarantine.py +39 -0
- stage/domain/rate_state.py +78 -0
- stage/domain/retention.py +20 -0
- stage/domain/rotation.py +46 -0
- stage/domain/signals.py +12 -0
- stage/domain/sync_run.py +35 -0
- stage/domain/text.py +113 -0
- stage/domain/validator.py +14 -0
- stage/domain/visits.py +60 -0
- stage/domain/workday.py +38 -0
- stage/http/__init__.py +58 -0
- stage/http/breaker.py +53 -0
- stage/http/cache.py +44 -0
- stage/http/client.py +725 -0
- stage/http/profiles.py +101 -0
- stage/lexicon.py +370 -0
- stage/normalize/__init__.py +16 -0
- stage/normalize/language.py +47 -0
- stage/normalize/location.py +271 -0
- stage/normalize/terms.py +153 -0
- stage/normalize/urls.py +122 -0
- stage/paths.py +86 -0
- stage/py.typed +0 -0
- stage/services/__init__.py +0 -0
- stage/services/canary.py +120 -0
- stage/services/coverage.py +231 -0
- stage/services/discover.py +747 -0
- stage/services/export.py +274 -0
- stage/services/health.py +237 -0
- stage/services/maintenance.py +225 -0
- stage/services/quarantine.py +20 -0
- stage/services/query.py +86 -0
- stage/services/sync.py +1257 -0
- stage/sources/__init__.py +82 -0
- stage/sources/_text.py +79 -0
- stage/sources/ashby.py +93 -0
- stage/sources/bamboohr.py +80 -0
- stage/sources/base.py +225 -0
- stage/sources/breezy.py +90 -0
- stage/sources/collage.py +60 -0
- stage/sources/community_feeds.py +142 -0
- stage/sources/curated_markdown.py +289 -0
- stage/sources/custom_json.py +610 -0
- stage/sources/espresso.py +154 -0
- stage/sources/feed.py +44 -0
- stage/sources/greenhouse.py +104 -0
- stage/sources/jobbank.py +147 -0
- stage/sources/jobvite.py +133 -0
- stage/sources/lever.py +76 -0
- stage/sources/oracle_cloud.py +187 -0
- stage/sources/platforms.py +609 -0
- stage/sources/quebec_emploi.py +146 -0
- stage/sources/recruitee.py +96 -0
- stage/sources/simplify.py +110 -0
- stage/sources/smartrecruiters.py +216 -0
- stage/sources/speedyapply.py +200 -0
- stage/sources/themuse.py +157 -0
- stage/sources/workable.py +83 -0
- stage/sources/workday.py +524 -0
- stage/sources/zshah.py +99 -0
- stage/storage/__init__.py +29 -0
- stage/storage/migrations/0001_initial.sql +239 -0
- stage/storage/migrations/__init__.py +135 -0
- stage/storage/repository.py +213 -0
- stage/storage/search.py +28 -0
- stage/storage/sqlite_repo.py +1586 -0
- stage/storage/writer.py +249 -0
- stage/tui/__init__.py +0 -0
- stage/tui/app.py +82 -0
- stage/tui/help.py +26 -0
- stage/tui/safe.py +21 -0
- stage/tui/screens/__init__.py +0 -0
- stage/tui/screens/boards.py +186 -0
- stage/tui/screens/postings.py +509 -0
- stage/tui/screens/review.py +209 -0
- stage/tui/screens/splash.py +37 -0
- stage/tui/screens/stats.py +124 -0
- stage/tui/screens/sync.py +194 -0
- stage/tui/state.py +160 -0
- stage/tui/theme.tcss +205 -0
- stage/tui/widgets/__init__.py +0 -0
- stage_cli-1.0.0.dist-info/METADATA +379 -0
- stage_cli-1.0.0.dist-info/RECORD +170 -0
- stage_cli-1.0.0.dist-info/WHEEL +4 -0
- stage_cli-1.0.0.dist-info/entry_points.txt +2 -0
- stage_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
- name: Uber
|
|
2
|
+
platform: smartrecruiters
|
|
3
|
+
slug: uber
|
|
4
|
+
source_of_record: openjobs
|
|
5
|
+
last_verified: &id001 2026-08-14
|
|
6
|
+
- name: Ubisoft
|
|
7
|
+
platform: smartrecruiters
|
|
8
|
+
slug: ubisoft2
|
|
9
|
+
source_of_record: openjobs
|
|
10
|
+
last_verified: *id001
|
|
11
|
+
- name: Udemy
|
|
12
|
+
platform: greenhouse
|
|
13
|
+
slug: udemy
|
|
14
|
+
source_of_record: openjobs
|
|
15
|
+
last_verified: &id004 2026-08-11
|
|
16
|
+
- name: UHY
|
|
17
|
+
platform: workday
|
|
18
|
+
slug: uhyus
|
|
19
|
+
source_of_record: discover
|
|
20
|
+
last_verified: &id002 2026-08-14
|
|
21
|
+
workday_tenant: uhyus
|
|
22
|
+
workday_site: uhy
|
|
23
|
+
workday_dc: wd12
|
|
24
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
25
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
26
|
+
- name: Uken Games
|
|
27
|
+
platform: bamboohr
|
|
28
|
+
slug: uken
|
|
29
|
+
source_of_record: openjobs
|
|
30
|
+
last_verified: 2026-08-11
|
|
31
|
+
notes: '2026-08-11: enabled on slug evidence - bamboohr publishes no board name,
|
|
32
|
+
but the slug folds to the caption and the board returned 3 job(s)'
|
|
33
|
+
- name: Uline
|
|
34
|
+
platform: workday
|
|
35
|
+
slug: uline
|
|
36
|
+
source_of_record: manual
|
|
37
|
+
last_verified: 2026-08-13
|
|
38
|
+
workday_tenant: uline
|
|
39
|
+
workday_site: Uline_Careers
|
|
40
|
+
workday_dc: wd1
|
|
41
|
+
workday_facet: workerSubType:75633dceeee801286cf04247f2006205,49ddfff330911001fea2d9e45f120000
|
|
42
|
+
notes: '2026-08-13: official Workday endpoint verified; its intern facets total
|
|
43
|
+
64 listings.'
|
|
44
|
+
- name: UMB
|
|
45
|
+
platform: workday
|
|
46
|
+
slug: umb
|
|
47
|
+
source_of_record: discover
|
|
48
|
+
last_verified: 2026-08-16
|
|
49
|
+
workday_tenant: umb
|
|
50
|
+
workday_site: UMBExternal
|
|
51
|
+
workday_dc: wd1
|
|
52
|
+
notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
|
|
53
|
+
verified by a scratch sync — the board answered with 1 posting(s), 1 kept after
|
|
54
|
+
the CS-internship screens'
|
|
55
|
+
- name: Uncountable
|
|
56
|
+
platform: ashby
|
|
57
|
+
slug: uncountable
|
|
58
|
+
source_of_record: discover
|
|
59
|
+
last_verified: 2026-08-14
|
|
60
|
+
name_gate_exempt: true
|
|
61
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
62
|
+
in a feed posting, not from slug guessing; ashby publishes no board name, so the
|
|
63
|
+
name gate cannot confirm it and provenance is the evidence (32 job(s))'
|
|
64
|
+
- name: Unify
|
|
65
|
+
platform: ashby
|
|
66
|
+
slug: unify
|
|
67
|
+
source_of_record: discover
|
|
68
|
+
last_verified: 2026-08-16
|
|
69
|
+
name_gate_exempt: true
|
|
70
|
+
notes: '2026-08-16: token from this employer''s own apply URL, not slug guessing;
|
|
71
|
+
ashby publishes no board name, so provenance is the evidence (8 job(s))'
|
|
72
|
+
- name: Unilever
|
|
73
|
+
platform: workday
|
|
74
|
+
slug: unilever
|
|
75
|
+
source_of_record: openjobs
|
|
76
|
+
last_verified: *id002
|
|
77
|
+
recheck_after: &id003 2026-10-01
|
|
78
|
+
workday_tenant: unilever
|
|
79
|
+
workday_site: Unilever_Experienced_Professionals
|
|
80
|
+
workday_dc: wd3
|
|
81
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
82
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
83
|
+
- name: Unisys
|
|
84
|
+
platform: workday
|
|
85
|
+
slug: unisys
|
|
86
|
+
source_of_record: openjobs
|
|
87
|
+
last_verified: *id002
|
|
88
|
+
recheck_after: *id003
|
|
89
|
+
workday_tenant: unisys
|
|
90
|
+
workday_site: External
|
|
91
|
+
workday_dc: wd5
|
|
92
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
93
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
94
|
+
- name: Unity
|
|
95
|
+
platform: workday
|
|
96
|
+
slug: unitytech
|
|
97
|
+
source_of_record: discover
|
|
98
|
+
last_verified: 2026-08-21
|
|
99
|
+
workday_tenant: unitytech
|
|
100
|
+
workday_site: Unity
|
|
101
|
+
workday_dc: wd1
|
|
102
|
+
notes: '2026-08-21: official careers page links to Unity’s Workday board; endpoint
|
|
103
|
+
returned live postings.'
|
|
104
|
+
- name: Universidad IEU S.C.
|
|
105
|
+
platform: workday
|
|
106
|
+
slug: galileo
|
|
107
|
+
source_of_record: discover
|
|
108
|
+
last_verified: *id002
|
|
109
|
+
workday_tenant: galileo
|
|
110
|
+
workday_site: galileo_career_site
|
|
111
|
+
workday_dc: wd3
|
|
112
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
113
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
114
|
+
- name: University of Arkansas
|
|
115
|
+
platform: workday
|
|
116
|
+
slug: uasys
|
|
117
|
+
source_of_record: discover
|
|
118
|
+
last_verified: *id002
|
|
119
|
+
workday_tenant: uasys
|
|
120
|
+
workday_site: uasys
|
|
121
|
+
workday_dc: wd5
|
|
122
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
123
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
124
|
+
- name: University of Notre Dame
|
|
125
|
+
platform: smartrecruiters
|
|
126
|
+
slug: universityofnotredame
|
|
127
|
+
source_of_record: discover
|
|
128
|
+
last_verified: 2026-09-01
|
|
129
|
+
notes: '2026-09-01: verified 99 postings including a Data Science Intern.'
|
|
130
|
+
- name: University of Nevada, Reno
|
|
131
|
+
platform: smartrecruiters
|
|
132
|
+
slug: universityofnevadareno
|
|
133
|
+
source_of_record: discover
|
|
134
|
+
last_verified: *id001
|
|
135
|
+
- name: University of Rochester
|
|
136
|
+
platform: workday
|
|
137
|
+
slug: rochester
|
|
138
|
+
source_of_record: discover
|
|
139
|
+
last_verified: *id002
|
|
140
|
+
workday_tenant: rochester
|
|
141
|
+
workday_site: UR_Staff
|
|
142
|
+
workday_dc: wd5
|
|
143
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
144
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
145
|
+
- name: University of Texas at Austin
|
|
146
|
+
platform: workday
|
|
147
|
+
slug: utaustin
|
|
148
|
+
source_of_record: discover
|
|
149
|
+
last_verified: *id002
|
|
150
|
+
workday_tenant: utaustin
|
|
151
|
+
workday_site: utstudent
|
|
152
|
+
workday_dc: wd1
|
|
153
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
154
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
155
|
+
- name: University of Virginia Investment Management Company (UVIMCO)
|
|
156
|
+
platform: greenhouse
|
|
157
|
+
slug: uvimco
|
|
158
|
+
source_of_record: discover
|
|
159
|
+
last_verified: 2026-08-14
|
|
160
|
+
- name: University System of New Hampshire
|
|
161
|
+
platform: workday
|
|
162
|
+
slug: usnh
|
|
163
|
+
source_of_record: discover
|
|
164
|
+
last_verified: *id002
|
|
165
|
+
workday_tenant: usnh
|
|
166
|
+
workday_site: Careers
|
|
167
|
+
workday_dc: wd5
|
|
168
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
169
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
170
|
+
- name: Upgrade
|
|
171
|
+
platform: greenhouse
|
|
172
|
+
slug: upgrade
|
|
173
|
+
source_of_record: openjobs
|
|
174
|
+
last_verified: *id004
|
|
175
|
+
- name: UPS
|
|
176
|
+
platform: workday
|
|
177
|
+
slug: hcmportal
|
|
178
|
+
source_of_record: discover
|
|
179
|
+
last_verified: 2026-08-16
|
|
180
|
+
workday_tenant: hcmportal
|
|
181
|
+
workday_site: search
|
|
182
|
+
workday_dc: wd5
|
|
183
|
+
notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
|
|
184
|
+
verified by a scratch sync (19 posting(s), 0 kept)'
|
|
185
|
+
- name: upwork
|
|
186
|
+
platform: greenhouse
|
|
187
|
+
slug: upwork
|
|
188
|
+
source_of_record: openjobs
|
|
189
|
+
last_verified: *id004
|
|
190
|
+
- name: USE Insider
|
|
191
|
+
platform: lever
|
|
192
|
+
slug: useinsider
|
|
193
|
+
source_of_record: openjobs
|
|
194
|
+
enabled: false
|
|
195
|
+
notes: '2026-08-08: lever publishes no board name, so a 200 with jobs is not evidence
|
|
196
|
+
of the right company; needs a human to open the board once'
|
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
- name: Valeo
|
|
2
|
+
platform: workday
|
|
3
|
+
slug: valeo
|
|
4
|
+
source_of_record: discover
|
|
5
|
+
last_verified: &id001 2026-08-14
|
|
6
|
+
workday_tenant: valeo
|
|
7
|
+
workday_site: valeo_jobs
|
|
8
|
+
workday_dc: wd3
|
|
9
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
10
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
11
|
+
- name: Valstad
|
|
12
|
+
platform: ashby
|
|
13
|
+
slug: valstad
|
|
14
|
+
source_of_record: discover
|
|
15
|
+
last_verified: &id002 2026-08-14
|
|
16
|
+
name_gate_exempt: true
|
|
17
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
18
|
+
in a feed posting, not from slug guessing; ashby publishes no board name, so the
|
|
19
|
+
name gate cannot confirm it and provenance is the evidence (9 job(s))'
|
|
20
|
+
- name: Vanderlande
|
|
21
|
+
platform: workday
|
|
22
|
+
slug: vanderlande
|
|
23
|
+
source_of_record: discover
|
|
24
|
+
last_verified: *id001
|
|
25
|
+
workday_tenant: vanderlande
|
|
26
|
+
workday_site: careers
|
|
27
|
+
workday_dc: wd3
|
|
28
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
29
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
30
|
+
- name: Vanguard
|
|
31
|
+
platform: workday
|
|
32
|
+
slug: vanguard
|
|
33
|
+
source_of_record: discover
|
|
34
|
+
last_verified: 2026-08-19
|
|
35
|
+
workday_tenant: vanguard
|
|
36
|
+
workday_site: vanguard_external
|
|
37
|
+
workday_dc: wd5
|
|
38
|
+
notes: 'vanguardjobs.com is a Findly shell whose detail pages name the real tenant.
|
|
39
|
+
Verified by CXS probe: 494 postings.'
|
|
40
|
+
- name: Vanta
|
|
41
|
+
platform: ashby
|
|
42
|
+
slug: vanta
|
|
43
|
+
source_of_record: openjobs
|
|
44
|
+
last_verified: 2026-08-16
|
|
45
|
+
name_gate_exempt: true
|
|
46
|
+
notes: '2026-08-16: ats_link recorded in the OpenJobs dataset and the board answered
|
|
47
|
+
with postings, but this platform publishes no board name, so provenance is the
|
|
48
|
+
evidence rather than a name match.'
|
|
49
|
+
- name: Varda
|
|
50
|
+
platform: greenhouse
|
|
51
|
+
slug: vardaspace
|
|
52
|
+
source_of_record: discover
|
|
53
|
+
last_verified: &id006 2026-08-14
|
|
54
|
+
- name: Varonis
|
|
55
|
+
platform: jobvite
|
|
56
|
+
slug: varonis-internal
|
|
57
|
+
source_of_record: openjobs
|
|
58
|
+
last_verified: 2026-08-21
|
|
59
|
+
notes: '2026-08-21: the Jobvite API answers 401, but jobs.jobvite.com/varonis-internal/jobs
|
|
60
|
+
server-renders all 60 postings, which is the contract this row polls'
|
|
61
|
+
- name: Vast Space
|
|
62
|
+
platform: greenhouse
|
|
63
|
+
slug: vast
|
|
64
|
+
source_of_record: openjobs
|
|
65
|
+
last_verified: 2026-08-16
|
|
66
|
+
notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
|
|
67
|
+
a live probe that matched the company name on the returned board'
|
|
68
|
+
- name: Veeam Software
|
|
69
|
+
platform: greenhouse
|
|
70
|
+
slug: veeamsoftware
|
|
71
|
+
source_of_record: openjobs
|
|
72
|
+
last_verified: &id004 2026-08-11
|
|
73
|
+
- name: Veeda AI
|
|
74
|
+
platform: ashby
|
|
75
|
+
slug: veeda-labs
|
|
76
|
+
source_of_record: discover
|
|
77
|
+
last_verified: *id002
|
|
78
|
+
name_gate_exempt: true
|
|
79
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
80
|
+
in a feed posting, not from slug guessing; ashby publishes no board name, so the
|
|
81
|
+
name gate cannot confirm it and provenance is the evidence (6 job(s))'
|
|
82
|
+
- name: Veeva Systems
|
|
83
|
+
platform: lever
|
|
84
|
+
slug: veeva
|
|
85
|
+
source_of_record: discover
|
|
86
|
+
last_verified: 2026-08-17
|
|
87
|
+
notes: '2026-08-17: lever board token verified live at 839 jobs. Lever publishes
|
|
88
|
+
no board name, so identity rests on the token matching the employer and on careers.veeva.com
|
|
89
|
+
being the entry point'
|
|
90
|
+
- name: Vega Investment Technologies
|
|
91
|
+
platform: ashby
|
|
92
|
+
slug: vega
|
|
93
|
+
source_of_record: discover
|
|
94
|
+
last_verified: &id003 2026-08-16
|
|
95
|
+
name_gate_exempt: true
|
|
96
|
+
notes: '2026-08-16: token from this employer''s own apply URL, not slug guessing;
|
|
97
|
+
ashby publishes no board name, so provenance is the evidence (1 job(s))'
|
|
98
|
+
- name: Velan Studios
|
|
99
|
+
platform: workable
|
|
100
|
+
slug: velanstudios
|
|
101
|
+
source_of_record: openjobs
|
|
102
|
+
last_verified: 2026-08-17
|
|
103
|
+
notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
|
|
104
|
+
paused_until resumed it.'
|
|
105
|
+
- name: Vendelux
|
|
106
|
+
platform: ashby
|
|
107
|
+
slug: vendelux
|
|
108
|
+
source_of_record: discover
|
|
109
|
+
last_verified: *id003
|
|
110
|
+
name_gate_exempt: true
|
|
111
|
+
notes: '2026-08-16: token from this employer''s own apply URL, not slug guessing;
|
|
112
|
+
ashby publishes no board name, so provenance is the evidence (32 job(s))'
|
|
113
|
+
- name: Vention
|
|
114
|
+
platform: custom_json
|
|
115
|
+
slug: vention
|
|
116
|
+
source_of_record: discover
|
|
117
|
+
last_verified: 2026-08-20
|
|
118
|
+
enabled: false
|
|
119
|
+
notes: '2026-08-20: closed for good — the careers section hydrates from a request
|
|
120
|
+
named in no bundle, sitemap or turbo-stream, and the owner confirmed a DevTools
|
|
121
|
+
capture finds nothing.'
|
|
122
|
+
custom:
|
|
123
|
+
url: https://vention.com/careers
|
|
124
|
+
fields:
|
|
125
|
+
title: title
|
|
126
|
+
id: id
|
|
127
|
+
- name: Veolia
|
|
128
|
+
platform: smartrecruiters
|
|
129
|
+
slug: veoliaenvironnementsa
|
|
130
|
+
source_of_record: discover
|
|
131
|
+
last_verified: &id005 2026-08-14
|
|
132
|
+
- name: Vercel
|
|
133
|
+
platform: greenhouse
|
|
134
|
+
slug: vercel
|
|
135
|
+
source_of_record: openjobs
|
|
136
|
+
last_verified: 2026-08-16
|
|
137
|
+
notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
|
|
138
|
+
a live probe that matched the company name on the returned board'
|
|
139
|
+
- name: Verily
|
|
140
|
+
platform: workday
|
|
141
|
+
slug: verily
|
|
142
|
+
source_of_record: discover
|
|
143
|
+
last_verified: &id007 2026-08-17
|
|
144
|
+
workday_tenant: verily
|
|
145
|
+
workday_site: Verily_Careers
|
|
146
|
+
workday_dc: wd1
|
|
147
|
+
notes: '2026-08-17: found by a plain-HTTP scan of the employer''s own careers page
|
|
148
|
+
for a known ATS hostname, no browser and one request per host.'
|
|
149
|
+
- name: Verkada
|
|
150
|
+
platform: greenhouse
|
|
151
|
+
slug: verkada
|
|
152
|
+
source_of_record: discover
|
|
153
|
+
last_verified: 2026-08-31
|
|
154
|
+
notes: '2026-08-31: verified 282 postings including five 2027 SWE internships in
|
|
155
|
+
San Mateo.'
|
|
156
|
+
- name: Verition Group
|
|
157
|
+
platform: greenhouse
|
|
158
|
+
slug: veritiongroupllc
|
|
159
|
+
source_of_record: discover
|
|
160
|
+
last_verified: 2026-08-20
|
|
161
|
+
notes: '2026-08-20: owner-supplied careers URL; the board names itself Verition
|
|
162
|
+
Group LLC and carries 2027 internships.'
|
|
163
|
+
- name: Vertiv
|
|
164
|
+
platform: oracle_cloud
|
|
165
|
+
slug: vertiv
|
|
166
|
+
source_of_record: manual
|
|
167
|
+
last_verified: 2026-08-13
|
|
168
|
+
oracle_host: egup.fa.us2.oraclecloud.com
|
|
169
|
+
oracle_site: CX
|
|
170
|
+
notes: '2026-08-13: official Oracle candidate JSON verified; it currently includes
|
|
171
|
+
IT security internships.'
|
|
172
|
+
- name: Vertx Inc.
|
|
173
|
+
platform: workday
|
|
174
|
+
slug: vertexinc
|
|
175
|
+
source_of_record: openjobs
|
|
176
|
+
last_verified: *id001
|
|
177
|
+
recheck_after: 2026-10-01
|
|
178
|
+
workday_tenant: vertexinc
|
|
179
|
+
workday_site: VertexInc
|
|
180
|
+
workday_dc: wd1
|
|
181
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
182
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
183
|
+
- name: VetsEZ
|
|
184
|
+
platform: breezy
|
|
185
|
+
slug: vetsez
|
|
186
|
+
source_of_record: discover
|
|
187
|
+
last_verified: *id002
|
|
188
|
+
name_gate_exempt: true
|
|
189
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
190
|
+
in a feed posting, not from slug guessing; breezy publishes no board name, so
|
|
191
|
+
the name gate cannot confirm it and provenance is the evidence (47 job(s))'
|
|
192
|
+
- name: VGW
|
|
193
|
+
platform: greenhouse
|
|
194
|
+
slug: vgw
|
|
195
|
+
source_of_record: openjobs
|
|
196
|
+
last_verified: *id004
|
|
197
|
+
- name: Videotron
|
|
198
|
+
platform: smartrecruiters
|
|
199
|
+
slug: Videotron
|
|
200
|
+
source_of_record: discover
|
|
201
|
+
last_verified: *id005
|
|
202
|
+
- name: Vidsy
|
|
203
|
+
platform: lever
|
|
204
|
+
slug: vidsy
|
|
205
|
+
source_of_record: openjobs
|
|
206
|
+
last_verified: 2026-08-04
|
|
207
|
+
- name: Vidyard
|
|
208
|
+
platform: custom_json
|
|
209
|
+
slug: vidyard
|
|
210
|
+
source_of_record: discover
|
|
211
|
+
enabled: false
|
|
212
|
+
notes: The kula.ai payload names offices rather than postings and carries no per-job
|
|
213
|
+
url, so every posting would apply to the listing endpoint; parked until recaptured.
|
|
214
|
+
custom:
|
|
215
|
+
url: https://careers.kula.ai/api/internal/ats_job_posts?accountName=vidyard&page=1&type=ats_job_post.index&items=99
|
|
216
|
+
jobs_path: data.ats_job.offices
|
|
217
|
+
fields:
|
|
218
|
+
title: name
|
|
219
|
+
id: id
|
|
220
|
+
location: location
|
|
221
|
+
- name: Viking Global
|
|
222
|
+
platform: greenhouse
|
|
223
|
+
slug: vikingglobalinvestors
|
|
224
|
+
source_of_record: discover
|
|
225
|
+
last_verified: *id003
|
|
226
|
+
notes: '2026-08-16: seen in feed postings but absent from the registry; discover
|
|
227
|
+
matched greenhouse/vikingglobalinvestors with 3 job(s) and the board named itself,
|
|
228
|
+
so it is polled directly instead of secondhand'
|
|
229
|
+
- name: Viridien
|
|
230
|
+
platform: workday
|
|
231
|
+
slug: cgg
|
|
232
|
+
source_of_record: discover
|
|
233
|
+
last_verified: *id001
|
|
234
|
+
workday_tenant: cgg
|
|
235
|
+
workday_site: viridiencareers
|
|
236
|
+
workday_dc: wd103
|
|
237
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
238
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
239
|
+
- name: Virtu Financial
|
|
240
|
+
platform: greenhouse
|
|
241
|
+
slug: virtu
|
|
242
|
+
source_of_record: discover
|
|
243
|
+
last_verified: *id006
|
|
244
|
+
- name: Visa
|
|
245
|
+
platform: smartrecruiters
|
|
246
|
+
slug: visa
|
|
247
|
+
source_of_record: openjobs
|
|
248
|
+
last_verified: *id005
|
|
249
|
+
- name: Vital Lyfe
|
|
250
|
+
platform: ashby
|
|
251
|
+
slug: vital-lyfe
|
|
252
|
+
source_of_record: discover
|
|
253
|
+
last_verified: *id002
|
|
254
|
+
name_gate_exempt: true
|
|
255
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
256
|
+
in a feed posting, not from slug guessing; ashby publishes no board name, so the
|
|
257
|
+
name gate cannot confirm it and provenance is the evidence (13 job(s))'
|
|
258
|
+
- name: Vitalant
|
|
259
|
+
platform: workday
|
|
260
|
+
slug: vitalant
|
|
261
|
+
source_of_record: discover
|
|
262
|
+
last_verified: *id001
|
|
263
|
+
workday_tenant: vitalant
|
|
264
|
+
workday_site: Careers
|
|
265
|
+
workday_dc: wd12
|
|
266
|
+
notes: '2026-08-14: verified by a real sync — this board returned postings, which
|
|
267
|
+
is the only verification a Workday tenant can have without an offline probe'
|
|
268
|
+
- name: Vmax AI Corp
|
|
269
|
+
platform: ashby
|
|
270
|
+
slug: vmax
|
|
271
|
+
source_of_record: discover
|
|
272
|
+
last_verified: *id003
|
|
273
|
+
name_gate_exempt: true
|
|
274
|
+
notes: '2026-08-16: token from this employer''s own apply URL, not slug guessing;
|
|
275
|
+
ashby publishes no board name, so provenance is the evidence (8 job(s))'
|
|
276
|
+
- name: VO2 Group
|
|
277
|
+
platform: lever
|
|
278
|
+
slug: vo2-group
|
|
279
|
+
source_of_record: discover
|
|
280
|
+
last_verified: *id002
|
|
281
|
+
name_gate_exempt: true
|
|
282
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
283
|
+
in a feed posting, not from slug guessing; lever publishes no board name, so the
|
|
284
|
+
name gate cannot confirm it and provenance is the evidence (36 job(s))'
|
|
285
|
+
- name: Voldex
|
|
286
|
+
platform: ashby
|
|
287
|
+
slug: voldex
|
|
288
|
+
source_of_record: openjobs
|
|
289
|
+
last_verified: 2026-08-11
|
|
290
|
+
notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
|
|
291
|
+
the slug folds to the caption and the board returned 7 job(s)'
|
|
292
|
+
- name: Voleon
|
|
293
|
+
platform: ashby
|
|
294
|
+
slug: voleon
|
|
295
|
+
source_of_record: discover
|
|
296
|
+
last_verified: *id007
|
|
297
|
+
notes: '2026-08-17: found by careers-page ATS scan, one plain GET. verify returned
|
|
298
|
+
57 jobs and needs-a-manual-check, the expected verdict where the platform publishes
|
|
299
|
+
no board name; token equals the company name'
|
|
300
|
+
- name: Voloridge
|
|
301
|
+
platform: greenhouse
|
|
302
|
+
slug: voloridgeinvestmentmanagement
|
|
303
|
+
source_of_record: discover
|
|
304
|
+
last_verified: *id006
|
|
305
|
+
- name: Voltus
|
|
306
|
+
platform: lever
|
|
307
|
+
slug: voltus
|
|
308
|
+
source_of_record: discover
|
|
309
|
+
last_verified: *id002
|
|
310
|
+
name_gate_exempt: true
|
|
311
|
+
notes: '2026-08-14: board token taken from this employer''s own application URL
|
|
312
|
+
in a feed posting, not from slug guessing; lever publishes no board name, so the
|
|
313
|
+
name gate cannot confirm it and provenance is the evidence (12 job(s))'
|
|
314
|
+
- name: Vooban
|
|
315
|
+
platform: greenhouse
|
|
316
|
+
slug: vooban
|
|
317
|
+
source_of_record: discover
|
|
318
|
+
last_verified: 2026-08-20
|
|
319
|
+
notes: '2026-08-20: the careers page answers 403 from CloudFront, but the greenhouse
|
|
320
|
+
board behind it is open and names itself Vooban.'
|
|
321
|
+
- name: VWH Capital Management
|
|
322
|
+
platform: smartrecruiters
|
|
323
|
+
slug: vwhcapitalmanagementlp
|
|
324
|
+
source_of_record: discover
|
|
325
|
+
last_verified: *id005
|