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.
Files changed (170) hide show
  1. stage/__init__.py +1 -0
  2. stage/__main__.py +8 -0
  3. stage/banner.py +32 -0
  4. stage/bootstrap/__init__.py +0 -0
  5. stage/bootstrap/openjobs.py +392 -0
  6. stage/classify/__init__.py +29 -0
  7. stage/classify/eligibility.py +115 -0
  8. stage/classify/internship.py +64 -0
  9. stage/classify/role.py +91 -0
  10. stage/classify/scope.py +47 -0
  11. stage/cli/__init__.py +0 -0
  12. stage/cli/app.py +4 -0
  13. stage/cli/commands/__init__.py +8 -0
  14. stage/cli/commands/discovery.py +294 -0
  15. stage/cli/commands/insight.py +494 -0
  16. stage/cli/commands/pipeline.py +337 -0
  17. stage/cli/commands/postings.py +473 -0
  18. stage/cli/commands/schedule.py +171 -0
  19. stage/cli/housekeeping.py +64 -0
  20. stage/cli/logfile.py +56 -0
  21. stage/cli/notify.py +170 -0
  22. stage/cli/options.py +678 -0
  23. stage/cli/render.py +1398 -0
  24. stage/cli/runlock.py +74 -0
  25. stage/cli/schedule.py +702 -0
  26. stage/cli/schedule_state.py +363 -0
  27. stage/cli/selection.py +83 -0
  28. stage/cli/serialize.py +196 -0
  29. stage/companies.py +542 -0
  30. stage/data/companies/a.yaml +1289 -0
  31. stage/data/companies/b.yaml +900 -0
  32. stage/data/companies/c.yaml +1377 -0
  33. stage/data/companies/d.yaml +497 -0
  34. stage/data/companies/e.yaml +519 -0
  35. stage/data/companies/f.yaml +454 -0
  36. stage/data/companies/g.yaml +601 -0
  37. stage/data/companies/h.yaml +446 -0
  38. stage/data/companies/i.yaml +503 -0
  39. stage/data/companies/j.yaml +138 -0
  40. stage/data/companies/k.yaml +278 -0
  41. stage/data/companies/l.yaml +402 -0
  42. stage/data/companies/m.yaml +937 -0
  43. stage/data/companies/n.yaml +549 -0
  44. stage/data/companies/o.yaml +371 -0
  45. stage/data/companies/other.yaml +58 -0
  46. stage/data/companies/p.yaml +825 -0
  47. stage/data/companies/q.yaml +121 -0
  48. stage/data/companies/r.yaml +583 -0
  49. stage/data/companies/s.yaml +1140 -0
  50. stage/data/companies/t.yaml +817 -0
  51. stage/data/companies/u.yaml +196 -0
  52. stage/data/companies/v.yaml +325 -0
  53. stage/data/companies/w.yaml +353 -0
  54. stage/data/companies/x.yaml +67 -0
  55. stage/data/companies/y.yaml +36 -0
  56. stage/data/companies/z.yaml +146 -0
  57. stage/data/fonts/DejaVuSans.LICENSE.txt +99 -0
  58. stage/data/fonts/DejaVuSans.ttf +0 -0
  59. stage/data/lexicon/company_tokens.yaml +228 -0
  60. stage/data/lexicon/eligibility.yaml +455 -0
  61. stage/data/lexicon/inclusive_suffixes.yaml +37 -0
  62. stage/data/lexicon/internship.yaml +187 -0
  63. stage/data/lexicon/language.yaml +226 -0
  64. stage/data/lexicon/locations.yaml +1159 -0
  65. stage/data/lexicon/roles.yaml +2012 -0
  66. stage/data/lexicon/terms.yaml +76 -0
  67. stage/data/lexicon/workday_facets.yaml +27 -0
  68. stage/data/seed_companies.yaml +198 -0
  69. stage/dedup/__init__.py +19 -0
  70. stage/dedup/identity.py +113 -0
  71. stage/dedup/resolve.py +97 -0
  72. stage/domain/__init__.py +244 -0
  73. stage/domain/company.py +49 -0
  74. stage/domain/coverage.py +86 -0
  75. stage/domain/custom_board.py +92 -0
  76. stage/domain/discovery.py +94 -0
  77. stage/domain/enums.py +114 -0
  78. stage/domain/events.py +204 -0
  79. stage/domain/filters.py +27 -0
  80. stage/domain/health.py +169 -0
  81. stage/domain/ids.py +48 -0
  82. stage/domain/job.py +47 -0
  83. stage/domain/matching.py +15 -0
  84. stage/domain/priority.py +34 -0
  85. stage/domain/quarantine.py +39 -0
  86. stage/domain/rate_state.py +78 -0
  87. stage/domain/retention.py +20 -0
  88. stage/domain/rotation.py +46 -0
  89. stage/domain/signals.py +12 -0
  90. stage/domain/sync_run.py +35 -0
  91. stage/domain/text.py +113 -0
  92. stage/domain/validator.py +14 -0
  93. stage/domain/visits.py +60 -0
  94. stage/domain/workday.py +38 -0
  95. stage/http/__init__.py +58 -0
  96. stage/http/breaker.py +53 -0
  97. stage/http/cache.py +44 -0
  98. stage/http/client.py +725 -0
  99. stage/http/profiles.py +101 -0
  100. stage/lexicon.py +370 -0
  101. stage/normalize/__init__.py +16 -0
  102. stage/normalize/language.py +47 -0
  103. stage/normalize/location.py +271 -0
  104. stage/normalize/terms.py +153 -0
  105. stage/normalize/urls.py +122 -0
  106. stage/paths.py +86 -0
  107. stage/py.typed +0 -0
  108. stage/services/__init__.py +0 -0
  109. stage/services/canary.py +120 -0
  110. stage/services/coverage.py +231 -0
  111. stage/services/discover.py +747 -0
  112. stage/services/export.py +274 -0
  113. stage/services/health.py +237 -0
  114. stage/services/maintenance.py +225 -0
  115. stage/services/quarantine.py +20 -0
  116. stage/services/query.py +86 -0
  117. stage/services/sync.py +1257 -0
  118. stage/sources/__init__.py +82 -0
  119. stage/sources/_text.py +79 -0
  120. stage/sources/ashby.py +93 -0
  121. stage/sources/bamboohr.py +80 -0
  122. stage/sources/base.py +225 -0
  123. stage/sources/breezy.py +90 -0
  124. stage/sources/collage.py +60 -0
  125. stage/sources/community_feeds.py +142 -0
  126. stage/sources/curated_markdown.py +289 -0
  127. stage/sources/custom_json.py +610 -0
  128. stage/sources/espresso.py +154 -0
  129. stage/sources/feed.py +44 -0
  130. stage/sources/greenhouse.py +104 -0
  131. stage/sources/jobbank.py +147 -0
  132. stage/sources/jobvite.py +133 -0
  133. stage/sources/lever.py +76 -0
  134. stage/sources/oracle_cloud.py +187 -0
  135. stage/sources/platforms.py +609 -0
  136. stage/sources/quebec_emploi.py +146 -0
  137. stage/sources/recruitee.py +96 -0
  138. stage/sources/simplify.py +110 -0
  139. stage/sources/smartrecruiters.py +216 -0
  140. stage/sources/speedyapply.py +200 -0
  141. stage/sources/themuse.py +157 -0
  142. stage/sources/workable.py +83 -0
  143. stage/sources/workday.py +524 -0
  144. stage/sources/zshah.py +99 -0
  145. stage/storage/__init__.py +29 -0
  146. stage/storage/migrations/0001_initial.sql +239 -0
  147. stage/storage/migrations/__init__.py +135 -0
  148. stage/storage/repository.py +213 -0
  149. stage/storage/search.py +28 -0
  150. stage/storage/sqlite_repo.py +1586 -0
  151. stage/storage/writer.py +249 -0
  152. stage/tui/__init__.py +0 -0
  153. stage/tui/app.py +82 -0
  154. stage/tui/help.py +26 -0
  155. stage/tui/safe.py +21 -0
  156. stage/tui/screens/__init__.py +0 -0
  157. stage/tui/screens/boards.py +186 -0
  158. stage/tui/screens/postings.py +509 -0
  159. stage/tui/screens/review.py +209 -0
  160. stage/tui/screens/splash.py +37 -0
  161. stage/tui/screens/stats.py +124 -0
  162. stage/tui/screens/sync.py +194 -0
  163. stage/tui/state.py +160 -0
  164. stage/tui/theme.tcss +205 -0
  165. stage/tui/widgets/__init__.py +0 -0
  166. stage_cli-1.0.0.dist-info/METADATA +379 -0
  167. stage_cli-1.0.0.dist-info/RECORD +170 -0
  168. stage_cli-1.0.0.dist-info/WHEEL +4 -0
  169. stage_cli-1.0.0.dist-info/entry_points.txt +2 -0
  170. stage_cli-1.0.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,1140 @@
1
+ - name: S&P Global
2
+ platform: workday
3
+ slug: spgi
4
+ source_of_record: discover
5
+ last_verified: 2026-08-20
6
+ workday_tenant: spgi
7
+ workday_site: SPGI_Careers
8
+ workday_dc: wd5
9
+ notes: '2026-08-20: careers.spglobal.com is a shell over this Workday tenant; 300
10
+ postings.'
11
+ - name: Safari AI
12
+ platform: greenhouse
13
+ slug: safariai
14
+ source_of_record: openjobs
15
+ last_verified: &id006 2026-08-11
16
+ - name: Sailpoint
17
+ platform: workday
18
+ slug: sailpoint
19
+ source_of_record: openjobs
20
+ last_verified: &id001 2026-08-14
21
+ recheck_after: &id002 2026-10-01
22
+ workday_tenant: sailpoint
23
+ workday_site: SailPoint
24
+ workday_dc: wd1
25
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
26
+ is the only verification a Workday tenant can have without an offline probe'
27
+ - name: Saint Leo University
28
+ platform: workday
29
+ slug: saintleo
30
+ source_of_record: discover
31
+ last_verified: 2026-08-16
32
+ workday_tenant: saintleo
33
+ workday_site: SLU
34
+ workday_dc: wd503
35
+ notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
36
+ verified by a scratch sync (39 posting(s), 0 kept)'
37
+ - name: Salesforce
38
+ platform: workday
39
+ slug: salesforce
40
+ source_of_record: openjobs
41
+ last_verified: *id001
42
+ recheck_after: *id002
43
+ workday_tenant: salesforce
44
+ workday_site: External_Career_Site
45
+ workday_dc: wd12
46
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
47
+ is the only verification a Workday tenant can have without an offline probe'
48
+ - name: Samaya
49
+ platform: greenhouse
50
+ slug: samayaai
51
+ source_of_record: discover
52
+ last_verified: &id003 2026-08-14
53
+ - name: Samsara
54
+ platform: greenhouse
55
+ slug: samsara
56
+ source_of_record: discover
57
+ last_verified: *id003
58
+ - name: Samsung Electronics
59
+ platform: workday
60
+ slug: samsungelectronics
61
+ source_of_record: discover
62
+ last_verified: 2026-08-19
63
+ workday_tenant: sec
64
+ workday_site: Samsung_Careers
65
+ workday_dc: wd3
66
+ notes: 'Verified by CXS probe: 668 postings, and the tenant advertises an Intern(Empl.)
67
+ worker subtype. Distinct board from greenhouse/samsungsemiconductor.'
68
+ - name: Samsung Semiconductor
69
+ platform: greenhouse
70
+ slug: samsungsemiconductor
71
+ source_of_record: openjobs
72
+ last_verified: *id003
73
+ - name: Sandbox VR
74
+ platform: lever
75
+ slug: sandboxvr
76
+ source_of_record: openjobs
77
+ last_verified: &id004 2026-08-04
78
+ - name: SandboxAQ
79
+ platform: ashby
80
+ slug: sandboxaq
81
+ source_of_record: openjobs
82
+ last_verified: &id008 2026-08-11
83
+ notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
84
+ the slug folds to the caption and the board returned 33 job(s)'
85
+ - name: Sandia National Laboratories
86
+ platform: custom_json
87
+ slug: sandia
88
+ source_of_record: discover
89
+ last_verified: 2026-08-20
90
+ notes: '2026-08-20: NLx-hosted board with no json contract; /sitemaps/jobs_1.xml
91
+ lists its postings on the same six-segment shape as the Siemens row.'
92
+ custom:
93
+ url: https://sandia.jobs/sitemaps/jobs_1.xml
94
+ format: sitemap
95
+ authoritative: false
96
+ row_filter: /job/?$
97
+ fields:
98
+ title: path3_title
99
+ id: path2
100
+ url: loc
101
+ location: path4_title
102
+ - name: SAP
103
+ platform: custom_json
104
+ slug: sap
105
+ source_of_record: discover
106
+ last_verified: 2026-08-19
107
+ notes: jobs.sap.com/sitemap.xml is a Google-jobs RSS feed, not a sitemap; it carries
108
+ the Montreal iXp internships in both English and French.
109
+ custom:
110
+ url: https://jobs.sap.com/sitemap.xml
111
+ format: rss
112
+ fields:
113
+ title: title
114
+ id: g:id
115
+ url: link
116
+ location: g:location
117
+ description: description
118
+ - name: SAP Fioneer
119
+ platform: workable
120
+ slug: fioneer
121
+ source_of_record: discover
122
+ last_verified: 2026-08-17
123
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
124
+ paused_until resumed it.'
125
+ - name: Saputo
126
+ platform: workday
127
+ slug: saputo
128
+ source_of_record: discover
129
+ last_verified: 2026-08-17
130
+ workday_tenant: saputo
131
+ workday_site: Saputo_External_Careers
132
+ workday_dc: wd5
133
+ notes: '2026-08-17: verified by scratch sync, 120 postings returned. Montreal HQ.'
134
+ - name: SAQ
135
+ platform: custom_json
136
+ slug: saq
137
+ source_of_record: discover
138
+ last_verified: 2026-08-21
139
+ notes: '2026-08-21: SuccessFactors RMK; the French board publishes all 10 postings
140
+ through /rss.xml'
141
+ custom:
142
+ url: https://emploi.saq.com/rss.xml
143
+ format: rss
144
+ fields:
145
+ title: title
146
+ id: g:id
147
+ url: link
148
+ location: g:location
149
+ description: description
150
+ - name: Saronic
151
+ platform: ashby
152
+ slug: saronic
153
+ source_of_record: discover
154
+ last_verified: 2026-08-20
155
+ name_gate_exempt: true
156
+ notes: '2026-08-20: the owner supplied this exact ashby board URL, which is the
157
+ provenance ashby cannot give because it publishes no board name; 225 postings.'
158
+ - name: Savannah River National Laboratory
159
+ platform: oracle_cloud
160
+ slug: ewvl
161
+ source_of_record: discover
162
+ last_verified: 2026-08-14
163
+ oracle_host: ewvl.fa.us8.oraclecloud.com
164
+ oracle_site: CX_1
165
+ notes: '2026-08-14: enabled to be verified by a real sync — the Oracle Cloud candidate
166
+ endpoint has no offline probe, and this host and site come from the employer''s
167
+ own application URL'
168
+ - name: Saviynt
169
+ platform: lever
170
+ slug: saviynt
171
+ source_of_record: openjobs
172
+ last_verified: *id004
173
+ - name: Scale AI
174
+ platform: greenhouse
175
+ slug: scaleai
176
+ source_of_record: openjobs
177
+ last_verified: *id003
178
+ - name: Schonfeld
179
+ platform: greenhouse
180
+ slug: schonfeld
181
+ source_of_record: discover
182
+ last_verified: *id003
183
+ - name: SchoolMint
184
+ platform: greenhouse
185
+ slug: schoolmint
186
+ source_of_record: discover
187
+ last_verified: &id005 2026-08-16
188
+ notes: '2026-08-16: seen in feed postings but absent from the registry; discover
189
+ matched greenhouse/schoolmint with 2 job(s) and the board named itself, so it
190
+ is polled directly instead of secondhand'
191
+ - name: Schweitzer Engineering Laboratories
192
+ platform: workday
193
+ slug: selinc
194
+ source_of_record: manual
195
+ last_verified: 2026-08-13
196
+ workday_tenant: selinc
197
+ workday_site: SEL
198
+ workday_dc: wd1
199
+ workday_facet: jobFamilyGroup:df72ee3ddefc1018ed60659348e352d3
200
+ notes: '2026-08-13: official Workday endpoint verified; its Internship job-family
201
+ facet has 25 listings.'
202
+ - name: Scientific Games
203
+ platform: workday
204
+ slug: sglottery
205
+ source_of_record: openjobs
206
+ last_verified: *id001
207
+ recheck_after: *id002
208
+ workday_tenant: sglottery
209
+ workday_site: ScientificGamesExternalCareers
210
+ workday_dc: wd5
211
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
212
+ is the only verification a Workday tenant can have without an offline probe'
213
+ - name: SciTec
214
+ platform: workable
215
+ slug: scitec
216
+ source_of_record: discover
217
+ last_verified: *id005
218
+ notes: '2026-08-16: adopted from this employer''s own apply URL, then paused to
219
+ match the rest of the workable platform, which is parked until 2026-08-18 after
220
+ two 429s in one day.'
221
+ - name: Scopely
222
+ platform: greenhouse
223
+ slug: scopely
224
+ source_of_record: openjobs
225
+ last_verified: *id006
226
+ - name: SCOR
227
+ platform: oracle_cloud
228
+ slug: fa-errt-saasfaprod1
229
+ source_of_record: discover
230
+ last_verified: &id013 2026-08-16
231
+ oracle_host: fa-errt-saasfaprod1.fa.ocs.oraclecloud.com
232
+ oracle_site: CX_2001
233
+ notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
234
+ verified by a scratch sync — the board answered with 31 posting(s), 2 kept after
235
+ the CS-internship screens'
236
+ - name: Scotiabank
237
+ platform: custom_json
238
+ slug: scotiabank
239
+ source_of_record: discover
240
+ last_verified: 2026-08-18
241
+ notes: SuccessFactors listings are session-gated, but /rss.xml is a Google-jobs
242
+ feed carrying the whole board.
243
+ custom:
244
+ url: https://jobs.scotiabank.com/rss.xml
245
+ format: rss
246
+ fields:
247
+ title: title
248
+ id: g:id
249
+ url: link
250
+ location: g:location
251
+ description: description
252
+ - name: SDSU Research Foundation
253
+ platform: icims
254
+ slug: sdsurf
255
+ source_of_record: discover
256
+ enabled: false
257
+ notes: '2026-08-20: re-probed with the careers-home route that opened AMD, Garmin
258
+ and Panasonic; this employer publishes no careers.<domain> site, and /api/jobs
259
+ on its icims.com host is 404.'
260
+ - name: Seagate
261
+ platform: custom_json
262
+ slug: seagate
263
+ source_of_record: discover
264
+ last_verified: 2026-08-20
265
+ notes: '2026-08-20: SuccessFactors RMK; /rss.xml carries all 237 postings, 81 of
266
+ them intern terms.'
267
+ custom:
268
+ url: https://seagatecareers.com/rss.xml
269
+ format: rss
270
+ fields:
271
+ title: title
272
+ id: g:id
273
+ url: link
274
+ location: g:location
275
+ description: description
276
+ - name: Security Risk Advisors
277
+ platform: workable
278
+ slug: securityriskadvisors
279
+ source_of_record: discover
280
+ last_verified: 2026-08-17
281
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
282
+ paused_until resumed it.'
283
+ - name: SEGA Europe
284
+ platform: custom_json
285
+ slug: sega
286
+ source_of_record: discover
287
+ last_verified: 2026-08-21
288
+ notes: '2026-08-21: Drupal careers site that server-renders all 25 vacancies with
289
+ a country and department field per row'
290
+ custom:
291
+ url: https://careers.sega.co.uk/vacancies
292
+ format: html
293
+ row_selector: div.job-summary.views-row
294
+ fields:
295
+ title: div.views-field-title a
296
+ id: div.views-field-title a::slugid(href)
297
+ url: div.views-field-title a::attr(href)
298
+ location: div.views-field-field-country
299
+ category: div.views-field-field-department
300
+ description: div.views-field-field-description-brief
301
+ - name: Semios
302
+ platform: workable
303
+ slug: semios
304
+ source_of_record: discover
305
+ last_verified: &id011 2026-08-18
306
+ notes: '2026-08-18: found by a plain-HTTP scan of the employer''s own careers page
307
+ for a known ATS hostname, part of the Montreal/Quebec sweep.'
308
+ - name: Semtech
309
+ platform: workday
310
+ slug: semtech
311
+ source_of_record: openjobs
312
+ last_verified: 2026-08-03
313
+ workday_tenant: semtech
314
+ workday_site: SemtechCareers
315
+ workday_dc: wd1
316
+ - name: Sensata
317
+ platform: workday
318
+ slug: sensata
319
+ source_of_record: discover
320
+ last_verified: *id001
321
+ workday_tenant: sensata
322
+ workday_site: Sensata-Careers
323
+ workday_dc: wd1
324
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
325
+ is the only verification a Workday tenant can have without an offline probe'
326
+ - name: SentinelOne
327
+ platform: greenhouse
328
+ slug: sentinellabs
329
+ source_of_record: discover
330
+ last_verified: 2026-08-21
331
+ notes: '2026-08-21: official jobs page exposes Greenhouse posting IDs; the sentinellabs
332
+ board returned 212 live postings.'
333
+ - name: Sentry
334
+ platform: ashby
335
+ slug: sentry
336
+ source_of_record: discover
337
+ last_verified: &id007 2026-08-14
338
+ name_gate_exempt: true
339
+ notes: '2026-08-14: board token taken from this employer''s own application URL
340
+ in a feed posting, not from slug guessing; ashby publishes no board name, so the
341
+ name gate cannot confirm it and provenance is the evidence (46 job(s))'
342
+ - name: Serval
343
+ platform: ashby
344
+ slug: serval
345
+ source_of_record: discover
346
+ last_verified: *id007
347
+ name_gate_exempt: true
348
+ notes: '2026-08-14: board token taken from this employer''s own application URL
349
+ in a feed posting, not from slug guessing; ashby publishes no board name, so the
350
+ name gate cannot confirm it and provenance is the evidence (43 job(s))'
351
+ - name: ServiceNow
352
+ platform: smartrecruiters
353
+ slug: servicenow
354
+ source_of_record: openjobs
355
+ last_verified: 2026-08-16
356
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
357
+ a live probe that matched the company name on the returned board'
358
+ - name: Seven Research
359
+ platform: greenhouse
360
+ slug: sevenresearch
361
+ source_of_record: discover
362
+ last_verified: *id003
363
+ - name: SharkNinja
364
+ platform: greenhouse
365
+ slug: sharkninjaoperatingllc
366
+ source_of_record: discover
367
+ last_verified: *id003
368
+ - name: SHEIN
369
+ platform: greenhouse
370
+ slug: shein
371
+ source_of_record: discover
372
+ last_verified: *id003
373
+ - name: Shell
374
+ platform: workday
375
+ slug: shell
376
+ source_of_record: discover
377
+ last_verified: 2026-08-21
378
+ workday_tenant: shell
379
+ workday_site: shellcareers
380
+ workday_dc: wd3
381
+ - name: Shield AI
382
+ platform: lever
383
+ slug: shieldai
384
+ source_of_record: openjobs
385
+ last_verified: 2026-08-16
386
+ name_gate_exempt: true
387
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset and the board answered
388
+ with postings, but this platform publishes no board name, so provenance is the
389
+ evidence rather than a name match.'
390
+ - name: Shift Technology
391
+ platform: greenhouse
392
+ slug: shifttechnology
393
+ source_of_record: discover
394
+ last_verified: &id010 2026-08-15
395
+ notes: '2026-08-15: board verified live — 29 postings, Paris-centred insurance-fraud
396
+ AI including Data Science internships.'
397
+ - name: ShopBack
398
+ platform: lever
399
+ slug: shopback-2
400
+ source_of_record: discover
401
+ last_verified: *id007
402
+ name_gate_exempt: true
403
+ notes: '2026-08-14: board token taken from this employer''s own application URL
404
+ in a feed posting, not from slug guessing; lever publishes no board name, so the
405
+ name gate cannot confirm it and provenance is the evidence (70 job(s))'
406
+ - name: Shopify
407
+ platform: custom_json
408
+ slug: shopify
409
+ source_of_record: discover
410
+ last_verified: 2026-08-18
411
+ notes: Internships are kept off the careers sitemap and /careers/search, so the
412
+ board is read from the internships microsite where they are published.
413
+ custom:
414
+ url: https://internships.shopify.com/
415
+ format: html
416
+ row_selector: a[href*="/careers/"][href*="_"]
417
+ fields:
418
+ title: ::slug(href)
419
+ id: ::slugid(href)
420
+ url: ::attr(href)
421
+ - name: ShyftLabs
422
+ platform: lever
423
+ slug: shyftlabs
424
+ source_of_record: openjobs
425
+ last_verified: *id004
426
+ - name: Side Effects Software
427
+ platform: workable
428
+ slug: sideinc
429
+ source_of_record: openjobs
430
+ last_verified: 2026-08-16
431
+ notes: '2026-08-16: verified live, then paused to match the rest of the workable
432
+ platform, which is parked until 2026-08-18 after two 429s in one day'
433
+ - name: SideFX
434
+ platform: bamboohr
435
+ slug: sidefx
436
+ source_of_record: openjobs
437
+ last_verified: *id008
438
+ notes: '2026-08-11: enabled on slug evidence - bamboohr publishes no board name,
439
+ but the slug folds to the caption and the board returned 2 job(s)'
440
+ - name: Siemens Digital Industries Software
441
+ platform: custom_json
442
+ slug: siemens-dis
443
+ source_of_record: discover
444
+ last_verified: 2026-08-20
445
+ notes: '2026-08-20: the Nuxt listing is client-side and no api answers, so /sitemaps/jobs_1.xml
446
+ is the contract; robots allows it. Its index names one jobs sitemap, but a sitemap
447
+ can still lag the board and nothing reconciles the count, so it never closes.'
448
+ custom:
449
+ url: https://jobs.sw.siemens.com/sitemaps/jobs_1.xml
450
+ format: sitemap
451
+ authoritative: false
452
+ row_filter: /job/?$
453
+ fields:
454
+ title: path3_title
455
+ id: path2
456
+ url: loc
457
+ location: path4_title
458
+ - name: Sierra
459
+ platform: ashby
460
+ slug: sierra
461
+ source_of_record: openjobs
462
+ last_verified: *id008
463
+ notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
464
+ the slug folds to the caption and the board returned 191 job(s)'
465
+ - name: SiFive
466
+ platform: workday
467
+ slug: sifive
468
+ source_of_record: discover
469
+ last_verified: *id001
470
+ workday_tenant: sifive
471
+ workday_site: sifivecareers
472
+ workday_dc: wd1
473
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
474
+ is the only verification a Workday tenant can have without an offline probe'
475
+ - name: SightCall
476
+ platform: smartrecruiters
477
+ slug: sightcall
478
+ source_of_record: discover
479
+ last_verified: 2026-08-18
480
+ notes: '2026-08-18: seen in feed postings but absent from the registry; discover
481
+ matched smartrecruiters/sightcall with 4 job(s) and the board named itself, so
482
+ it is polled directly instead of secondhand'
483
+ - name: Sigma Computing
484
+ platform: greenhouse
485
+ slug: sigmacomputing
486
+ source_of_record: openjobs
487
+ last_verified: 2026-08-16
488
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
489
+ a live probe that matched the company name on the returned board'
490
+ - name: Signal Space Lab
491
+ platform: smartrecruiters
492
+ slug: signalspacelab
493
+ source_of_record: openjobs
494
+ enabled: false
495
+ notes: '2026-08-08: probed — board answers 200 with zero postings, which §5.3 treats
496
+ as a token that does not exist; re-check if the employer relaunches Re-probed
497
+ 2026-08-14 and still dead.'
498
+ - name: Signify
499
+ platform: workday
500
+ slug: lighting
501
+ source_of_record: discover
502
+ last_verified: *id001
503
+ workday_tenant: lighting
504
+ workday_site: jobs-and-careers
505
+ workday_dc: wd3
506
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
507
+ is the only verification a Workday tenant can have without an offline probe'
508
+ - name: Sika Group
509
+ platform: smartrecruiters
510
+ slug: sikaag
511
+ source_of_record: openjobs
512
+ last_verified: &id009 2026-08-14
513
+ - name: Silicon Labs
514
+ platform: workday
515
+ slug: silabs
516
+ source_of_record: openjobs
517
+ last_verified: *id001
518
+ recheck_after: *id002
519
+ workday_tenant: silabs
520
+ workday_site: SiliconlabsCareers
521
+ workday_dc: wd1
522
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
523
+ is the only verification a Workday tenant can have without an offline probe'
524
+ - name: SiMa.ai
525
+ platform: jobvite
526
+ slug: simaai
527
+ source_of_record: discover
528
+ enabled: false
529
+ notes: '2026-08-21: re-checked on the server-rendered board as well; the tenant
530
+ redirects to its own /careers page, so the board moved off Jobvite'
531
+ - name: Simcorp
532
+ platform: workday
533
+ slug: simcorp
534
+ source_of_record: openjobs
535
+ last_verified: *id001
536
+ recheck_after: *id002
537
+ workday_tenant: simcorp
538
+ workday_site: SimCorp_Jobs
539
+ workday_dc: wd3
540
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
541
+ is the only verification a Workday tenant can have without an offline probe'
542
+ - name: Simular
543
+ platform: ashby
544
+ slug: simular
545
+ source_of_record: discover
546
+ last_verified: *id007
547
+ name_gate_exempt: true
548
+ notes: '2026-08-14: board token taken from this employer''s own application URL
549
+ in a feed posting, not from slug guessing; ashby publishes no board name, so the
550
+ name gate cannot confirm it and provenance is the evidence (22 job(s))'
551
+ - name: Singulier
552
+ platform: workable
553
+ slug: singulier
554
+ source_of_record: discover
555
+ last_verified: 2026-08-17
556
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
557
+ paused_until resumed it.'
558
+ - name: sitetracker
559
+ platform: lever
560
+ slug: sitetracker
561
+ source_of_record: openjobs
562
+ last_verified: *id004
563
+ - name: SIXT
564
+ platform: smartrecruiters
565
+ slug: sixt
566
+ source_of_record: discover
567
+ last_verified: *id009
568
+ - name: SK Hynix Memory Solution
569
+ platform: greenhouse
570
+ slug: skhynixmemorysolutionsamericainc
571
+ source_of_record: discover
572
+ last_verified: *id010
573
+ name_gate_exempt: true
574
+ notes: '2026-08-15: token taken from the employer''s own apply URL in feed postings;
575
+ the board publishes the name ''SK hynix memory solutions America Inc.'', so the
576
+ name gate rejects a correct caption'
577
+ - name: Skild AI
578
+ platform: greenhouse
579
+ slug: skildai-careers
580
+ source_of_record: discover
581
+ last_verified: 2026-08-20
582
+ notes: '2026-08-20: owner-captured request named the board token; the careers page
583
+ guesses would never have found it, and greenhouse names the board Skild AI.'
584
+ - name: skybox labs
585
+ platform: lever
586
+ slug: skyboxlabs
587
+ source_of_record: openjobs
588
+ last_verified: *id004
589
+ - name: Skydio
590
+ platform: ashby
591
+ slug: skydio
592
+ source_of_record: discover
593
+ last_verified: *id007
594
+ name_gate_exempt: true
595
+ notes: '2026-08-14: board token taken from this employer''s own application URL
596
+ in a feed posting, not from slug guessing; ashby publishes no board name, so the
597
+ name gate cannot confirm it and provenance is the evidence (109 job(s))'
598
+ - name: SkyGig
599
+ platform: workable
600
+ slug: skygig
601
+ source_of_record: discover
602
+ last_verified: 2026-08-17
603
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
604
+ paused_until resumed it.'
605
+ - name: Skyworks
606
+ platform: custom_json
607
+ slug: skyworks
608
+ source_of_record: discover
609
+ last_verified: 2026-08-16
610
+ notes: '2026-08-16: successfactors — CSRF handshake. GET the careers page for the
611
+ token and JSESSIONID, then POST.'
612
+ custom:
613
+ url: https://careers.skyworksinc.com/services/recruiting/v1/jobs
614
+ method: POST
615
+ body:
616
+ locale: en_US
617
+ pageNumber: 0
618
+ sortBy: ''
619
+ keywords: ''
620
+ location: ''
621
+ facetFilters: {}
622
+ brand: ''
623
+ alertId: ''
624
+ categoryId: 9923100
625
+ rcmCandidateId: ''
626
+ skills: []
627
+ handshake_url: https://careers.skyworksinc.com/go/internships-and-Recent-College-Grads/9923100/
628
+ token_pattern: (?i)csrf[_-]?token["\']?\s*[:=]\s*["\']([A-Za-z0-9\-]{8,})
629
+ token_header: X-Csrf-Token
630
+ jobs_path: jobSearchResult
631
+ fields:
632
+ title: response.unifiedStandardTitle
633
+ id: response.id
634
+ location: response.jobLocationShort
635
+ employment_type: response.jobFunction_obj
636
+ url_template: https://careers.skyworksinc.com/job/{id}/
637
+ page_param: pageNumber
638
+ page_size: 10
639
+ - name: Smoking Gun Interactive
640
+ platform: workable
641
+ slug: smoking-gun-interactive-1
642
+ source_of_record: openjobs
643
+ last_verified: 2026-08-17
644
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
645
+ paused_until resumed it.'
646
+ - name: Snap
647
+ platform: custom_json
648
+ slug: snap
649
+ source_of_record: discover
650
+ last_verified: 2026-08-17
651
+ notes: '2026-08-17: found by browser-assisted discovery on the employer careers
652
+ page, then replayed over plain HTTP.'
653
+ custom:
654
+ url: https://careers.snap.com/api/jobs
655
+ jobs_path: body
656
+ fields:
657
+ title: _source.title
658
+ id: _source.id
659
+ location: _source.primary_location
660
+ url: _source.absolute_url
661
+ category: _source.role
662
+ employment_type: _source.employment_type
663
+ - name: Snowed In Studios
664
+ platform: workable
665
+ slug: snowed-in-studios-3
666
+ source_of_record: openjobs
667
+ last_verified: 2026-08-17
668
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
669
+ paused_until resumed it.'
670
+ - name: Snowflake
671
+ platform: ashby
672
+ slug: snowflake
673
+ source_of_record: openjobs
674
+ last_verified: *id008
675
+ notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
676
+ the slug folds to the caption and the board returned 391 job(s)'
677
+ - name: Snyk
678
+ platform: greenhouse
679
+ slug: snyk
680
+ source_of_record: openjobs
681
+ enabled: false
682
+ notes: The ashby token answers with zero jobs, which is a placeholder rather than
683
+ a board.
684
+ - name: sofar sounds
685
+ platform: lever
686
+ slug: sofarsounds
687
+ source_of_record: openjobs
688
+ last_verified: *id004
689
+ - name: SoFi
690
+ platform: greenhouse
691
+ slug: sofi
692
+ source_of_record: openjobs
693
+ last_verified: 2026-08-16
694
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
695
+ a live probe that matched the company name on the returned board'
696
+ - name: Solid Power
697
+ platform: greenhouse
698
+ slug: solidpower
699
+ source_of_record: discover
700
+ last_verified: 2026-09-01
701
+ notes: '2026-09-01: verified 14 postings including six internships in Colorado.'
702
+ - name: Solar Turbines
703
+ platform: workday
704
+ slug: cat
705
+ source_of_record: discover
706
+ last_verified: 2026-08-16
707
+ workday_tenant: cat
708
+ workday_site: solarturbines
709
+ workday_dc: wd5
710
+ notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
711
+ verified by a scratch sync (107 posting(s), 0 kept)'
712
+ - name: SoloPulse
713
+ platform: lever
714
+ slug: solopulseco
715
+ source_of_record: manual
716
+ last_verified: 2026-08-13
717
+ notes: '2026-08-13: official active systems-engineering internship application verifies
718
+ the public Lever board.'
719
+ - name: Sony Global
720
+ platform: workday
721
+ slug: sonyglobal
722
+ source_of_record: discover
723
+ last_verified: 2026-08-19
724
+ workday_tenant: sonyglobal
725
+ workday_site: SonyGlobalCareers
726
+ workday_dc: wd1
727
+ notes: 'sonyjobs.com only iframes this tenant. Verified by CXS probe: 94 postings,
728
+ Intern (Fixed Term) advertised. Parent of the existing Sony Interactive rows.'
729
+ - name: Sony Interactive Entertainment
730
+ platform: greenhouse
731
+ slug: siei
732
+ source_of_record: openjobs
733
+ last_verified: *id003
734
+ - name: Sony Pictures Entertainment
735
+ platform: workday
736
+ slug: spe
737
+ source_of_record: openjobs
738
+ last_verified: *id001
739
+ recheck_after: *id002
740
+ workday_tenant: spe
741
+ workday_site: SonyPicturesEntertainment
742
+ workday_dc: wd1
743
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
744
+ is the only verification a Workday tenant can have without an offline probe'
745
+ - name: Sophos
746
+ platform: lever
747
+ slug: sophos
748
+ source_of_record: discover
749
+ last_verified: 2026-08-21
750
+ notes: '2026-08-21: lever publishes no board name; the 118 postings name Sophos
751
+ in their own text'
752
+ - name: SOTI
753
+ platform: workday
754
+ slug: soti
755
+ source_of_record: discover
756
+ last_verified: *id001
757
+ workday_tenant: soti
758
+ workday_site: SOTI-Next-Gen
759
+ workday_dc: wd3
760
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
761
+ is the only verification a Workday tenant can have without an offline probe'
762
+ - name: SpaceX
763
+ platform: greenhouse
764
+ slug: spacex
765
+ source_of_record: openjobs
766
+ last_verified: *id003
767
+ - name: Spacial AI
768
+ platform: ashby
769
+ slug: spacial
770
+ source_of_record: discover
771
+ last_verified: *id007
772
+ name_gate_exempt: true
773
+ notes: '2026-08-14: board token taken from this employer''s own application URL
774
+ in a feed posting, not from slug guessing; ashby publishes no board name, so the
775
+ name gate cannot confirm it and provenance is the evidence (6 job(s))'
776
+ - name: Spaulding Ridge
777
+ platform: greenhouse
778
+ slug: spauldingridge
779
+ source_of_record: openjobs
780
+ last_verified: *id006
781
+ - name: Specter Aerospace
782
+ platform: recruitee
783
+ slug: specter
784
+ source_of_record: discover
785
+ last_verified: *id003
786
+ enabled: false
787
+ notes: '2026-08-21: the recruitee tenant answers with the Senior Marketer (Sample)
788
+ demo posting, so the board is a trial tenant and not this employer'
789
+ - name: Spiria
790
+ platform: lever
791
+ slug: spiria
792
+ source_of_record: discover
793
+ last_verified: *id011
794
+ notes: '2026-08-18: found by a plain-HTTP scan of the employer''s own careers page
795
+ for a known ATS hostname, part of the Montreal/Quebec sweep.'
796
+ - name: SpotDraft
797
+ platform: ashby
798
+ slug: spotdraft
799
+ source_of_record: discover
800
+ last_verified: 2026-08-16
801
+ name_gate_exempt: true
802
+ notes: '2026-08-16: token from this employer''s own apply URL, not slug guessing;
803
+ ashby publishes no board name, so provenance is the evidence (12 job(s))'
804
+ - name: Spotify
805
+ platform: lever
806
+ slug: spotify
807
+ source_of_record: openjobs
808
+ last_verified: *id004
809
+ - name: Sprinkler
810
+ platform: workday
811
+ slug: sprinklr
812
+ source_of_record: openjobs
813
+ last_verified: *id001
814
+ recheck_after: *id002
815
+ workday_tenant: sprinklr
816
+ workday_site: careers
817
+ workday_dc: wd1
818
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
819
+ is the only verification a Workday tenant can have without an offline probe'
820
+ - name: Square Enix
821
+ platform: workable
822
+ slug: square-enix
823
+ source_of_record: openjobs
824
+ last_verified: 2026-08-17
825
+ notes: '2026-08-14: paused after two 429s in one day, the second after 7 requests;
826
+ paused_until resumed it.'
827
+ - name: Squarepoint Capital
828
+ platform: greenhouse
829
+ slug: squarepointcapital
830
+ source_of_record: discover
831
+ last_verified: *id003
832
+ - name: Squarespace
833
+ platform: greenhouse
834
+ slug: squarespace
835
+ source_of_record: discover
836
+ last_verified: 2026-08-21
837
+ notes: '2026-08-21: official early-career page resolves to the live Squarespace
838
+ Greenhouse board.'
839
+ - name: Squeeze Studio
840
+ platform: recruitee
841
+ slug: squeezestudio
842
+ source_of_record: openjobs
843
+ last_verified: *id003
844
+ - name: SRI International
845
+ platform: icims
846
+ slug: sri
847
+ source_of_record: discover
848
+ enabled: false
849
+ notes: '2026-08-20: re-probed with the careers-home route that opened AMD, Garmin
850
+ and Panasonic; this employer publishes no careers.<domain> site, and /api/jobs
851
+ on its icims.com host is 404.'
852
+ - name: SS8
853
+ platform: greenhouse
854
+ slug: ss8
855
+ source_of_record: openjobs
856
+ last_verified: *id006
857
+ - name: SSENSE
858
+ platform: custom_json
859
+ slug: ssense
860
+ source_of_record: discover
861
+ last_verified: 2026-08-20
862
+ notes: '2026-08-20: Teamtailor vanity host; its own /jobs.rss carries the full board
863
+ and the channel names itself SSENSE.'
864
+ custom:
865
+ url: https://careers.ssense.com/jobs.rss
866
+ format: rss
867
+ fields:
868
+ title: title
869
+ id: guid
870
+ url: link
871
+ description: description
872
+ location: tt:locations
873
+ department: tt:department
874
+ - name: Stability AI
875
+ platform: greenhouse
876
+ slug: stabilityai
877
+ source_of_record: openjobs
878
+ last_verified: 2026-08-16
879
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
880
+ a live probe that matched the company name on the returned board'
881
+ - name: StackAdapt
882
+ platform: greenhouse
883
+ slug: stackadapt-confidential
884
+ source_of_record: discover
885
+ last_verified: *id003
886
+ - name: Starburst
887
+ platform: greenhouse
888
+ slug: starburst
889
+ source_of_record: openjobs
890
+ last_verified: 2026-08-16
891
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
892
+ a live probe that matched the company name on the returned board'
893
+ - name: State of Nebraska
894
+ platform: workday
895
+ slug: son
896
+ source_of_record: discover
897
+ last_verified: 2026-08-16
898
+ workday_tenant: son
899
+ workday_site: NebraskaStateCareers
900
+ workday_dc: wd108
901
+ notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
902
+ verified by a scratch sync (1 posting(s), 0 kept)'
903
+ - name: State Street
904
+ platform: workday
905
+ slug: statestreet
906
+ source_of_record: discover
907
+ last_verified: &id012 2026-08-17
908
+ workday_tenant: statestreet
909
+ workday_site: Global
910
+ workday_dc: wd1
911
+ notes: '2026-08-17: found by a plain-HTTP scan of the employer''s own careers page
912
+ for a known ATS hostname, no browser and one request per host.'
913
+ - name: StepStone Group
914
+ platform: greenhouse
915
+ slug: stepstone
916
+ source_of_record: discover
917
+ last_verified: *id003
918
+ - name: Stevens Capital Management
919
+ platform: greenhouse
920
+ slug: scm
921
+ source_of_record: discover
922
+ last_verified: *id003
923
+ - name: Stingray
924
+ platform: custom_json
925
+ slug: stingray
926
+ source_of_record: discover
927
+ last_verified: 2026-08-20
928
+ notes: '2026-08-20: WordPress career site; wp/v2 job is the listing contract. The
929
+ location path names the taxonomy rather than indexing it, so a reordered _embed
930
+ cannot silently swap in a department.'
931
+ custom:
932
+ url: https://jobs.stingray.com/wp-json/wp/v2/job?per_page=100&_embed=wp%3Aterm
933
+ fields:
934
+ title: title.rendered
935
+ id: id
936
+ url: link
937
+ location: _embedded.wp:term[0.taxonomy=location].0.name
938
+ - name: storytq
939
+ platform: workable
940
+ slug: jobs
941
+ source_of_record: openjobs
942
+ enabled: false
943
+ notes: '2026-08-08: probed — board does not respond; re-resolve with discover --url
944
+ Re-probed 2026-08-14 and still dead.'
945
+ - name: Strava
946
+ platform: ashby
947
+ slug: strava
948
+ source_of_record: discover
949
+ last_verified: *id012
950
+ notes: '2026-08-17: found by careers-page ATS scan, one plain GET. verify returned
951
+ 24 jobs and needs-a-manual-check, the expected verdict where the platform publishes
952
+ no board name; token equals the company name'
953
+ - name: Stripe
954
+ platform: greenhouse
955
+ slug: stripe
956
+ source_of_record: manual
957
+ last_verified: *id003
958
+ - name: Stryker
959
+ platform: workday
960
+ slug: stryker
961
+ source_of_record: discover
962
+ last_verified: 2026-09-01
963
+ workday_tenant: stryker
964
+ workday_site: StrykerCareers
965
+ workday_dc: wd1
966
+ notes: '2026-09-01: verified 636 postings. Current interns are all overseas, so the
967
+ location screen carries the weight.'
968
+ - name: Submittable
969
+ platform: greenhouse
970
+ slug: submittable
971
+ source_of_record: discover
972
+ last_verified: *id003
973
+ - name: Substack
974
+ platform: ashby
975
+ slug: substack
976
+ source_of_record: openjobs
977
+ last_verified: *id008
978
+ notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
979
+ the slug folds to the caption and the board returned 12 job(s)'
980
+ - name: Sumo Logic
981
+ platform: greenhouse
982
+ slug: sumologic
983
+ source_of_record: openjobs
984
+ last_verified: 2026-08-16
985
+ notes: '2026-08-16: ats_link recorded in the OpenJobs dataset, then verified by
986
+ a live probe that matched the company name on the returned board'
987
+ - name: Sun Life
988
+ platform: workday
989
+ slug: sunlife
990
+ source_of_record: discover
991
+ last_verified: *id013
992
+ workday_tenant: sunlife
993
+ workday_site: Campus
994
+ workday_dc: wd3
995
+ notes: '2026-08-16: coordinates taken from this employer''s own apply URL, then
996
+ verified by a scratch sync — the board answered with 6 posting(s), 1 kept after
997
+ the CS-internship screens'
998
+ - name: Suncor Energy
999
+ platform: workday
1000
+ slug: suncor
1001
+ source_of_record: discover
1002
+ last_verified: 2026-08-19
1003
+ workday_tenant: suncor
1004
+ workday_site: Suncor_External
1005
+ workday_dc: wd1
1006
+ notes: Coordinates taken from the employer's own careers URL; the unfiltered board
1007
+ is 44 postings, so no facet is pinned.
1008
+ - name: Supabase
1009
+ platform: ashby
1010
+ slug: supabase
1011
+ source_of_record: openjobs
1012
+ last_verified: *id008
1013
+ notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
1014
+ the slug folds to the caption and the board returned 57 job(s)'
1015
+ - name: Super.com
1016
+ platform: lever
1017
+ slug: super-com
1018
+ source_of_record: openjobs
1019
+ enabled: false
1020
+ notes: '2026-08-14: superseded — this employer''s feed postings now apply through
1021
+ Ashby'
1022
+ - name: Super.com (Ashby)
1023
+ platform: ashby
1024
+ slug: super.com
1025
+ source_of_record: discover
1026
+ last_verified: 2026-08-14
1027
+ name_gate_exempt: true
1028
+ notes: '2026-08-14: board resolved from this employer''s own application URL in
1029
+ a feed posting; the older Lever row for the same employer stays disabled as a
1030
+ vendor-migration fossil'
1031
+ - name: Supercell
1032
+ platform: ashby
1033
+ slug: supercell
1034
+ source_of_record: openjobs
1035
+ last_verified: *id008
1036
+ notes: '2026-08-11: enabled on slug evidence - ashby publishes no board name, but
1037
+ the slug folds to the caption and the board returned 40 job(s)'
1038
+ - name: Survay Monkey
1039
+ platform: greenhouse
1040
+ slug: surveymonkey
1041
+ source_of_record: openjobs
1042
+ enabled: false
1043
+ notes: '2026-08-08: probed — board answers 200 with zero postings, which §5.3 treats
1044
+ as a token that does not exist; re-check if the employer relaunches Re-probed
1045
+ 2026-08-14 and still dead.'
1046
+ - name: Susquehanna International Group (SIG)
1047
+ platform: custom_json
1048
+ slug: sig
1049
+ source_of_record: discover
1050
+ last_verified: 2026-08-20
1051
+ notes: '2026-08-20: reopened — the iCIMS listing host is still closed, but this
1052
+ employer also runs an iCIMS careers-home site at careers.sig.com whose /api/jobs
1053
+ answers with full bodies.'
1054
+ custom:
1055
+ url: https://careers.sig.com/api/jobs?limit=100
1056
+ jobs_path: jobs
1057
+ fields:
1058
+ title: data.title
1059
+ id: data.slug
1060
+ location: data.full_location
1061
+ description: data.description
1062
+ employment_type: data.employment_type
1063
+ category: data.category
1064
+ department: data.department
1065
+ url_template: https://careers.sig.com/jobs/{id}
1066
+ page_param: page
1067
+ page_size: 100
1068
+ page_start: 1
1069
+ page_step: 1
1070
+ max_pages: 8
1071
+ - name: Sweatpals
1072
+ platform: ashby
1073
+ slug: sweatpals
1074
+ source_of_record: discover
1075
+ last_verified: *id005
1076
+ name_gate_exempt: true
1077
+ notes: '2026-08-16: token from this employer''s own apply URL, not slug guessing;
1078
+ ashby publishes no board name, so provenance is the evidence (5 job(s))'
1079
+ - name: Sword Health
1080
+ platform: lever
1081
+ slug: swordhealth
1082
+ source_of_record: openjobs
1083
+ last_verified: *id004
1084
+ - name: Synchrony Financial
1085
+ platform: workday
1086
+ slug: synchronyfinancial
1087
+ source_of_record: manual
1088
+ last_verified: 2026-08-13
1089
+ workday_tenant: synchronyfinancial
1090
+ workday_site: University
1091
+ workday_dc: wd5
1092
+ workday_facet: workerSubType:8bc859bd8bb6106a60c793a3f28013d3
1093
+ notes: '2026-08-13: official Workday endpoint verified; its Intern/Co-op facet has
1094
+ 13 listings.'
1095
+ - name: Synechron
1096
+ platform: workday
1097
+ slug: synechron
1098
+ source_of_record: openjobs
1099
+ last_verified: *id001
1100
+ recheck_after: *id002
1101
+ workday_tenant: synechron
1102
+ workday_site: SynechronCareers
1103
+ workday_dc: wd1
1104
+ notes: '2026-08-14: verified by a real sync — this board returned postings, which
1105
+ is the only verification a Workday tenant can have without an offline probe'
1106
+ - name: Syngenta Group
1107
+ platform: smartrecruiters
1108
+ slug: syngentagroup
1109
+ source_of_record: openjobs
1110
+ last_verified: *id009
1111
+ - name: Synopsys
1112
+ platform: custom_json
1113
+ slug: synopsys
1114
+ source_of_record: discover
1115
+ last_verified: 2026-08-20
1116
+ notes: '2026-08-20: TalentBrew site with no json or rss; /sitemap.xml is the listing
1117
+ and row_filter keeps only /job/ urls. A sitemap is a crawl artifact that can lag
1118
+ the board and no independent count reconciles it, so it never closes; purge bounds
1119
+ the staleness at 14 days.'
1120
+ custom:
1121
+ url: https://careers.synopsys.com/sitemap.xml
1122
+ format: sitemap
1123
+ authoritative: false
1124
+ row_filter: /job/
1125
+ fields:
1126
+ title: path3_title
1127
+ id: path1
1128
+ url: loc
1129
+ location: path4_title
1130
+ - name: Sysco
1131
+ platform: workday
1132
+ slug: sysco
1133
+ source_of_record: manual
1134
+ last_verified: 2026-08-13
1135
+ workday_tenant: sysco
1136
+ workday_site: syscocareers
1137
+ workday_dc: wd5
1138
+ workday_facet: workerSubType:b014cc62fe6601ac5a96d6b1da283744,6a5d7ea644cc1000511fb8d1d9a00000
1139
+ notes: '2026-08-13: official Workday endpoint verified; its intern and student facets
1140
+ total 24 listings.'