job-forge 2.0.0
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/.codex/config.toml +8 -0
- package/.cursor/mcp.json +21 -0
- package/.cursor/rules/main.mdc +519 -0
- package/.mcp.json +21 -0
- package/.opencode/agents/general-free.md +85 -0
- package/.opencode/agents/general-paid.md +39 -0
- package/.opencode/agents/glm-minimal.md +50 -0
- package/.opencode/skills/job-forge.md +185 -0
- package/AGENTS.md +514 -0
- package/CLAUDE.md +514 -0
- package/LICENSE +21 -0
- package/README.md +195 -0
- package/batch/README.md +60 -0
- package/batch/batch-prompt.md +399 -0
- package/batch/batch-runner.sh +673 -0
- package/bin/create-job-forge.mjs +375 -0
- package/bin/job-forge.mjs +120 -0
- package/bin/sync.mjs +141 -0
- package/config/profile.example.yml +67 -0
- package/cv-sync-check.mjs +128 -0
- package/dedup-tracker.mjs +201 -0
- package/docs/ARCHITECTURE.md +220 -0
- package/docs/CUSTOMIZATION.md +101 -0
- package/docs/MODEL-ROUTING.md +195 -0
- package/docs/README.md +54 -0
- package/docs/SETUP.md +186 -0
- package/docs/demo.gif +0 -0
- package/fonts/dm-sans-latin-ext.woff2 +0 -0
- package/fonts/dm-sans-latin.woff2 +0 -0
- package/fonts/space-grotesk-latin-ext.woff2 +0 -0
- package/fonts/space-grotesk-latin.woff2 +0 -0
- package/generate-pdf.mjs +168 -0
- package/iso/agents/general-free.md +90 -0
- package/iso/agents/general-paid.md +44 -0
- package/iso/agents/glm-minimal.md +55 -0
- package/iso/commands/job-forge.md +188 -0
- package/iso/config.json +7 -0
- package/iso/instructions.md +514 -0
- package/iso/mcp.json +15 -0
- package/merge-tracker.mjs +377 -0
- package/modes/README.md +30 -0
- package/modes/_shared-calibration.md +26 -0
- package/modes/_shared.md +272 -0
- package/modes/apply.md +257 -0
- package/modes/auto-pipeline.md +70 -0
- package/modes/batch.md +110 -0
- package/modes/compare.md +23 -0
- package/modes/contact.md +82 -0
- package/modes/deep.md +99 -0
- package/modes/followup.md +68 -0
- package/modes/negotiation.md +146 -0
- package/modes/offer.md +199 -0
- package/modes/pdf.md +121 -0
- package/modes/pipeline.md +83 -0
- package/modes/project.md +30 -0
- package/modes/rejection.md +92 -0
- package/modes/scan.md +185 -0
- package/modes/tracker.md +31 -0
- package/modes/training.md +27 -0
- package/normalize-statuses.mjs +152 -0
- package/opencode.json +28 -0
- package/package.json +78 -0
- package/scripts/add-tags.mjs +894 -0
- package/scripts/cursor-agent-loop.sh +211 -0
- package/scripts/cursor-agent-stream-format.py +134 -0
- package/scripts/next-num.mjs +33 -0
- package/scripts/release/check-source.mjs +37 -0
- package/scripts/render-report-header.mjs +78 -0
- package/scripts/session-report.mjs +129 -0
- package/scripts/slugify.mjs +27 -0
- package/scripts/today.mjs +20 -0
- package/scripts/token-usage-report.mjs +315 -0
- package/scripts/tracker-line.mjs +67 -0
- package/scripts/verify-greenhouse-urls.mjs +195 -0
- package/templates/cv-template.html +395 -0
- package/templates/portals.example.yml +3140 -0
- package/templates/states.yml +62 -0
- package/tracker-lib.mjs +257 -0
- package/verify-pipeline.mjs +267 -0
|
@@ -0,0 +1,3140 @@
|
|
|
1
|
+
# Portal Scanner Configuration
|
|
2
|
+
# Used by /job-forge scan to discover new offers automatically.
|
|
3
|
+
#
|
|
4
|
+
# Strategy (3 levels):
|
|
5
|
+
# 1. Geometra MCP → careers_url of each company (real-time, reliable)
|
|
6
|
+
# 2. Greenhouse API → structured JSON (fast, Greenhouse-only)
|
|
7
|
+
# 3. WebSearch with site: filters (broad discovery, may be stale)
|
|
8
|
+
#
|
|
9
|
+
# IMPORTANT: Each company in tracked_companies MUST have careers_url.
|
|
10
|
+
#
|
|
11
|
+
# HOW TO CUSTOMIZE:
|
|
12
|
+
# 1. Copy this file to portals.yml in the project root
|
|
13
|
+
# 2. Edit title_filter.positive with YOUR target role keywords
|
|
14
|
+
# 3. Add/remove companies in tracked_companies
|
|
15
|
+
# 4. Adjust search_queries for your preferred job boards
|
|
16
|
+
# 5. Set enabled: false on companies you don't care about
|
|
17
|
+
|
|
18
|
+
# -- Title filter --
|
|
19
|
+
# The scanner uses these keywords to decide if a title is relevant.
|
|
20
|
+
# At least 1 positive must match AND 0 negatives must match (case-insensitive).
|
|
21
|
+
|
|
22
|
+
title_filter:
|
|
23
|
+
positive:
|
|
24
|
+
# [CUSTOMIZE] Add keywords matching YOUR target roles
|
|
25
|
+
# -- AI/ML roles --
|
|
26
|
+
- "AI"
|
|
27
|
+
- "ML"
|
|
28
|
+
- "LLM"
|
|
29
|
+
- "Agent"
|
|
30
|
+
- "Agentic"
|
|
31
|
+
- "GenAI"
|
|
32
|
+
- "Generative AI"
|
|
33
|
+
- "NLP"
|
|
34
|
+
- "LLMOps"
|
|
35
|
+
- "MLOps"
|
|
36
|
+
- "Voice AI"
|
|
37
|
+
- "Conversational AI"
|
|
38
|
+
- "Speech"
|
|
39
|
+
# -- Engineering roles --
|
|
40
|
+
- "Platform Engineer"
|
|
41
|
+
- "Solutions Architect"
|
|
42
|
+
- "Solutions Engineer"
|
|
43
|
+
- "Forward Deployed"
|
|
44
|
+
- "Deployed Engineer"
|
|
45
|
+
- "Customer Engineer"
|
|
46
|
+
- "Integration Engineer"
|
|
47
|
+
# -- Product roles --
|
|
48
|
+
- "Product Manager"
|
|
49
|
+
- "Technical PM"
|
|
50
|
+
# -- Automation roles --
|
|
51
|
+
- "Automation"
|
|
52
|
+
- "Hyperautomation"
|
|
53
|
+
- "Low-Code"
|
|
54
|
+
- "No-Code"
|
|
55
|
+
- "GTM Engineer"
|
|
56
|
+
- "RevOps"
|
|
57
|
+
- "Business Systems"
|
|
58
|
+
- "Internal Tools"
|
|
59
|
+
- "Transformation"
|
|
60
|
+
negative:
|
|
61
|
+
# [CUSTOMIZE] Add keywords for roles you want to exclude
|
|
62
|
+
- "Junior"
|
|
63
|
+
- "Intern"
|
|
64
|
+
- ".NET"
|
|
65
|
+
- "Java "
|
|
66
|
+
- "iOS"
|
|
67
|
+
- "Android"
|
|
68
|
+
- "PHP"
|
|
69
|
+
- "Ruby"
|
|
70
|
+
- "Embedded"
|
|
71
|
+
- "Firmware"
|
|
72
|
+
- "FPGA"
|
|
73
|
+
- "ASIC"
|
|
74
|
+
- "Blockchain"
|
|
75
|
+
- "Web3"
|
|
76
|
+
- "Crypto"
|
|
77
|
+
- "Salesforce Admin"
|
|
78
|
+
- "SAP "
|
|
79
|
+
- "Oracle EBS"
|
|
80
|
+
- "Mainframe"
|
|
81
|
+
- "COBOL"
|
|
82
|
+
seniority_boost:
|
|
83
|
+
# These prefixes add relevance but are not required
|
|
84
|
+
- "Senior"
|
|
85
|
+
- "Staff"
|
|
86
|
+
- "Principal"
|
|
87
|
+
- "Lead"
|
|
88
|
+
- "Head"
|
|
89
|
+
- "Director"
|
|
90
|
+
|
|
91
|
+
# -- Search queries --
|
|
92
|
+
# Each query triggers a WebSearch. Use site: to filter by portal.
|
|
93
|
+
# The scanner extracts title, URL, and company from results.
|
|
94
|
+
|
|
95
|
+
search_queries:
|
|
96
|
+
# -- Ashby --
|
|
97
|
+
- name: Ashby — AI PM
|
|
98
|
+
query: 'site:jobs.ashbyhq.com "AI Product Manager" OR "Senior Product Manager AI" remote'
|
|
99
|
+
enabled: true
|
|
100
|
+
|
|
101
|
+
- name: Ashby — Solutions Architect
|
|
102
|
+
query: 'site:jobs.ashbyhq.com "Solutions Architect" AI OR automation remote'
|
|
103
|
+
enabled: true
|
|
104
|
+
|
|
105
|
+
- name: Ashby — AI Engineer
|
|
106
|
+
query: 'site:jobs.ashbyhq.com "AI Engineer" OR "LLM Engineer" OR "Forward Deployed" remote'
|
|
107
|
+
enabled: true
|
|
108
|
+
|
|
109
|
+
- name: Ashby — Agentic
|
|
110
|
+
query: 'site:jobs.ashbyhq.com "Agentic" OR "AI Agent" OR "Automation Architect" remote'
|
|
111
|
+
enabled: true
|
|
112
|
+
|
|
113
|
+
# -- Greenhouse --
|
|
114
|
+
- name: Greenhouse — AI PM
|
|
115
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "AI Product Manager" OR "Senior Product Manager" AI remote'
|
|
116
|
+
enabled: true
|
|
117
|
+
|
|
118
|
+
- name: Greenhouse — SA & FDE
|
|
119
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "Solutions Architect" OR "Forward Deployed" AI remote'
|
|
120
|
+
enabled: true
|
|
121
|
+
|
|
122
|
+
- name: Greenhouse — AI Engineer
|
|
123
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "AI Engineer" OR "LLM" OR "Agentic" remote'
|
|
124
|
+
enabled: true
|
|
125
|
+
|
|
126
|
+
# -- Lever --
|
|
127
|
+
- name: Lever — AI PM
|
|
128
|
+
query: 'site:jobs.lever.co "AI Product Manager" OR "Solutions Architect" AI remote'
|
|
129
|
+
enabled: true
|
|
130
|
+
|
|
131
|
+
- name: Lever — AI Roles
|
|
132
|
+
query: 'site:jobs.lever.co "AI Engineer" OR "Agentic" OR "LLMOps" OR "Automation" remote'
|
|
133
|
+
enabled: true
|
|
134
|
+
|
|
135
|
+
# -- Wellfound (startups) --
|
|
136
|
+
- name: Wellfound — AI PM
|
|
137
|
+
query: 'site:wellfound.com "AI Product Manager" OR "AI Solutions" remote'
|
|
138
|
+
enabled: true
|
|
139
|
+
|
|
140
|
+
# -- Workable --
|
|
141
|
+
- name: Workable — AI Roles
|
|
142
|
+
query: 'site:apply.workable.com "AI" "Product Manager" OR "Solutions Architect" OR "AI Engineer" remote'
|
|
143
|
+
enabled: true
|
|
144
|
+
|
|
145
|
+
# -- No-Code / Low-Code / Automation --
|
|
146
|
+
- name: Ashby — No-Code & Automation
|
|
147
|
+
query: 'site:jobs.ashbyhq.com "no-code" OR "low-code" OR "automation engineer" OR "n8n" OR "Make" OR "Airtable" remote senior'
|
|
148
|
+
enabled: true
|
|
149
|
+
|
|
150
|
+
- name: Greenhouse — No-Code & Automation
|
|
151
|
+
query: 'site:job-boards.greenhouse.io "no-code" OR "low-code" OR "automation engineer" OR "business systems" senior remote'
|
|
152
|
+
enabled: true
|
|
153
|
+
|
|
154
|
+
- name: GTM Engineer — All portals
|
|
155
|
+
query: '"GTM Engineer" OR "RevOps Engineer" OR "Growth Engineer" automation Airtable OR Make OR Clay remote'
|
|
156
|
+
enabled: true
|
|
157
|
+
|
|
158
|
+
# -- Voice AI & Conversational AI --
|
|
159
|
+
- name: Voice AI — FDE & SA
|
|
160
|
+
query: 'site:job-boards.greenhouse.io OR site:jobs.ashbyhq.com "Voice AI" OR "Conversational AI" OR "Speech" "Solutions" OR "Forward Deployed" OR "Customer Engineer"'
|
|
161
|
+
enabled: true
|
|
162
|
+
|
|
163
|
+
- name: Voice AI — AI Engineer
|
|
164
|
+
query: 'site:job-boards.greenhouse.io OR site:jobs.ashbyhq.com "Voice" OR "Speech" "AI Engineer" OR "Deployment" OR "Integration"'
|
|
165
|
+
enabled: true
|
|
166
|
+
|
|
167
|
+
# -- Contact Center AI --
|
|
168
|
+
- name: Contact Center AI — SA & SE
|
|
169
|
+
query: '"contact center" OR "customer service" "AI" "Solutions Architect" OR "Solutions Engineer" OR "Forward Deployed" remote'
|
|
170
|
+
enabled: true
|
|
171
|
+
|
|
172
|
+
# -- FDE specific (cross-portal) --
|
|
173
|
+
- name: FDE & Deployed Engineer — All portals
|
|
174
|
+
query: '"Forward Deployed Engineer" OR "Deployed Engineer" OR "Deployment Engineer" AI site:job-boards.greenhouse.io OR site:jobs.ashbyhq.com OR site:jobs.lever.co'
|
|
175
|
+
enabled: true
|
|
176
|
+
|
|
177
|
+
# -- RemoteFront (aggregator) --
|
|
178
|
+
- name: RemoteFront — AI & Automation
|
|
179
|
+
query: 'site:remotefront.com "AI Engineer" OR "Solutions Engineer" OR "Automation" OR "LLM" OR "Agent" remote'
|
|
180
|
+
enabled: true
|
|
181
|
+
|
|
182
|
+
# -- LinkedIn --
|
|
183
|
+
- name: LinkedIn — Software Engineer
|
|
184
|
+
query: 'site:linkedin.com/jobs "Software Engineer" OR "Senior Software Engineer" remote'
|
|
185
|
+
enabled: true
|
|
186
|
+
|
|
187
|
+
- name: LinkedIn — Engineering Manager
|
|
188
|
+
query: 'site:linkedin.com/jobs "Engineering Manager" OR "Head of Engineering" remote'
|
|
189
|
+
enabled: true
|
|
190
|
+
|
|
191
|
+
- name: LinkedIn — Product Manager
|
|
192
|
+
query: 'site:linkedin.com/jobs "Product Manager" OR "Senior Product Manager" remote'
|
|
193
|
+
enabled: true
|
|
194
|
+
|
|
195
|
+
- name: LinkedIn — Data Engineer
|
|
196
|
+
query: 'site:linkedin.com/jobs "Data Engineer" OR "Senior Data Engineer" OR "Analytics Engineer" remote'
|
|
197
|
+
enabled: true
|
|
198
|
+
|
|
199
|
+
# -- Indeed --
|
|
200
|
+
- name: Indeed — Software Engineer
|
|
201
|
+
query: 'site:indeed.com "Software Engineer" OR "Full Stack Engineer" remote'
|
|
202
|
+
enabled: true
|
|
203
|
+
|
|
204
|
+
- name: Indeed — DevOps & Platform
|
|
205
|
+
query: 'site:indeed.com "DevOps Engineer" OR "Platform Engineer" OR "SRE" remote'
|
|
206
|
+
enabled: true
|
|
207
|
+
|
|
208
|
+
# -- BuiltIn --
|
|
209
|
+
- name: BuiltIn — Engineering
|
|
210
|
+
query: 'site:builtin.com/jobs "Software Engineer" OR "Backend Engineer" OR "Frontend Engineer" remote'
|
|
211
|
+
enabled: true
|
|
212
|
+
|
|
213
|
+
- name: BuiltIn — Data & ML
|
|
214
|
+
query: 'site:builtin.com/jobs "Data Engineer" OR "ML Engineer" OR "Machine Learning" remote'
|
|
215
|
+
enabled: true
|
|
216
|
+
|
|
217
|
+
# -- Glassdoor --
|
|
218
|
+
- name: Glassdoor — Engineering
|
|
219
|
+
query: 'site:glassdoor.com/job-listing "Software Engineer" OR "Full Stack" OR "Backend" remote'
|
|
220
|
+
enabled: true
|
|
221
|
+
|
|
222
|
+
# -- Y Combinator --
|
|
223
|
+
- name: Work at a Startup — Engineering
|
|
224
|
+
query: 'site:workatastartup.com "Software Engineer" OR "Full Stack" OR "Backend" OR "Frontend"'
|
|
225
|
+
enabled: true
|
|
226
|
+
|
|
227
|
+
- name: Work at a Startup — Data & AI
|
|
228
|
+
query: 'site:workatastartup.com "Data Engineer" OR "ML Engineer" OR "AI Engineer" OR "Data Scientist"'
|
|
229
|
+
enabled: true
|
|
230
|
+
|
|
231
|
+
# -- Wellfound / AngelList --
|
|
232
|
+
- name: Wellfound — Engineering
|
|
233
|
+
query: 'site:wellfound.com "Software Engineer" OR "Full Stack Engineer" OR "Backend Engineer" remote'
|
|
234
|
+
enabled: true
|
|
235
|
+
|
|
236
|
+
- name: Wellfound — Data & ML
|
|
237
|
+
query: 'site:wellfound.com "Data Engineer" OR "ML Engineer" OR "Machine Learning Engineer" remote'
|
|
238
|
+
enabled: true
|
|
239
|
+
|
|
240
|
+
- name: Wellfound — DevOps & Platform
|
|
241
|
+
query: 'site:wellfound.com "DevOps" OR "Platform Engineer" OR "SRE" OR "Infrastructure" remote'
|
|
242
|
+
enabled: true
|
|
243
|
+
|
|
244
|
+
# -- Remote-Specific Boards --
|
|
245
|
+
- name: We Work Remotely — Engineering
|
|
246
|
+
query: 'site:weworkremotely.com "Software Engineer" OR "Full Stack" OR "Backend" OR "Frontend"'
|
|
247
|
+
enabled: true
|
|
248
|
+
|
|
249
|
+
- name: We Work Remotely — DevOps & Data
|
|
250
|
+
query: 'site:weworkremotely.com "DevOps" OR "Data Engineer" OR "ML Engineer" OR "SRE"'
|
|
251
|
+
enabled: true
|
|
252
|
+
|
|
253
|
+
- name: RemoteOK — Engineering
|
|
254
|
+
query: 'site:remoteok.com "Software Engineer" OR "Full Stack" OR "Backend" OR "Frontend" OR "DevOps"'
|
|
255
|
+
enabled: true
|
|
256
|
+
|
|
257
|
+
- name: FlexJobs — Tech
|
|
258
|
+
query: 'site:flexjobs.com "Software Engineer" OR "Data Engineer" OR "Product Manager" remote'
|
|
259
|
+
enabled: true
|
|
260
|
+
|
|
261
|
+
- name: Remote.co — Engineering
|
|
262
|
+
query: 'site:remote.co "Software Engineer" OR "Developer" OR "Engineer" remote'
|
|
263
|
+
enabled: true
|
|
264
|
+
|
|
265
|
+
- name: Himalayas — Engineering
|
|
266
|
+
query: 'site:himalayas.app "Software Engineer" OR "Backend" OR "Full Stack" OR "DevOps" remote'
|
|
267
|
+
enabled: true
|
|
268
|
+
|
|
269
|
+
# -- Tech-Specific --
|
|
270
|
+
- name: Hacker News — Who is Hiring
|
|
271
|
+
query: 'site:news.ycombinator.com "Who is hiring" OR "Ask HN: Who is hiring"'
|
|
272
|
+
enabled: true
|
|
273
|
+
|
|
274
|
+
- name: StackOverflow — Engineering
|
|
275
|
+
query: 'site:stackoverflow.com/jobs OR site:stackoverflow.co/company "Software Engineer" OR "Developer" remote'
|
|
276
|
+
enabled: true
|
|
277
|
+
|
|
278
|
+
# -- ATS Cross-Platform: Greenhouse role-specific --
|
|
279
|
+
- name: Greenhouse — Backend Engineer
|
|
280
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "Backend Engineer" OR "Senior Backend Engineer" remote'
|
|
281
|
+
enabled: true
|
|
282
|
+
|
|
283
|
+
- name: Greenhouse — Frontend Engineer
|
|
284
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "Frontend Engineer" OR "Senior Frontend Engineer" remote'
|
|
285
|
+
enabled: true
|
|
286
|
+
|
|
287
|
+
- name: Greenhouse — Full-Stack Engineer
|
|
288
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "Full Stack Engineer" OR "Full-Stack Engineer" remote'
|
|
289
|
+
enabled: true
|
|
290
|
+
|
|
291
|
+
- name: Greenhouse — DevOps & SRE
|
|
292
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "DevOps Engineer" OR "SRE" OR "Platform Engineer" remote'
|
|
293
|
+
enabled: true
|
|
294
|
+
|
|
295
|
+
- name: Greenhouse — Data Engineer
|
|
296
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "Data Engineer" OR "Analytics Engineer" remote'
|
|
297
|
+
enabled: true
|
|
298
|
+
|
|
299
|
+
- name: Greenhouse — ML Engineer
|
|
300
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "ML Engineer" OR "Machine Learning Engineer" remote'
|
|
301
|
+
enabled: true
|
|
302
|
+
|
|
303
|
+
- name: Greenhouse — Engineering Manager
|
|
304
|
+
query: 'site:boards.greenhouse.io OR site:job-boards.greenhouse.io "Engineering Manager" OR "Head of Engineering" remote'
|
|
305
|
+
enabled: true
|
|
306
|
+
|
|
307
|
+
# -- ATS Cross-Platform: Ashby role-specific --
|
|
308
|
+
- name: Ashby — Backend & Full-Stack
|
|
309
|
+
query: 'site:jobs.ashbyhq.com "Backend Engineer" OR "Full Stack Engineer" OR "Full-Stack Engineer" remote'
|
|
310
|
+
enabled: true
|
|
311
|
+
|
|
312
|
+
- name: Ashby — DevOps & Platform
|
|
313
|
+
query: 'site:jobs.ashbyhq.com "DevOps" OR "Platform Engineer" OR "SRE" OR "Infrastructure Engineer" remote'
|
|
314
|
+
enabled: true
|
|
315
|
+
|
|
316
|
+
- name: Ashby — Data & ML
|
|
317
|
+
query: 'site:jobs.ashbyhq.com "Data Engineer" OR "ML Engineer" OR "Machine Learning" remote'
|
|
318
|
+
enabled: true
|
|
319
|
+
|
|
320
|
+
# -- ATS Cross-Platform: Lever role-specific --
|
|
321
|
+
- name: Lever — Engineering
|
|
322
|
+
query: 'site:jobs.lever.co "Software Engineer" OR "Backend Engineer" OR "Full Stack Engineer" remote'
|
|
323
|
+
enabled: true
|
|
324
|
+
|
|
325
|
+
- name: Lever — DevOps & Data
|
|
326
|
+
query: 'site:jobs.lever.co "DevOps" OR "Data Engineer" OR "Platform Engineer" OR "SRE" remote'
|
|
327
|
+
enabled: true
|
|
328
|
+
|
|
329
|
+
# -- ATS Cross-Platform: Other ATS --
|
|
330
|
+
- name: Workable — Engineering
|
|
331
|
+
query: 'site:apply.workable.com "Software Engineer" OR "Backend" OR "Full Stack" OR "DevOps" remote'
|
|
332
|
+
enabled: true
|
|
333
|
+
|
|
334
|
+
- name: SmartRecruiters — Engineering
|
|
335
|
+
query: 'site:jobs.smartrecruiters.com "Software Engineer" OR "Backend Engineer" OR "Data Engineer" remote'
|
|
336
|
+
enabled: true
|
|
337
|
+
|
|
338
|
+
- name: Jobvite — Engineering
|
|
339
|
+
query: 'site:jobs.jobvite.com "Software Engineer" OR "Backend" OR "Full Stack" OR "DevOps" remote'
|
|
340
|
+
enabled: true
|
|
341
|
+
|
|
342
|
+
- name: BambooHR — Engineering
|
|
343
|
+
query: 'site:bamboohr.com "Software Engineer" OR "DevOps" OR "Data Engineer" remote'
|
|
344
|
+
enabled: true
|
|
345
|
+
|
|
346
|
+
# -- European Job Boards --
|
|
347
|
+
- name: Landing.jobs — Engineering
|
|
348
|
+
query: 'site:landing.jobs "Software Engineer" OR "Backend" OR "Full Stack" OR "Data Engineer"'
|
|
349
|
+
enabled: true
|
|
350
|
+
|
|
351
|
+
- name: SwissDevJobs — Engineering
|
|
352
|
+
query: 'site:swissdevjobs.ch "Software Engineer" OR "Backend" OR "Full Stack" OR "DevOps"'
|
|
353
|
+
enabled: true
|
|
354
|
+
|
|
355
|
+
- name: Berlin Startup Jobs — Engineering
|
|
356
|
+
query: 'site:berlinstartupjobs.com "Software Engineer" OR "Backend" OR "Frontend" OR "Data"'
|
|
357
|
+
enabled: true
|
|
358
|
+
|
|
359
|
+
# -- Role-Specific Cross-Board: Senior/Staff/Principal --
|
|
360
|
+
- name: Staff Engineer — All platforms
|
|
361
|
+
query: '"Staff Engineer" OR "Staff Software Engineer" remote'
|
|
362
|
+
enabled: true
|
|
363
|
+
|
|
364
|
+
- name: Principal Engineer — All platforms
|
|
365
|
+
query: '"Principal Engineer" OR "Principal Software Engineer" remote'
|
|
366
|
+
enabled: true
|
|
367
|
+
|
|
368
|
+
- name: Engineering Manager — All platforms
|
|
369
|
+
query: '"Engineering Manager" OR "Senior Engineering Manager" remote'
|
|
370
|
+
enabled: true
|
|
371
|
+
|
|
372
|
+
- name: Head of Engineering — All platforms
|
|
373
|
+
query: '"Head of Engineering" OR "VP Engineering" OR "VP of Engineering" remote'
|
|
374
|
+
enabled: true
|
|
375
|
+
|
|
376
|
+
- name: CTO — All platforms
|
|
377
|
+
query: '"CTO" OR "Chief Technology Officer" OR "Chief Technical Officer" startup remote'
|
|
378
|
+
enabled: true
|
|
379
|
+
|
|
380
|
+
# -- Role-Specific Cross-Board: Specialized Roles --
|
|
381
|
+
- name: Solutions Architect — All platforms
|
|
382
|
+
query: '"Solutions Architect" OR "Senior Solutions Architect" remote'
|
|
383
|
+
enabled: true
|
|
384
|
+
|
|
385
|
+
- name: Developer Relations — All platforms
|
|
386
|
+
query: '"Developer Relations" OR "DevRel" OR "Developer Advocate" OR "Developer Experience" remote'
|
|
387
|
+
enabled: true
|
|
388
|
+
|
|
389
|
+
- name: Technical Writer — All platforms
|
|
390
|
+
query: '"Technical Writer" OR "Documentation Engineer" OR "Technical Content" remote'
|
|
391
|
+
enabled: true
|
|
392
|
+
|
|
393
|
+
- name: Data Engineer — All platforms
|
|
394
|
+
query: '"Data Engineer" OR "Senior Data Engineer" OR "Analytics Engineer" remote'
|
|
395
|
+
enabled: true
|
|
396
|
+
|
|
397
|
+
- name: ML Engineer — All platforms
|
|
398
|
+
query: '"ML Engineer" OR "Machine Learning Engineer" OR "MLOps Engineer" remote'
|
|
399
|
+
enabled: true
|
|
400
|
+
|
|
401
|
+
- name: AI Researcher — All platforms
|
|
402
|
+
query: '"AI Researcher" OR "Research Scientist" OR "Research Engineer" machine learning remote'
|
|
403
|
+
enabled: true
|
|
404
|
+
|
|
405
|
+
# -- Tracked companies --
|
|
406
|
+
# Companies whose career pages are checked directly.
|
|
407
|
+
# scan_method: geometra (default), websearch, greenhouse_api
|
|
408
|
+
# For Greenhouse companies, add api: field for faster structured JSON access.
|
|
409
|
+
|
|
410
|
+
tracked_companies:
|
|
411
|
+
|
|
412
|
+
# -- AI Labs & LLM providers --
|
|
413
|
+
|
|
414
|
+
- name: Anthropic
|
|
415
|
+
careers_url: https://job-boards.greenhouse.io/anthropic
|
|
416
|
+
api: https://boards-api.greenhouse.io/v1/boards/anthropic/jobs
|
|
417
|
+
tags: ["ai-lab", "us"]
|
|
418
|
+
enabled: true
|
|
419
|
+
|
|
420
|
+
- name: OpenAI
|
|
421
|
+
careers_url: https://openai.com/careers
|
|
422
|
+
scan_method: websearch
|
|
423
|
+
scan_query: 'site:openai.com/careers "Solutions" OR "Forward Deployed" OR "AI Engineer"'
|
|
424
|
+
tags: ["ai-lab", "us"]
|
|
425
|
+
enabled: true
|
|
426
|
+
|
|
427
|
+
- name: Meta
|
|
428
|
+
careers_url: https://www.metacareers.com/
|
|
429
|
+
scan_method: websearch
|
|
430
|
+
scan_query: 'site:metacareers.com "AI" OR "ML" OR "Research Scientist" OR "Generative" OR "Llama"'
|
|
431
|
+
notes: "FAIR, GenAI product, Reality Labs, and infra."
|
|
432
|
+
tags: ["ai-lab", "us"]
|
|
433
|
+
enabled: true
|
|
434
|
+
|
|
435
|
+
- name: Microsoft
|
|
436
|
+
careers_url: https://careers.microsoft.com/
|
|
437
|
+
scan_method: websearch
|
|
438
|
+
scan_query: 'site:careers.microsoft.com "AI" OR "Copilot" OR "Azure OpenAI" OR "Applied Scientist"'
|
|
439
|
+
notes: "Copilot, Azure AI platform, and research."
|
|
440
|
+
tags: ["ai-lab", "cloud", "us"]
|
|
441
|
+
enabled: true
|
|
442
|
+
|
|
443
|
+
- name: NVIDIA
|
|
444
|
+
careers_url: https://www.nvidia.com/en-us/about-nvidia/careers/
|
|
445
|
+
scan_method: websearch
|
|
446
|
+
scan_query: 'site:nvidia.com/careers "AI" OR "ML" OR "Deep Learning" OR "Solutions Architect" OR "CUDA"'
|
|
447
|
+
notes: "GPUs, CUDA stack, enterprise AI, and research."
|
|
448
|
+
tags: ["ai-lab", "chips", "gpu-cloud", "us"]
|
|
449
|
+
enabled: true
|
|
450
|
+
|
|
451
|
+
- name: Databricks
|
|
452
|
+
careers_url: https://job-boards.greenhouse.io/databricks
|
|
453
|
+
api: https://boards-api.greenhouse.io/v1/boards/databricks/jobs
|
|
454
|
+
notes: "Lakehouse, ML, and data engineering at scale."
|
|
455
|
+
tags: ["ai-lab", "ai-infra", "analytics", "us"]
|
|
456
|
+
enabled: true
|
|
457
|
+
|
|
458
|
+
- name: Snowflake
|
|
459
|
+
careers_url: https://careers.snowflake.com
|
|
460
|
+
scan_method: websearch
|
|
461
|
+
scan_query: 'site:careers.snowflake.com "AI" OR "ML" OR "Solutions" OR "Data Engineer" OR "Platform"'
|
|
462
|
+
notes: "Data cloud; ML and data engineering at enterprise scale."
|
|
463
|
+
tags: ["ai-lab", "cloud", "analytics", "us"]
|
|
464
|
+
enabled: true
|
|
465
|
+
|
|
466
|
+
- name: Confluent
|
|
467
|
+
careers_url: https://jobs.ashbyhq.com/confluent
|
|
468
|
+
notes: "Apache Kafka and data streaming; cloud platform, connectors, and stream processing."
|
|
469
|
+
tags: ["ai-lab", "developer-tools", "us"]
|
|
470
|
+
enabled: true
|
|
471
|
+
|
|
472
|
+
- name: Scale
|
|
473
|
+
careers_url: https://jobs.ashbyhq.com/scale
|
|
474
|
+
notes: "Data for foundation models, evals, and applied research."
|
|
475
|
+
tags: ["ai-lab", "ai-infra", "us"]
|
|
476
|
+
enabled: true
|
|
477
|
+
|
|
478
|
+
- name: Perplexity
|
|
479
|
+
careers_url: https://jobs.ashbyhq.com/perplexity
|
|
480
|
+
notes: "Search and answer products built on large language models."
|
|
481
|
+
tags: ["ai-lab", "ai-search", "us"]
|
|
482
|
+
enabled: true
|
|
483
|
+
|
|
484
|
+
- name: Replicate
|
|
485
|
+
careers_url: https://jobs.ashbyhq.com/replicate
|
|
486
|
+
notes: "APIs for running and shipping ML models."
|
|
487
|
+
tags: ["ai-lab", "ai-infra", "us"]
|
|
488
|
+
enabled: true
|
|
489
|
+
|
|
490
|
+
- name: Hugging Face
|
|
491
|
+
careers_url: https://apply.workable.com/huggingface/
|
|
492
|
+
scan_method: websearch
|
|
493
|
+
scan_query: 'site:apply.workable.com/huggingface "engineer" OR "ML" OR "AI" OR "research"'
|
|
494
|
+
notes: "Open-source ML hub and inference platform."
|
|
495
|
+
tags: ["ai-lab", "open-source", "us"]
|
|
496
|
+
enabled: true
|
|
497
|
+
|
|
498
|
+
- name: Groq
|
|
499
|
+
careers_url: https://jobs.ashbyhq.com/groq
|
|
500
|
+
notes: "Inference hardware and hosted models (LPU)."
|
|
501
|
+
tags: ["ai-lab", "chips", "ai-infra", "us"]
|
|
502
|
+
enabled: true
|
|
503
|
+
|
|
504
|
+
- name: xAI
|
|
505
|
+
careers_url: https://job-boards.greenhouse.io/xai
|
|
506
|
+
api: https://boards-api.greenhouse.io/v1/boards/xai/jobs
|
|
507
|
+
notes: "Grok; model training and inference."
|
|
508
|
+
tags: ["ai-lab", "us"]
|
|
509
|
+
enabled: true
|
|
510
|
+
|
|
511
|
+
- name: CoreWeave
|
|
512
|
+
careers_url: https://job-boards.greenhouse.io/coreweave
|
|
513
|
+
api: https://boards-api.greenhouse.io/v1/boards/coreweave/jobs
|
|
514
|
+
notes: "GPU cloud and AI infrastructure."
|
|
515
|
+
tags: ["ai-lab", "gpu-cloud", "ai-infra", "us"]
|
|
516
|
+
enabled: true
|
|
517
|
+
|
|
518
|
+
- name: Lambda
|
|
519
|
+
careers_url: https://jobs.ashbyhq.com/lambda
|
|
520
|
+
notes: "GPU cloud and supercomputing for AI training and inference."
|
|
521
|
+
tags: ["ai-lab", "gpu-cloud", "ai-infra", "us"]
|
|
522
|
+
enabled: true
|
|
523
|
+
|
|
524
|
+
- name: Modal
|
|
525
|
+
careers_url: https://jobs.ashbyhq.com/modal
|
|
526
|
+
notes: "Serverless GPUs and Python for ML workloads."
|
|
527
|
+
tags: ["ai-lab", "ai-infra", "gpu-cloud", "us"]
|
|
528
|
+
enabled: true
|
|
529
|
+
|
|
530
|
+
- name: Fireworks AI
|
|
531
|
+
careers_url: https://jobs.ashbyhq.com/fireworks.ai
|
|
532
|
+
notes: "Fast inference and fine-tuning for open models."
|
|
533
|
+
tags: ["ai-lab", "ai-infra", "us"]
|
|
534
|
+
enabled: true
|
|
535
|
+
|
|
536
|
+
# -- Voice AI & Conversational AI --
|
|
537
|
+
|
|
538
|
+
- name: PolyAI
|
|
539
|
+
careers_url: https://job-boards.eu.greenhouse.io/polyai
|
|
540
|
+
api: https://boards-api.greenhouse.io/v1/boards/polyai/jobs
|
|
541
|
+
notes: "UK. Voice AI for enterprise contact centers."
|
|
542
|
+
tags: ["voice-ai", "conversational-ai", "uk"]
|
|
543
|
+
enabled: true
|
|
544
|
+
|
|
545
|
+
- name: Parloa
|
|
546
|
+
careers_url: https://job-boards.eu.greenhouse.io/parloa
|
|
547
|
+
api: https://boards-api.greenhouse.io/v1/boards/parloa/jobs
|
|
548
|
+
notes: "Berlin EMEA. Voice AI enterprise."
|
|
549
|
+
tags: ["voice-ai", "conversational-ai", "eu"]
|
|
550
|
+
enabled: true
|
|
551
|
+
|
|
552
|
+
- name: Intercom
|
|
553
|
+
careers_url: https://job-boards.greenhouse.io/intercom
|
|
554
|
+
api: https://boards-api.greenhouse.io/v1/boards/intercom/jobs
|
|
555
|
+
notes: "Dublin EMEA. Fin AI agent."
|
|
556
|
+
tags: ["voice-ai", "conversational-ai", "ai-agents", "enterprise-saas", "eu"]
|
|
557
|
+
enabled: true
|
|
558
|
+
|
|
559
|
+
- name: Hume AI
|
|
560
|
+
careers_url: https://job-boards.greenhouse.io/humeai
|
|
561
|
+
api: https://boards-api.greenhouse.io/v1/boards/humeai/jobs
|
|
562
|
+
notes: "NYC. Empathic voice AI."
|
|
563
|
+
tags: ["voice-ai", "conversational-ai", "us"]
|
|
564
|
+
enabled: true
|
|
565
|
+
|
|
566
|
+
- name: ElevenLabs
|
|
567
|
+
careers_url: https://jobs.ashbyhq.com/elevenlabs
|
|
568
|
+
scan_method: websearch
|
|
569
|
+
scan_query: 'site:jobs.ashbyhq.com/elevenlabs'
|
|
570
|
+
notes: "Voice AI TTS leader."
|
|
571
|
+
tags: ["voice-ai", "conversational-ai", "us"]
|
|
572
|
+
enabled: true
|
|
573
|
+
|
|
574
|
+
- name: Deepgram
|
|
575
|
+
careers_url: https://jobs.ashbyhq.com/deepgram
|
|
576
|
+
scan_method: websearch
|
|
577
|
+
scan_query: 'site:deepgram.com/careers OR "deepgram" "Solutions" OR "AI Engineer" site:jobs.ashbyhq.com'
|
|
578
|
+
notes: "STT/TTS APIs."
|
|
579
|
+
tags: ["voice-ai", "conversational-ai", "us"]
|
|
580
|
+
enabled: true
|
|
581
|
+
|
|
582
|
+
- name: Vapi
|
|
583
|
+
careers_url: https://jobs.ashbyhq.com/vapi
|
|
584
|
+
scan_method: websearch
|
|
585
|
+
scan_query: 'site:jobs.ashbyhq.com/vapi'
|
|
586
|
+
notes: "Voice AI infrastructure."
|
|
587
|
+
tags: ["voice-ai", "conversational-ai", "ai-infra", "us"]
|
|
588
|
+
enabled: true
|
|
589
|
+
|
|
590
|
+
- name: Bland AI
|
|
591
|
+
careers_url: https://jobs.ashbyhq.com/bland
|
|
592
|
+
scan_method: websearch
|
|
593
|
+
scan_query: 'site:jobs.ashbyhq.com/bland'
|
|
594
|
+
notes: "Voice phone agents. $65M Series B."
|
|
595
|
+
tags: ["voice-ai", "conversational-ai", "ai-agents", "us"]
|
|
596
|
+
enabled: true
|
|
597
|
+
|
|
598
|
+
# -- AI-native platforms (FDE/SA teams) --
|
|
599
|
+
|
|
600
|
+
- name: Retool
|
|
601
|
+
careers_url: https://retool.com/careers
|
|
602
|
+
scan_method: websearch
|
|
603
|
+
scan_query: 'site:retool.com/careers "Deployed" OR "AI" OR "Solutions"'
|
|
604
|
+
notes: "London. Popularized Deployed Engineer role."
|
|
605
|
+
tags: ["developer-tools", "no-code", "uk"]
|
|
606
|
+
enabled: true
|
|
607
|
+
|
|
608
|
+
- name: Airtable
|
|
609
|
+
careers_url: https://job-boards.greenhouse.io/airtable
|
|
610
|
+
api: https://boards-api.greenhouse.io/v1/boards/airtable/jobs
|
|
611
|
+
notes: "No-code + AI platform."
|
|
612
|
+
tags: ["developer-tools", "no-code", "productivity", "us"]
|
|
613
|
+
enabled: true
|
|
614
|
+
|
|
615
|
+
- name: Vercel
|
|
616
|
+
careers_url: https://job-boards.greenhouse.io/vercel
|
|
617
|
+
api: https://boards-api.greenhouse.io/v1/boards/vercel/jobs
|
|
618
|
+
notes: "AI SDK, v0.dev. Frontend AI tooling."
|
|
619
|
+
tags: ["developer-tools", "us"]
|
|
620
|
+
enabled: true
|
|
621
|
+
|
|
622
|
+
- name: Cloudflare
|
|
623
|
+
careers_url: https://job-boards.greenhouse.io/cloudflare
|
|
624
|
+
api: https://boards-api.greenhouse.io/v1/boards/cloudflare/jobs
|
|
625
|
+
notes: "Edge network, Workers AI, developer platform."
|
|
626
|
+
tags: ["developer-tools", "cloud", "networking", "us"]
|
|
627
|
+
enabled: true
|
|
628
|
+
|
|
629
|
+
- name: GitLab
|
|
630
|
+
careers_url: https://job-boards.greenhouse.io/gitlab
|
|
631
|
+
api: https://boards-api.greenhouse.io/v1/boards/gitlab/jobs
|
|
632
|
+
notes: "DevSecOps platform; CI/CD, security scanning, remote-first engineering."
|
|
633
|
+
tags: ["developer-tools", "devops", "remote-first"]
|
|
634
|
+
enabled: true
|
|
635
|
+
|
|
636
|
+
- name: Linear
|
|
637
|
+
careers_url: https://linear.app/careers
|
|
638
|
+
scan_method: websearch
|
|
639
|
+
scan_query: 'site:linear.app/careers "Engineer" OR "Product" OR "AI"'
|
|
640
|
+
notes: "Issue tracking; product-engineering and AI-facing roles."
|
|
641
|
+
tags: ["developer-tools", "productivity", "us"]
|
|
642
|
+
enabled: true
|
|
643
|
+
|
|
644
|
+
- name: Notion
|
|
645
|
+
careers_url: https://jobs.ashbyhq.com/notion
|
|
646
|
+
notes: "Workspace and docs; Notion AI product surface."
|
|
647
|
+
tags: ["developer-tools", "productivity", "us"]
|
|
648
|
+
enabled: true
|
|
649
|
+
|
|
650
|
+
- name: Temporal
|
|
651
|
+
careers_url: https://job-boards.greenhouse.io/temporal
|
|
652
|
+
api: https://boards-api.greenhouse.io/v1/boards/temporal/jobs
|
|
653
|
+
notes: "Workflow orchestration."
|
|
654
|
+
tags: ["developer-tools", "us"]
|
|
655
|
+
enabled: true
|
|
656
|
+
|
|
657
|
+
- name: Arize AI
|
|
658
|
+
careers_url: https://job-boards.greenhouse.io/arizeai
|
|
659
|
+
api: https://boards-api.greenhouse.io/v1/boards/arizeai/jobs
|
|
660
|
+
notes: "LLMOps / AI observability."
|
|
661
|
+
tags: ["developer-tools", "llmops", "observability", "us"]
|
|
662
|
+
enabled: true
|
|
663
|
+
|
|
664
|
+
- name: RunPod
|
|
665
|
+
careers_url: https://job-boards.greenhouse.io/runpod
|
|
666
|
+
api: https://boards-api.greenhouse.io/v1/boards/runpod/jobs
|
|
667
|
+
notes: "GPU cloud for AI."
|
|
668
|
+
tags: ["developer-tools", "gpu-cloud", "ai-infra", "us"]
|
|
669
|
+
enabled: true
|
|
670
|
+
|
|
671
|
+
- name: MongoDB
|
|
672
|
+
careers_url: https://job-boards.greenhouse.io/mongodb
|
|
673
|
+
api: https://boards-api.greenhouse.io/v1/boards/mongodb/jobs
|
|
674
|
+
notes: "Document database; Atlas vector search and RAG-friendly features."
|
|
675
|
+
tags: ["developer-tools", "vector-db", "database", "us"]
|
|
676
|
+
enabled: true
|
|
677
|
+
|
|
678
|
+
- name: Elastic
|
|
679
|
+
careers_url: https://jobs.elastic.co
|
|
680
|
+
api: https://boards-api.greenhouse.io/v1/boards/elastic/jobs
|
|
681
|
+
notes: "Search, observability, and security; Elasticsearch, vector search, and cloud platform engineering."
|
|
682
|
+
tags: ["developer-tools", "observability", "vector-db", "ai-search", "us"]
|
|
683
|
+
enabled: true
|
|
684
|
+
|
|
685
|
+
- name: Stripe
|
|
686
|
+
careers_url: https://job-boards.greenhouse.io/stripe
|
|
687
|
+
api: https://boards-api.greenhouse.io/v1/boards/stripe/jobs
|
|
688
|
+
notes: "Payments and financial infra; ML platform, data engineering, and applied science."
|
|
689
|
+
tags: ["developer-tools", "fintech", "us"]
|
|
690
|
+
enabled: true
|
|
691
|
+
|
|
692
|
+
- name: Datadog
|
|
693
|
+
careers_url: https://job-boards.greenhouse.io/datadog
|
|
694
|
+
api: https://boards-api.greenhouse.io/v1/boards/datadog/jobs
|
|
695
|
+
notes: "Observability and security; LLM monitoring and platform engineering."
|
|
696
|
+
tags: ["developer-tools", "observability", "us"]
|
|
697
|
+
enabled: true
|
|
698
|
+
|
|
699
|
+
- name: Grafana Labs
|
|
700
|
+
careers_url: https://jobs.ashbyhq.com/grafana
|
|
701
|
+
notes: "Open-source observability (Grafana, Loki, Tempo, Mimir); platform and ML-adjacent roles."
|
|
702
|
+
tags: ["developer-tools", "observability", "open-source", "remote-first"]
|
|
703
|
+
enabled: true
|
|
704
|
+
|
|
705
|
+
- name: Glean
|
|
706
|
+
careers_url: https://job-boards.greenhouse.io/gleanwork
|
|
707
|
+
api: https://boards-api.greenhouse.io/v1/boards/gleanwork/jobs
|
|
708
|
+
notes: "Enterprise AI search."
|
|
709
|
+
tags: ["developer-tools", "ai-search", "enterprise-saas", "us"]
|
|
710
|
+
enabled: true
|
|
711
|
+
|
|
712
|
+
# -- Contact Center AI & CX --
|
|
713
|
+
|
|
714
|
+
- name: Ada
|
|
715
|
+
careers_url: https://job-boards.greenhouse.io/ada
|
|
716
|
+
scan_method: websearch
|
|
717
|
+
scan_query: '"ada.cx" OR "ada" "AI" "Solutions" OR "Engineer" site:jobs.ashbyhq.com OR site:job-boards.greenhouse.io'
|
|
718
|
+
notes: "Toronto + remote. AI customer service."
|
|
719
|
+
tags: ["conversational-ai", "ai-agents", "remote-first"]
|
|
720
|
+
enabled: true
|
|
721
|
+
|
|
722
|
+
- name: LivePerson
|
|
723
|
+
careers_url: https://liveperson.com/company/careers
|
|
724
|
+
scan_method: websearch
|
|
725
|
+
scan_query: 'site:liveperson.com/careers OR "liveperson" "Solutions" OR "AI" site:job-boards.greenhouse.io'
|
|
726
|
+
notes: "Remote EMEA. Conversational AI enterprise."
|
|
727
|
+
tags: ["conversational-ai", "remote-first", "eu"]
|
|
728
|
+
enabled: true
|
|
729
|
+
|
|
730
|
+
- name: Sierra
|
|
731
|
+
careers_url: https://jobs.ashbyhq.com/sierra
|
|
732
|
+
scan_method: websearch
|
|
733
|
+
scan_query: '"sierra.ai" "AI" "Forward Deployed" OR "Applied" OR "Solutions" site:jobs.ashbyhq.com'
|
|
734
|
+
notes: "Bret Taylor (ex-CEO Salesforce). AI customer agents."
|
|
735
|
+
tags: ["conversational-ai", "ai-agents", "us"]
|
|
736
|
+
enabled: true
|
|
737
|
+
|
|
738
|
+
- name: Decagon
|
|
739
|
+
careers_url: https://jobs.ashbyhq.com/decagon
|
|
740
|
+
scan_method: websearch
|
|
741
|
+
scan_query: '"decagon" "AI" "Forward Deployed" OR "Solutions" site:jobs.ashbyhq.com'
|
|
742
|
+
notes: "AI customer support agents."
|
|
743
|
+
tags: ["conversational-ai", "ai-agents", "us"]
|
|
744
|
+
enabled: true
|
|
745
|
+
|
|
746
|
+
# -- Enterprise comms & contact center --
|
|
747
|
+
|
|
748
|
+
- name: Talkdesk
|
|
749
|
+
careers_url: https://www.talkdesk.com/careers
|
|
750
|
+
scan_method: websearch
|
|
751
|
+
scan_query: 'site:talkdesk.com/careers "AI" OR "Solutions Architect" OR "AI Engineer"'
|
|
752
|
+
notes: "Lisbon. Contact center AI. EMEA friendly."
|
|
753
|
+
tags: ["conversational-ai", "eu"]
|
|
754
|
+
enabled: true
|
|
755
|
+
|
|
756
|
+
- name: Twilio
|
|
757
|
+
careers_url: https://www.twilio.com/en-us/company/jobs
|
|
758
|
+
scan_method: websearch
|
|
759
|
+
scan_query: 'site:twilio.com/company/jobs "AI" OR "Voice" "Solutions" OR "Architect"'
|
|
760
|
+
notes: "Voice/messaging infrastructure."
|
|
761
|
+
tags: ["conversational-ai", "communication", "us"]
|
|
762
|
+
enabled: true
|
|
763
|
+
|
|
764
|
+
- name: Dialpad
|
|
765
|
+
careers_url: https://www.dialpad.com/careers
|
|
766
|
+
scan_method: websearch
|
|
767
|
+
scan_query: '"dialpad" "AI" "Solutions" OR "Engineer" site:job-boards.greenhouse.io OR site:jobs.ashbyhq.com'
|
|
768
|
+
notes: "Voice AI for business comms."
|
|
769
|
+
tags: ["conversational-ai", "voice-ai", "communication", "us"]
|
|
770
|
+
enabled: true
|
|
771
|
+
|
|
772
|
+
- name: Gong
|
|
773
|
+
careers_url: https://www.gong.io/careers
|
|
774
|
+
scan_method: websearch
|
|
775
|
+
scan_query: 'site:gong.io/careers "AI" OR "Solutions" OR "Architect"'
|
|
776
|
+
notes: "Revenue intelligence with voice AI."
|
|
777
|
+
tags: ["conversational-ai", "voice-ai", "defense", "crm", "us"]
|
|
778
|
+
enabled: true
|
|
779
|
+
|
|
780
|
+
- name: Genesys
|
|
781
|
+
careers_url: https://www.genesys.com/careers
|
|
782
|
+
scan_method: websearch
|
|
783
|
+
scan_query: 'site:genesys.com/careers "AI" "Solutions Architect" OR "AI Engineer"'
|
|
784
|
+
notes: "Contact center cloud + AI."
|
|
785
|
+
tags: ["conversational-ai", "us"]
|
|
786
|
+
enabled: true
|
|
787
|
+
|
|
788
|
+
- name: Salesforce
|
|
789
|
+
careers_url: https://careers.salesforce.com
|
|
790
|
+
scan_method: websearch
|
|
791
|
+
scan_query: 'site:careers.salesforce.com "Forward Deployed" OR "AI Engineer" OR "Agentforce"'
|
|
792
|
+
notes: "Agentforce = AI agents platform."
|
|
793
|
+
tags: ["conversational-ai", "ai-agents", "crm", "us"]
|
|
794
|
+
enabled: true
|
|
795
|
+
|
|
796
|
+
# -- AI infra & LLMOps --
|
|
797
|
+
|
|
798
|
+
- name: Langfuse
|
|
799
|
+
careers_url: https://langfuse.com/careers
|
|
800
|
+
scan_method: websearch
|
|
801
|
+
scan_query: '"langfuse" careers OR jobs "engineer" OR "solutions"'
|
|
802
|
+
notes: "Berlin. LLMOps / observability."
|
|
803
|
+
tags: ["ai-infra", "llmops", "observability", "eu"]
|
|
804
|
+
enabled: true
|
|
805
|
+
|
|
806
|
+
- name: Lindy
|
|
807
|
+
careers_url: https://jobs.ashbyhq.com/lindy
|
|
808
|
+
scan_method: websearch
|
|
809
|
+
scan_query: '"lindy.ai" "AI" "Forward Deployed" OR "Solutions" site:jobs.ashbyhq.com'
|
|
810
|
+
notes: "AI agent management platform."
|
|
811
|
+
tags: ["ai-infra", "llmops", "ai-agents", "us"]
|
|
812
|
+
enabled: true
|
|
813
|
+
|
|
814
|
+
- name: Cognigy
|
|
815
|
+
careers_url: https://careers.cognigy.com
|
|
816
|
+
scan_method: websearch
|
|
817
|
+
scan_query: '"cognigy" careers "AI" OR "Solutions" OR "Engineer"'
|
|
818
|
+
notes: "Dusseldorf EMEA. Conversational AI enterprise."
|
|
819
|
+
tags: ["ai-infra", "llmops", "conversational-ai", "eu"]
|
|
820
|
+
enabled: true
|
|
821
|
+
|
|
822
|
+
- name: Speechmatics
|
|
823
|
+
careers_url: https://www.speechmatics.com/company/careers
|
|
824
|
+
scan_method: websearch
|
|
825
|
+
scan_query: '"speechmatics" careers OR jobs "engineer" OR "solutions"'
|
|
826
|
+
notes: "Cambridge UK. Speech recognition platform."
|
|
827
|
+
tags: ["ai-infra", "llmops", "voice-ai", "uk"]
|
|
828
|
+
enabled: true
|
|
829
|
+
|
|
830
|
+
# -- No-Code/Low-Code & Automation --
|
|
831
|
+
|
|
832
|
+
- name: n8n
|
|
833
|
+
careers_url: https://jobs.ashbyhq.com/n8n
|
|
834
|
+
scan_method: websearch
|
|
835
|
+
scan_query: 'site:jobs.ashbyhq.com/n8n'
|
|
836
|
+
notes: "Berlin + remote EU/US. Workflow automation."
|
|
837
|
+
tags: ["automation", "no-code", "low-code", "open-source", "eu"]
|
|
838
|
+
enabled: true
|
|
839
|
+
|
|
840
|
+
- name: Zapier
|
|
841
|
+
careers_url: https://jobs.ashbyhq.com/zapier
|
|
842
|
+
scan_method: websearch
|
|
843
|
+
scan_query: 'site:jobs.ashbyhq.com/zapier'
|
|
844
|
+
notes: "Remote-first. Automation platform leader."
|
|
845
|
+
tags: ["automation", "no-code", "low-code", "remote-first"]
|
|
846
|
+
enabled: true
|
|
847
|
+
|
|
848
|
+
- name: Make.com (Celonis)
|
|
849
|
+
careers_url: https://www.make.com/en/careers
|
|
850
|
+
scan_method: websearch
|
|
851
|
+
scan_query: 'site:make.com/en/careers OR "make.com" "engineer" OR "solutions" site:jobs.ashbyhq.com'
|
|
852
|
+
notes: "Celonis parent company. Automation platform."
|
|
853
|
+
tags: ["automation", "no-code", "low-code", "eu"]
|
|
854
|
+
enabled: true
|
|
855
|
+
|
|
856
|
+
# -- Ashby-based (Geometra direct) --
|
|
857
|
+
|
|
858
|
+
- name: Cohere
|
|
859
|
+
careers_url: https://jobs.ashbyhq.com/cohere
|
|
860
|
+
notes: "AI/LLM provider. Toronto + remote."
|
|
861
|
+
tags: ["ai-lab", "remote-first"]
|
|
862
|
+
enabled: true
|
|
863
|
+
|
|
864
|
+
- name: Together AI
|
|
865
|
+
careers_url: https://jobs.ashbyhq.com/togethercomputer
|
|
866
|
+
notes: "Inference and training stack; strong open-model focus."
|
|
867
|
+
tags: ["ai-infra", "open-source", "us"]
|
|
868
|
+
enabled: true
|
|
869
|
+
|
|
870
|
+
- name: Anyscale
|
|
871
|
+
careers_url: https://jobs.ashbyhq.com/anyscale
|
|
872
|
+
notes: "Ray for distributed Python and ML workloads."
|
|
873
|
+
tags: ["ai-infra", "us"]
|
|
874
|
+
enabled: true
|
|
875
|
+
|
|
876
|
+
- name: LangChain
|
|
877
|
+
careers_url: https://jobs.ashbyhq.com/langchain
|
|
878
|
+
notes: "LangChain/LangSmith framework."
|
|
879
|
+
tags: ["ai-infra", "developer-tools", "us"]
|
|
880
|
+
enabled: true
|
|
881
|
+
|
|
882
|
+
- name: Pinecone
|
|
883
|
+
careers_url: https://jobs.ashbyhq.com/pinecone
|
|
884
|
+
notes: "Vector database."
|
|
885
|
+
tags: ["vector-db", "database", "us"]
|
|
886
|
+
enabled: true
|
|
887
|
+
|
|
888
|
+
- name: Supabase
|
|
889
|
+
careers_url: https://jobs.ashbyhq.com/supabase
|
|
890
|
+
notes: "Postgres platform; AI and edge database features."
|
|
891
|
+
tags: ["database", "developer-tools", "remote-first"]
|
|
892
|
+
enabled: true
|
|
893
|
+
|
|
894
|
+
- name: PostHog
|
|
895
|
+
careers_url: https://jobs.ashbyhq.com/posthog
|
|
896
|
+
notes: "Open-source product analytics, feature flags, and session replay; remote-friendly."
|
|
897
|
+
tags: ["open-source", "developer-tools", "analytics", "remote-first"]
|
|
898
|
+
enabled: true
|
|
899
|
+
|
|
900
|
+
- name: Neon
|
|
901
|
+
careers_url: https://jobs.ashbyhq.com/neon
|
|
902
|
+
notes: "Serverless Postgres; branching for dev and staging."
|
|
903
|
+
tags: ["database", "developer-tools", "us"]
|
|
904
|
+
enabled: true
|
|
905
|
+
|
|
906
|
+
- name: PlanetScale
|
|
907
|
+
careers_url: https://jobs.ashbyhq.com/planetscale
|
|
908
|
+
notes: "Serverless MySQL (Vitess); database platform and branching workflows."
|
|
909
|
+
tags: ["database", "developer-tools", "us"]
|
|
910
|
+
enabled: true
|
|
911
|
+
|
|
912
|
+
- name: Cursor
|
|
913
|
+
careers_url: https://jobs.ashbyhq.com/cursor
|
|
914
|
+
notes: "AI-native editor and agent tooling for developers."
|
|
915
|
+
tags: ["ai-coding", "developer-tools", "us"]
|
|
916
|
+
enabled: true
|
|
917
|
+
|
|
918
|
+
- name: Harvey
|
|
919
|
+
careers_url: https://jobs.ashbyhq.com/harvey
|
|
920
|
+
notes: "Legal AI assistants and workflow automation."
|
|
921
|
+
tags: ["legal-tech", "ai-agents", "us"]
|
|
922
|
+
enabled: true
|
|
923
|
+
|
|
924
|
+
- name: Baseten
|
|
925
|
+
careers_url: https://jobs.ashbyhq.com/baseten
|
|
926
|
+
notes: "Model serving, inference, and ML infrastructure."
|
|
927
|
+
tags: ["ai-infra", "us"]
|
|
928
|
+
enabled: true
|
|
929
|
+
|
|
930
|
+
# -- Lever-based (Geometra direct) --
|
|
931
|
+
|
|
932
|
+
- name: Mistral AI
|
|
933
|
+
careers_url: https://jobs.lever.co/mistral
|
|
934
|
+
notes: "Paris. European AI lab."
|
|
935
|
+
tags: ["ai-lab", "eu"]
|
|
936
|
+
enabled: true
|
|
937
|
+
|
|
938
|
+
- name: Weights & Biases
|
|
939
|
+
careers_url: https://jobs.lever.co/wandb
|
|
940
|
+
scan_method: websearch
|
|
941
|
+
scan_query: '"weights and biases" OR "wandb" careers "engineer" OR "ML"'
|
|
942
|
+
notes: "MLOps platform."
|
|
943
|
+
tags: ["mlops", "us"]
|
|
944
|
+
enabled: true
|
|
945
|
+
|
|
946
|
+
- name: Palantir
|
|
947
|
+
careers_url: https://jobs.lever.co/palantir
|
|
948
|
+
notes: "FDE roles. Mostly US/London."
|
|
949
|
+
tags: ["analytics", "defense", "us", "uk"]
|
|
950
|
+
enabled: true
|
|
951
|
+
|
|
952
|
+
# -- European tech (EMEA-friendly) --
|
|
953
|
+
|
|
954
|
+
- name: Factorial
|
|
955
|
+
careers_url: https://job-boards.greenhouse.io/factorial
|
|
956
|
+
scan_method: websearch
|
|
957
|
+
scan_query: 'site:jobs.greenhouse.io/factorial'
|
|
958
|
+
notes: "Barcelona. HR SaaS unicorn."
|
|
959
|
+
tags: ["eu", "hr-tech"]
|
|
960
|
+
enabled: true
|
|
961
|
+
|
|
962
|
+
- name: Attio
|
|
963
|
+
careers_url: https://jobs.ashbyhq.com/attio
|
|
964
|
+
scan_method: websearch
|
|
965
|
+
scan_query: 'site:attio.com/careers OR site:jobs.ashbyhq.com/attio'
|
|
966
|
+
notes: "Remote EU. AI-native CRM. Series B $52M."
|
|
967
|
+
tags: ["eu", "crm"]
|
|
968
|
+
enabled: true
|
|
969
|
+
|
|
970
|
+
- name: Tinybird
|
|
971
|
+
careers_url: https://jobs.ashbyhq.com/tinybird
|
|
972
|
+
scan_method: websearch
|
|
973
|
+
scan_query: 'site:tinybird.co/careers OR site:jobs.ashbyhq.com/tinybird'
|
|
974
|
+
notes: "Remote. Real-time data platform."
|
|
975
|
+
tags: ["eu", "analytics", "developer-tools", "remote-first"]
|
|
976
|
+
enabled: true
|
|
977
|
+
|
|
978
|
+
- name: Clarity AI
|
|
979
|
+
careers_url: https://jobs.lever.co/clarity-ai
|
|
980
|
+
scan_method: websearch
|
|
981
|
+
scan_query: '"clarity.ai" careers "AI" OR "engineer" OR "data"'
|
|
982
|
+
notes: "Madrid/Remote. Sustainability analytics with AI."
|
|
983
|
+
tags: ["eu", "analytics", "climate"]
|
|
984
|
+
enabled: true
|
|
985
|
+
|
|
986
|
+
- name: Travelperk
|
|
987
|
+
careers_url: https://jobs.ashbyhq.com/travelperk
|
|
988
|
+
scan_method: websearch
|
|
989
|
+
scan_query: 'site:jobs.ashbyhq.com/travelperk'
|
|
990
|
+
notes: "Barcelona. Business travel unicorn."
|
|
991
|
+
tags: ["eu", "travel"]
|
|
992
|
+
enabled: true
|
|
993
|
+
|
|
994
|
+
# -- AI Labs & Model Providers (additional) --
|
|
995
|
+
|
|
996
|
+
- name: Google DeepMind
|
|
997
|
+
careers_url: https://careers.google.com
|
|
998
|
+
scan_method: websearch
|
|
999
|
+
scan_query: 'site:careers.google.com "DeepMind" OR "Gemini" OR "AI Research" OR "Applied AI"'
|
|
1000
|
+
notes: "Gemini, research, applied AI. London/Mountain View."
|
|
1001
|
+
tags: ["ai-lab", "uk", "us"]
|
|
1002
|
+
enabled: true
|
|
1003
|
+
|
|
1004
|
+
- name: Amazon (AWS AI)
|
|
1005
|
+
careers_url: https://amazon.jobs
|
|
1006
|
+
scan_method: websearch
|
|
1007
|
+
scan_query: 'site:amazon.jobs "Bedrock" OR "Titan" OR "AI Engineer" OR "Applied Scientist" OR "Alexa AI"'
|
|
1008
|
+
notes: "Bedrock, Titan models, Alexa AI."
|
|
1009
|
+
tags: ["ai-lab", "cloud", "us"]
|
|
1010
|
+
enabled: true
|
|
1011
|
+
|
|
1012
|
+
- name: Stability AI
|
|
1013
|
+
careers_url: https://jobs.ashbyhq.com/stability.ai
|
|
1014
|
+
notes: "Open image/video/audio generative models."
|
|
1015
|
+
tags: ["ai-lab", "ai-creative", "uk"]
|
|
1016
|
+
enabled: true
|
|
1017
|
+
|
|
1018
|
+
- name: AI21 Labs
|
|
1019
|
+
careers_url: https://jobs.ashbyhq.com/ai21
|
|
1020
|
+
notes: "Jamba models, enterprise AI. Tel Aviv + remote."
|
|
1021
|
+
tags: ["ai-lab", "israel"]
|
|
1022
|
+
enabled: true
|
|
1023
|
+
|
|
1024
|
+
- name: Character AI
|
|
1025
|
+
careers_url: https://jobs.ashbyhq.com/character
|
|
1026
|
+
notes: "Conversational AI at scale."
|
|
1027
|
+
tags: ["ai-lab", "conversational-ai", "us"]
|
|
1028
|
+
enabled: true
|
|
1029
|
+
|
|
1030
|
+
- name: Reka AI
|
|
1031
|
+
careers_url: https://jobs.ashbyhq.com/reka
|
|
1032
|
+
notes: "Multimodal foundation models."
|
|
1033
|
+
tags: ["ai-lab", "us"]
|
|
1034
|
+
enabled: true
|
|
1035
|
+
|
|
1036
|
+
- name: Aleph Alpha
|
|
1037
|
+
careers_url: https://job-boards.eu.greenhouse.io/alephalpha
|
|
1038
|
+
notes: "Heidelberg. European sovereign AI."
|
|
1039
|
+
tags: ["ai-lab", "eu"]
|
|
1040
|
+
enabled: true
|
|
1041
|
+
|
|
1042
|
+
# -- AI Infrastructure & Compute (additional) --
|
|
1043
|
+
|
|
1044
|
+
- name: Cerebras
|
|
1045
|
+
careers_url: https://jobs.ashbyhq.com/cerebras
|
|
1046
|
+
notes: "Wafer-scale AI chips and inference."
|
|
1047
|
+
tags: ["ai-infra", "devops", "chips", "us"]
|
|
1048
|
+
enabled: true
|
|
1049
|
+
|
|
1050
|
+
- name: SambaNova
|
|
1051
|
+
careers_url: https://job-boards.greenhouse.io/sambanovasystems
|
|
1052
|
+
api: https://boards-api.greenhouse.io/v1/boards/sambanovasystems/jobs
|
|
1053
|
+
notes: "AI hardware + software stack for enterprise."
|
|
1054
|
+
tags: ["ai-infra", "devops", "chips", "us"]
|
|
1055
|
+
enabled: true
|
|
1056
|
+
|
|
1057
|
+
- name: Modular
|
|
1058
|
+
careers_url: https://jobs.ashbyhq.com/modular
|
|
1059
|
+
notes: "Mojo language and next-gen AI compiler/runtime."
|
|
1060
|
+
tags: ["ai-infra", "devops", "developer-tools", "us"]
|
|
1061
|
+
enabled: true
|
|
1062
|
+
|
|
1063
|
+
- name: Vast.ai
|
|
1064
|
+
careers_url: https://vast.ai
|
|
1065
|
+
scan_method: websearch
|
|
1066
|
+
scan_query: '"vast.ai" careers OR jobs "engineer" OR "solutions"'
|
|
1067
|
+
notes: "GPU marketplace for AI workloads."
|
|
1068
|
+
tags: ["ai-infra", "devops", "gpu-cloud", "us"]
|
|
1069
|
+
enabled: true
|
|
1070
|
+
|
|
1071
|
+
# -- Vector DBs & RAG Infrastructure --
|
|
1072
|
+
|
|
1073
|
+
- name: Weaviate
|
|
1074
|
+
careers_url: https://jobs.ashbyhq.com/weaviate
|
|
1075
|
+
notes: "Open-source vector database. Amsterdam + remote."
|
|
1076
|
+
tags: ["vector-db", "devops", "open-source", "database", "eu"]
|
|
1077
|
+
enabled: true
|
|
1078
|
+
|
|
1079
|
+
- name: Qdrant
|
|
1080
|
+
careers_url: https://qdrant.tech
|
|
1081
|
+
scan_method: websearch
|
|
1082
|
+
scan_query: '"qdrant" careers OR jobs "engineer" OR "solutions"'
|
|
1083
|
+
notes: "Rust-based vector search engine. Berlin + remote."
|
|
1084
|
+
tags: ["vector-db", "devops", "open-source", "eu"]
|
|
1085
|
+
enabled: true
|
|
1086
|
+
|
|
1087
|
+
- name: Chroma
|
|
1088
|
+
careers_url: https://jobs.ashbyhq.com/chroma
|
|
1089
|
+
notes: "Embeddings database for AI apps."
|
|
1090
|
+
tags: ["vector-db", "devops", "database", "open-source", "us"]
|
|
1091
|
+
enabled: true
|
|
1092
|
+
|
|
1093
|
+
- name: Zilliz
|
|
1094
|
+
careers_url: https://job-boards.greenhouse.io/zilliz
|
|
1095
|
+
notes: "Enterprise vector DB (Milvus)."
|
|
1096
|
+
tags: ["vector-db", "devops", "us"]
|
|
1097
|
+
enabled: true
|
|
1098
|
+
|
|
1099
|
+
- name: Unstructured
|
|
1100
|
+
careers_url: https://jobs.ashbyhq.com/unstructured
|
|
1101
|
+
notes: "Document parsing and ETL for RAG pipelines."
|
|
1102
|
+
tags: ["vector-db", "devops", "ai-infra", "us"]
|
|
1103
|
+
enabled: true
|
|
1104
|
+
|
|
1105
|
+
# -- AI-Native Developer Tools (additional) --
|
|
1106
|
+
|
|
1107
|
+
- name: Replit
|
|
1108
|
+
careers_url: https://jobs.ashbyhq.com/replit
|
|
1109
|
+
notes: "AI-powered coding platform and cloud IDE."
|
|
1110
|
+
tags: ["ai-coding", "developer-tools", "us"]
|
|
1111
|
+
enabled: true
|
|
1112
|
+
|
|
1113
|
+
- name: Sourcegraph
|
|
1114
|
+
careers_url: https://job-boards.greenhouse.io/sourcegraph
|
|
1115
|
+
notes: "Cody AI code assistant and code intelligence."
|
|
1116
|
+
tags: ["ai-coding", "developer-tools", "defense", "us"]
|
|
1117
|
+
enabled: true
|
|
1118
|
+
|
|
1119
|
+
- name: Codeium
|
|
1120
|
+
careers_url: https://jobs.ashbyhq.com/codeium
|
|
1121
|
+
notes: "Windsurf editor. AI code completion and agents."
|
|
1122
|
+
tags: ["ai-coding", "developer-tools", "us"]
|
|
1123
|
+
enabled: true
|
|
1124
|
+
|
|
1125
|
+
- name: Tabnine
|
|
1126
|
+
careers_url: https://www.tabnine.com
|
|
1127
|
+
scan_method: websearch
|
|
1128
|
+
scan_query: '"tabnine" careers OR jobs "engineer" OR "AI"'
|
|
1129
|
+
notes: "AI code assistant. Tel Aviv + remote."
|
|
1130
|
+
tags: ["ai-coding", "developer-tools", "israel"]
|
|
1131
|
+
enabled: true
|
|
1132
|
+
|
|
1133
|
+
- name: Writer
|
|
1134
|
+
careers_url: https://jobs.ashbyhq.com/writer
|
|
1135
|
+
notes: "Enterprise full-stack AI platform for content and workflows."
|
|
1136
|
+
tags: ["ai-coding", "developer-tools", "ai-creative", "enterprise-saas", "us"]
|
|
1137
|
+
enabled: true
|
|
1138
|
+
|
|
1139
|
+
# -- Data & ML Platform --
|
|
1140
|
+
|
|
1141
|
+
- name: dbt Labs
|
|
1142
|
+
careers_url: https://jobs.ashbyhq.com/dbt-labs
|
|
1143
|
+
notes: "Data transformation standard. Remote-first."
|
|
1144
|
+
tags: ["analytics", "developer-tools", "remote-first"]
|
|
1145
|
+
enabled: true
|
|
1146
|
+
|
|
1147
|
+
- name: Fivetran
|
|
1148
|
+
careers_url: https://job-boards.greenhouse.io/fivetran
|
|
1149
|
+
api: https://boards-api.greenhouse.io/v1/boards/fivetran/jobs
|
|
1150
|
+
notes: "Automated data integration / ELT."
|
|
1151
|
+
tags: ["analytics", "developer-tools", "us"]
|
|
1152
|
+
enabled: true
|
|
1153
|
+
|
|
1154
|
+
- name: Airbyte
|
|
1155
|
+
careers_url: https://jobs.ashbyhq.com/airbyte
|
|
1156
|
+
notes: "Open-source data integration platform."
|
|
1157
|
+
tags: ["analytics", "developer-tools", "open-source", "us"]
|
|
1158
|
+
enabled: true
|
|
1159
|
+
|
|
1160
|
+
- name: Dagster
|
|
1161
|
+
careers_url: https://jobs.ashbyhq.com/dagster
|
|
1162
|
+
notes: "Data orchestration and asset framework."
|
|
1163
|
+
tags: ["analytics", "developer-tools", "us"]
|
|
1164
|
+
enabled: true
|
|
1165
|
+
|
|
1166
|
+
- name: Prefect
|
|
1167
|
+
careers_url: https://job-boards.greenhouse.io/prefect
|
|
1168
|
+
notes: "Workflow orchestration for data and ML."
|
|
1169
|
+
tags: ["analytics", "developer-tools", "us"]
|
|
1170
|
+
enabled: true
|
|
1171
|
+
|
|
1172
|
+
- name: Hex
|
|
1173
|
+
careers_url: https://jobs.ashbyhq.com/hex
|
|
1174
|
+
notes: "Collaborative data notebooks and AI analysis."
|
|
1175
|
+
tags: ["analytics", "developer-tools", "us"]
|
|
1176
|
+
enabled: true
|
|
1177
|
+
|
|
1178
|
+
- name: Census
|
|
1179
|
+
careers_url: https://job-boards.greenhouse.io/census
|
|
1180
|
+
notes: "Reverse ETL and data activation."
|
|
1181
|
+
tags: ["analytics", "developer-tools", "us"]
|
|
1182
|
+
enabled: true
|
|
1183
|
+
|
|
1184
|
+
# -- Developer Platforms (AI-adjacent) --
|
|
1185
|
+
|
|
1186
|
+
- name: HashiCorp
|
|
1187
|
+
careers_url: https://job-boards.greenhouse.io/hashicorp
|
|
1188
|
+
notes: "Terraform, Vault, Consul — infrastructure-as-code."
|
|
1189
|
+
tags: ["developer-tools", "devops", "cloud", "us"]
|
|
1190
|
+
enabled: true
|
|
1191
|
+
|
|
1192
|
+
- name: Pulumi
|
|
1193
|
+
careers_url: https://jobs.ashbyhq.com/pulumi
|
|
1194
|
+
notes: "Infrastructure-as-code with real programming languages."
|
|
1195
|
+
tags: ["developer-tools", "devops", "open-source", "us"]
|
|
1196
|
+
enabled: true
|
|
1197
|
+
|
|
1198
|
+
- name: Fly.io
|
|
1199
|
+
careers_url: https://fly.io
|
|
1200
|
+
scan_method: websearch
|
|
1201
|
+
scan_query: '"fly.io" careers OR jobs "engineer" OR "platform"'
|
|
1202
|
+
notes: "Edge application platform. Remote-first."
|
|
1203
|
+
tags: ["developer-tools", "cloud", "remote-first"]
|
|
1204
|
+
enabled: true
|
|
1205
|
+
|
|
1206
|
+
- name: Render
|
|
1207
|
+
careers_url: https://job-boards.greenhouse.io/render
|
|
1208
|
+
notes: "Cloud hosting with AI features."
|
|
1209
|
+
tags: ["developer-tools", "cloud", "us"]
|
|
1210
|
+
enabled: true
|
|
1211
|
+
|
|
1212
|
+
- name: Sentry
|
|
1213
|
+
careers_url: https://job-boards.greenhouse.io/sentry
|
|
1214
|
+
notes: "Error monitoring and performance. AI-powered grouping."
|
|
1215
|
+
tags: ["developer-tools", "observability", "us"]
|
|
1216
|
+
enabled: true
|
|
1217
|
+
|
|
1218
|
+
- name: LaunchDarkly
|
|
1219
|
+
careers_url: https://job-boards.greenhouse.io/launchdarkly
|
|
1220
|
+
api: https://boards-api.greenhouse.io/v1/boards/launchdarkly/jobs
|
|
1221
|
+
notes: "Feature flags and AI experimentation platform."
|
|
1222
|
+
tags: ["developer-tools", "us"]
|
|
1223
|
+
enabled: true
|
|
1224
|
+
|
|
1225
|
+
- name: Stytch
|
|
1226
|
+
careers_url: https://jobs.ashbyhq.com/stytch
|
|
1227
|
+
notes: "Auth infrastructure for developers."
|
|
1228
|
+
tags: ["developer-tools", "identity", "us"]
|
|
1229
|
+
enabled: true
|
|
1230
|
+
|
|
1231
|
+
- name: WorkOS
|
|
1232
|
+
careers_url: https://jobs.ashbyhq.com/workos
|
|
1233
|
+
notes: "Enterprise auth (SSO, SCIM, directory sync)."
|
|
1234
|
+
tags: ["developer-tools", "identity", "us"]
|
|
1235
|
+
enabled: true
|
|
1236
|
+
|
|
1237
|
+
# -- Security (AI-powered) --
|
|
1238
|
+
|
|
1239
|
+
- name: Wiz
|
|
1240
|
+
careers_url: https://jobs.ashbyhq.com/wiz
|
|
1241
|
+
notes: "Cloud security. $12B+ valuation."
|
|
1242
|
+
tags: ["security", "cloud", "us"]
|
|
1243
|
+
enabled: true
|
|
1244
|
+
|
|
1245
|
+
- name: Snyk
|
|
1246
|
+
careers_url: https://job-boards.greenhouse.io/snyk
|
|
1247
|
+
notes: "Developer security and AI code scanning."
|
|
1248
|
+
tags: ["security", "developer-tools", "us"]
|
|
1249
|
+
enabled: true
|
|
1250
|
+
|
|
1251
|
+
- name: CrowdStrike
|
|
1252
|
+
careers_url: https://careers.crowdstrike.com
|
|
1253
|
+
scan_method: websearch
|
|
1254
|
+
scan_query: 'site:careers.crowdstrike.com "AI" OR "ML" OR "Solutions Architect" OR "Data Engineer"'
|
|
1255
|
+
notes: "AI-driven endpoint security and threat intelligence."
|
|
1256
|
+
tags: ["security", "defense", "us"]
|
|
1257
|
+
enabled: true
|
|
1258
|
+
|
|
1259
|
+
# -- Fintech (AI-heavy) --
|
|
1260
|
+
|
|
1261
|
+
- name: Plaid
|
|
1262
|
+
careers_url: https://job-boards.greenhouse.io/plaid
|
|
1263
|
+
notes: "Financial data APIs and infrastructure."
|
|
1264
|
+
tags: ["fintech", "developer-tools", "us"]
|
|
1265
|
+
enabled: true
|
|
1266
|
+
|
|
1267
|
+
- name: Brex
|
|
1268
|
+
careers_url: https://job-boards.greenhouse.io/brex
|
|
1269
|
+
api: https://boards-api.greenhouse.io/v1/boards/brex/jobs
|
|
1270
|
+
notes: "Corporate cards and AI-powered spend management."
|
|
1271
|
+
tags: ["fintech", "us"]
|
|
1272
|
+
enabled: true
|
|
1273
|
+
|
|
1274
|
+
- name: Ramp
|
|
1275
|
+
careers_url: https://jobs.ashbyhq.com/ramp
|
|
1276
|
+
notes: "AI-first corporate finance platform."
|
|
1277
|
+
tags: ["fintech", "us"]
|
|
1278
|
+
enabled: true
|
|
1279
|
+
|
|
1280
|
+
- name: Mercury
|
|
1281
|
+
careers_url: https://jobs.ashbyhq.com/mercury
|
|
1282
|
+
notes: "Banking for startups. Remote-friendly."
|
|
1283
|
+
tags: ["fintech", "remote-first"]
|
|
1284
|
+
enabled: true
|
|
1285
|
+
|
|
1286
|
+
# -- Design & Collaboration (AI features) --
|
|
1287
|
+
|
|
1288
|
+
- name: Figma
|
|
1289
|
+
careers_url: https://job-boards.greenhouse.io/figma
|
|
1290
|
+
api: https://boards-api.greenhouse.io/v1/boards/figma/jobs
|
|
1291
|
+
notes: "Design platform with AI features."
|
|
1292
|
+
tags: ["collaboration", "developer-tools", "us"]
|
|
1293
|
+
enabled: true
|
|
1294
|
+
|
|
1295
|
+
- name: Miro
|
|
1296
|
+
careers_url: https://job-boards.greenhouse.io/miro
|
|
1297
|
+
notes: "Visual collaboration with AI. Amsterdam + remote."
|
|
1298
|
+
tags: ["collaboration", "eu"]
|
|
1299
|
+
enabled: true
|
|
1300
|
+
|
|
1301
|
+
- name: Canva
|
|
1302
|
+
careers_url: https://job-boards.greenhouse.io/canva
|
|
1303
|
+
notes: "Design platform. Magic AI features. Sydney + remote."
|
|
1304
|
+
tags: ["collaboration", "ai-creative", "apac"]
|
|
1305
|
+
enabled: true
|
|
1306
|
+
|
|
1307
|
+
# -- HR & Remote Work Platforms --
|
|
1308
|
+
|
|
1309
|
+
- name: Deel
|
|
1310
|
+
careers_url: https://jobs.ashbyhq.com/deel
|
|
1311
|
+
notes: "Global payroll and compliance. Remote-first."
|
|
1312
|
+
tags: ["hr-tech", "compliance", "remote-first"]
|
|
1313
|
+
enabled: true
|
|
1314
|
+
|
|
1315
|
+
- name: Rippling
|
|
1316
|
+
careers_url: https://jobs.ashbyhq.com/rippling
|
|
1317
|
+
notes: "HR/IT/Finance platform with AI automation."
|
|
1318
|
+
tags: ["hr-tech", "automation", "us"]
|
|
1319
|
+
enabled: true
|
|
1320
|
+
|
|
1321
|
+
# ============================================================
|
|
1322
|
+
# EXTENDED COMPANY LIST (200+ additional companies)
|
|
1323
|
+
# ============================================================
|
|
1324
|
+
|
|
1325
|
+
# -- Big Tech & Major Cloud --
|
|
1326
|
+
|
|
1327
|
+
- name: Apple
|
|
1328
|
+
careers_url: https://jobs.apple.com
|
|
1329
|
+
scan_method: websearch
|
|
1330
|
+
scan_query: 'site:jobs.apple.com "AI" OR "ML" OR "Machine Learning" OR "Siri" OR "Applied Research"'
|
|
1331
|
+
notes: "Apple Intelligence, Siri, on-device ML."
|
|
1332
|
+
tags: ["ai-lab", "cloud", "analytics", "defense", "us"]
|
|
1333
|
+
enabled: true
|
|
1334
|
+
|
|
1335
|
+
- name: Google
|
|
1336
|
+
careers_url: https://careers.google.com
|
|
1337
|
+
scan_method: websearch
|
|
1338
|
+
scan_query: 'site:careers.google.com "AI" OR "ML" OR "Solutions" OR "Cloud AI" -DeepMind'
|
|
1339
|
+
notes: "Cloud AI, Vertex, TensorFlow, and applied roles."
|
|
1340
|
+
tags: ["ai-lab", "cloud", "analytics", "us"]
|
|
1341
|
+
enabled: true
|
|
1342
|
+
|
|
1343
|
+
- name: IBM
|
|
1344
|
+
careers_url: https://careers.ibm.com
|
|
1345
|
+
scan_method: websearch
|
|
1346
|
+
scan_query: 'site:careers.ibm.com "AI" OR "watsonx" OR "Solutions Architect" OR "ML Engineer"'
|
|
1347
|
+
notes: "watsonx, Red Hat, consulting AI."
|
|
1348
|
+
tags: ["ai-lab", "cloud", "analytics", "us"]
|
|
1349
|
+
enabled: true
|
|
1350
|
+
|
|
1351
|
+
- name: Intel
|
|
1352
|
+
careers_url: https://jobs.intel.com
|
|
1353
|
+
scan_method: websearch
|
|
1354
|
+
scan_query: 'site:jobs.intel.com "AI" OR "ML" OR "Deep Learning" OR "oneAPI"'
|
|
1355
|
+
notes: "AI accelerators, oneAPI, Habana Labs."
|
|
1356
|
+
tags: ["ai-lab", "cloud", "analytics", "chips", "us"]
|
|
1357
|
+
enabled: true
|
|
1358
|
+
|
|
1359
|
+
- name: AMD
|
|
1360
|
+
careers_url: https://careers.amd.com
|
|
1361
|
+
scan_method: websearch
|
|
1362
|
+
scan_query: 'site:careers.amd.com "AI" OR "ML" OR "ROCm" OR "Instinct"'
|
|
1363
|
+
notes: "ROCm, MI300 GPUs, AI compute."
|
|
1364
|
+
tags: ["ai-lab", "cloud", "analytics", "chips", "us"]
|
|
1365
|
+
enabled: true
|
|
1366
|
+
|
|
1367
|
+
- name: Qualcomm
|
|
1368
|
+
careers_url: https://careers.qualcomm.com
|
|
1369
|
+
scan_method: websearch
|
|
1370
|
+
scan_query: 'site:careers.qualcomm.com "AI" OR "ML" OR "Edge AI" OR "On-device"'
|
|
1371
|
+
notes: "On-device AI, Snapdragon, edge inference."
|
|
1372
|
+
tags: ["ai-lab", "cloud", "analytics", "chips", "us"]
|
|
1373
|
+
enabled: true
|
|
1374
|
+
|
|
1375
|
+
- name: Oracle
|
|
1376
|
+
careers_url: https://careers.oracle.com
|
|
1377
|
+
scan_method: websearch
|
|
1378
|
+
scan_query: 'site:careers.oracle.com "AI" OR "OCI" OR "Cloud Engineer" OR "Solutions Architect"'
|
|
1379
|
+
notes: "OCI GPU cloud, enterprise AI."
|
|
1380
|
+
tags: ["ai-lab", "cloud", "analytics", "gpu-cloud", "us"]
|
|
1381
|
+
enabled: true
|
|
1382
|
+
|
|
1383
|
+
- name: SAP AI
|
|
1384
|
+
careers_url: https://jobs.sap.com
|
|
1385
|
+
scan_method: websearch
|
|
1386
|
+
scan_query: 'site:jobs.sap.com "AI" OR "Machine Learning" OR "Joule" OR "Business AI"'
|
|
1387
|
+
notes: "Joule AI assistant, Business AI. Walldorf + global."
|
|
1388
|
+
tags: ["ai-lab", "cloud", "analytics", "enterprise-saas", "eu"]
|
|
1389
|
+
enabled: true
|
|
1390
|
+
|
|
1391
|
+
- name: Cisco
|
|
1392
|
+
careers_url: https://jobs.cisco.com
|
|
1393
|
+
scan_method: websearch
|
|
1394
|
+
scan_query: 'site:jobs.cisco.com "AI" OR "ML" OR "Solutions Architect" OR "Webex AI"'
|
|
1395
|
+
notes: "Networking AI, Webex AI, security."
|
|
1396
|
+
tags: ["ai-lab", "cloud", "analytics", "networking", "us"]
|
|
1397
|
+
enabled: true
|
|
1398
|
+
|
|
1399
|
+
- name: Dell Technologies
|
|
1400
|
+
careers_url: https://jobs.dell.com
|
|
1401
|
+
scan_method: websearch
|
|
1402
|
+
scan_query: 'site:jobs.dell.com "AI" OR "ML" OR "Solutions Architect" OR "GenAI"'
|
|
1403
|
+
notes: "AI infrastructure, PowerEdge, enterprise solutions."
|
|
1404
|
+
tags: ["ai-lab", "cloud", "analytics", "us"]
|
|
1405
|
+
enabled: true
|
|
1406
|
+
|
|
1407
|
+
- name: HPE
|
|
1408
|
+
careers_url: https://careers.hpe.com
|
|
1409
|
+
scan_method: websearch
|
|
1410
|
+
scan_query: 'site:careers.hpe.com "AI" OR "ML" OR "Supercomputing" OR "GreenLake"'
|
|
1411
|
+
notes: "HPC, Cray, GreenLake AI platform."
|
|
1412
|
+
tags: ["ai-lab", "cloud", "analytics", "us"]
|
|
1413
|
+
enabled: true
|
|
1414
|
+
|
|
1415
|
+
- name: DigitalOcean
|
|
1416
|
+
careers_url: https://job-boards.greenhouse.io/digitalocean
|
|
1417
|
+
notes: "Developer cloud. GPU droplets and AI workloads."
|
|
1418
|
+
tags: ["ai-lab", "cloud", "analytics", "gpu-cloud", "us"]
|
|
1419
|
+
enabled: true
|
|
1420
|
+
|
|
1421
|
+
- name: Akamai
|
|
1422
|
+
careers_url: https://akamaicareers.inflightcloud.com
|
|
1423
|
+
scan_method: websearch
|
|
1424
|
+
scan_query: '"akamai" careers "AI" OR "ML" OR "Cloud" OR "Solutions Architect"'
|
|
1425
|
+
notes: "Edge/CDN + Linode cloud platform."
|
|
1426
|
+
tags: ["ai-lab", "cloud", "analytics", "networking", "us"]
|
|
1427
|
+
enabled: true
|
|
1428
|
+
|
|
1429
|
+
# -- Autonomous Vehicles & Robotics --
|
|
1430
|
+
|
|
1431
|
+
- name: Waymo
|
|
1432
|
+
careers_url: https://waymo.com/careers
|
|
1433
|
+
scan_method: websearch
|
|
1434
|
+
scan_query: 'site:waymo.com/careers "ML" OR "AI" OR "Perception" OR "Planning"'
|
|
1435
|
+
notes: "Alphabet autonomous driving. Mountain View."
|
|
1436
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1437
|
+
enabled: true
|
|
1438
|
+
|
|
1439
|
+
- name: Aurora
|
|
1440
|
+
careers_url: https://aurora.tech/careers
|
|
1441
|
+
scan_method: websearch
|
|
1442
|
+
scan_query: 'site:aurora.tech/careers "ML" OR "AI" OR "Perception" OR "Engineer"'
|
|
1443
|
+
notes: "Self-driving trucks and ride-hailing."
|
|
1444
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1445
|
+
enabled: true
|
|
1446
|
+
|
|
1447
|
+
- name: Nuro
|
|
1448
|
+
careers_url: https://job-boards.greenhouse.io/nuro
|
|
1449
|
+
api: https://boards-api.greenhouse.io/v1/boards/nuro/jobs
|
|
1450
|
+
notes: "Autonomous delivery vehicles."
|
|
1451
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1452
|
+
enabled: true
|
|
1453
|
+
|
|
1454
|
+
- name: Zoox
|
|
1455
|
+
careers_url: https://jobs.lever.co/zoox
|
|
1456
|
+
notes: "Amazon-owned autonomous vehicles."
|
|
1457
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1458
|
+
enabled: true
|
|
1459
|
+
|
|
1460
|
+
- name: Cruise
|
|
1461
|
+
careers_url: https://jobs.lever.co/cruise
|
|
1462
|
+
notes: "GM autonomous vehicles. San Francisco. Shutdown/wound down operations."
|
|
1463
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1464
|
+
enabled: false
|
|
1465
|
+
|
|
1466
|
+
- name: Anduril
|
|
1467
|
+
careers_url: https://job-boards.greenhouse.io/anduril
|
|
1468
|
+
notes: "Defense AI and autonomous systems."
|
|
1469
|
+
tags: ["autonomous", "robotics", "defense", "us"]
|
|
1470
|
+
enabled: true
|
|
1471
|
+
|
|
1472
|
+
- name: Shield AI
|
|
1473
|
+
careers_url: https://job-boards.greenhouse.io/shieldai
|
|
1474
|
+
notes: "Defense autonomous systems and AI pilots."
|
|
1475
|
+
tags: ["autonomous", "robotics", "defense", "us"]
|
|
1476
|
+
enabled: true
|
|
1477
|
+
|
|
1478
|
+
- name: Figure AI
|
|
1479
|
+
careers_url: https://job-boards.greenhouse.io/figureai
|
|
1480
|
+
api: https://boards-api.greenhouse.io/v1/boards/figureai/jobs
|
|
1481
|
+
notes: "Humanoid robotics. OpenAI partnership."
|
|
1482
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1483
|
+
enabled: true
|
|
1484
|
+
|
|
1485
|
+
- name: Covariant
|
|
1486
|
+
careers_url: https://jobs.lever.co/covariant
|
|
1487
|
+
scan_method: websearch
|
|
1488
|
+
scan_query: '"covariant" careers OR jobs "AI" OR "robotics" OR "engineer"'
|
|
1489
|
+
notes: "AI-powered robotic picking and manipulation."
|
|
1490
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1491
|
+
enabled: true
|
|
1492
|
+
|
|
1493
|
+
- name: Boston Dynamics
|
|
1494
|
+
careers_url: https://bostondynamics.wd1.myworkdayjobs.com
|
|
1495
|
+
scan_method: websearch
|
|
1496
|
+
scan_query: '"boston dynamics" careers "AI" OR "ML" OR "Perception" OR "Robotics"'
|
|
1497
|
+
notes: "Hyundai-owned. Advanced robotics and AI."
|
|
1498
|
+
tags: ["autonomous", "robotics", "us"]
|
|
1499
|
+
enabled: true
|
|
1500
|
+
|
|
1501
|
+
# -- Healthcare AI --
|
|
1502
|
+
|
|
1503
|
+
- name: Tempus AI
|
|
1504
|
+
careers_url: https://job-boards.greenhouse.io/tempus
|
|
1505
|
+
notes: "AI for precision medicine. Public company."
|
|
1506
|
+
tags: ["healthcare", "us"]
|
|
1507
|
+
enabled: true
|
|
1508
|
+
|
|
1509
|
+
- name: PathAI
|
|
1510
|
+
careers_url: https://job-boards.greenhouse.io/pathai
|
|
1511
|
+
api: https://boards-api.greenhouse.io/v1/boards/pathai/jobs
|
|
1512
|
+
notes: "AI-powered pathology diagnostics."
|
|
1513
|
+
tags: ["healthcare", "us"]
|
|
1514
|
+
enabled: true
|
|
1515
|
+
|
|
1516
|
+
- name: Insitro
|
|
1517
|
+
careers_url: https://jobs.lever.co/insitro
|
|
1518
|
+
scan_method: websearch
|
|
1519
|
+
scan_query: '"insitro" careers OR jobs "ML" OR "drug discovery" OR "engineer"'
|
|
1520
|
+
notes: "ML for drug discovery."
|
|
1521
|
+
tags: ["healthcare", "us"]
|
|
1522
|
+
enabled: true
|
|
1523
|
+
|
|
1524
|
+
- name: Recursion
|
|
1525
|
+
careers_url: https://job-boards.greenhouse.io/recursionpharmaceuticals
|
|
1526
|
+
api: https://boards-api.greenhouse.io/v1/boards/recursionpharmaceuticals/jobs
|
|
1527
|
+
notes: "AI/ML drug discovery at scale."
|
|
1528
|
+
tags: ["healthcare", "us"]
|
|
1529
|
+
enabled: true
|
|
1530
|
+
|
|
1531
|
+
- name: Viz.ai
|
|
1532
|
+
careers_url: https://job-boards.greenhouse.io/vizai
|
|
1533
|
+
notes: "AI-powered care coordination and stroke detection."
|
|
1534
|
+
tags: ["healthcare", "us"]
|
|
1535
|
+
enabled: true
|
|
1536
|
+
|
|
1537
|
+
- name: Oscar Health
|
|
1538
|
+
careers_url: https://job-boards.greenhouse.io/oscarhealth
|
|
1539
|
+
notes: "Tech-driven health insurance."
|
|
1540
|
+
tags: ["healthcare", "us"]
|
|
1541
|
+
enabled: true
|
|
1542
|
+
|
|
1543
|
+
- name: Flatiron Health
|
|
1544
|
+
careers_url: https://job-boards.greenhouse.io/flatironhealth
|
|
1545
|
+
api: https://boards-api.greenhouse.io/v1/boards/flatironhealth/jobs
|
|
1546
|
+
notes: "Roche-owned. Oncology data and AI."
|
|
1547
|
+
tags: ["healthcare", "us"]
|
|
1548
|
+
enabled: true
|
|
1549
|
+
|
|
1550
|
+
- name: Hippocratic AI
|
|
1551
|
+
careers_url: https://jobs.ashbyhq.com/hippocraticai
|
|
1552
|
+
notes: "Safety-focused LLMs for healthcare."
|
|
1553
|
+
tags: ["healthcare", "ai-lab", "us"]
|
|
1554
|
+
enabled: true
|
|
1555
|
+
|
|
1556
|
+
# -- Legal & Compliance AI --
|
|
1557
|
+
|
|
1558
|
+
- name: Casetext (Thomson Reuters)
|
|
1559
|
+
careers_url: https://job-boards.greenhouse.io/casetext
|
|
1560
|
+
notes: "CoCounsel AI legal assistant."
|
|
1561
|
+
tags: ["legal-tech", "compliance", "us"]
|
|
1562
|
+
enabled: true
|
|
1563
|
+
|
|
1564
|
+
- name: Ironclad
|
|
1565
|
+
careers_url: https://jobs.lever.co/ironcladapp
|
|
1566
|
+
scan_method: websearch
|
|
1567
|
+
scan_query: '"ironclad" careers "AI" OR "engineer" OR "contract"'
|
|
1568
|
+
notes: "AI contract management platform."
|
|
1569
|
+
tags: ["legal-tech", "compliance", "us"]
|
|
1570
|
+
enabled: true
|
|
1571
|
+
|
|
1572
|
+
- name: Docusign
|
|
1573
|
+
careers_url: https://job-boards.greenhouse.io/docusign
|
|
1574
|
+
notes: "E-signature + AI agreement platform."
|
|
1575
|
+
tags: ["legal-tech", "compliance", "enterprise-saas", "us"]
|
|
1576
|
+
enabled: true
|
|
1577
|
+
|
|
1578
|
+
# -- Enterprise SaaS & Productivity --
|
|
1579
|
+
|
|
1580
|
+
- name: ServiceNow
|
|
1581
|
+
careers_url: https://careers.servicenow.com
|
|
1582
|
+
scan_method: websearch
|
|
1583
|
+
scan_query: 'site:careers.servicenow.com "AI" OR "ML" OR "GenAI" OR "Now Assist"'
|
|
1584
|
+
notes: "Enterprise workflows + Now Assist AI."
|
|
1585
|
+
tags: ["enterprise-saas", "productivity", "ai-agents", "us"]
|
|
1586
|
+
enabled: true
|
|
1587
|
+
|
|
1588
|
+
- name: Workday
|
|
1589
|
+
careers_url: https://workday.wd5.myworkdayjobs.com
|
|
1590
|
+
scan_method: websearch
|
|
1591
|
+
scan_query: '"workday" careers "AI" OR "ML" OR "Machine Learning" OR "Applied Scientist"'
|
|
1592
|
+
notes: "HR/Finance enterprise + AI features."
|
|
1593
|
+
tags: ["enterprise-saas", "productivity", "hr-tech", "us"]
|
|
1594
|
+
enabled: true
|
|
1595
|
+
|
|
1596
|
+
- name: Atlassian
|
|
1597
|
+
careers_url: https://www.atlassian.com/company/careers
|
|
1598
|
+
scan_method: websearch
|
|
1599
|
+
scan_query: 'site:atlassian.com/company/careers "AI" OR "ML" OR "Engineer" OR "Rovo"'
|
|
1600
|
+
notes: "Jira, Confluence, Rovo AI assistant. Sydney + remote."
|
|
1601
|
+
tags: ["enterprise-saas", "productivity", "collaboration", "apac"]
|
|
1602
|
+
enabled: true
|
|
1603
|
+
|
|
1604
|
+
- name: Asana
|
|
1605
|
+
careers_url: https://job-boards.greenhouse.io/asana
|
|
1606
|
+
api: https://boards-api.greenhouse.io/v1/boards/asana/jobs
|
|
1607
|
+
notes: "Work management + AI Studio."
|
|
1608
|
+
tags: ["enterprise-saas", "productivity", "us"]
|
|
1609
|
+
enabled: true
|
|
1610
|
+
|
|
1611
|
+
- name: Monday.com
|
|
1612
|
+
careers_url: https://mondaycom.com/careers
|
|
1613
|
+
scan_method: websearch
|
|
1614
|
+
scan_query: 'site:monday.com/careers "AI" OR "ML" OR "Engineer" OR "Solutions"'
|
|
1615
|
+
notes: "Work OS with AI features. Tel Aviv + global."
|
|
1616
|
+
tags: ["enterprise-saas", "productivity", "israel"]
|
|
1617
|
+
enabled: true
|
|
1618
|
+
|
|
1619
|
+
- name: ClickUp
|
|
1620
|
+
careers_url: https://jobs.ashbyhq.com/clickup
|
|
1621
|
+
notes: "Productivity platform with AI features."
|
|
1622
|
+
tags: ["enterprise-saas", "productivity", "us"]
|
|
1623
|
+
enabled: true
|
|
1624
|
+
|
|
1625
|
+
- name: Coda
|
|
1626
|
+
careers_url: https://jobs.lever.co/coda
|
|
1627
|
+
notes: "AI-powered documents and workflows."
|
|
1628
|
+
tags: ["enterprise-saas", "productivity", "us"]
|
|
1629
|
+
enabled: true
|
|
1630
|
+
|
|
1631
|
+
- name: HubSpot
|
|
1632
|
+
careers_url: https://job-boards.greenhouse.io/hubspot
|
|
1633
|
+
api: https://boards-api.greenhouse.io/v1/boards/hubspot/jobs
|
|
1634
|
+
notes: "CRM/marketing with AI assistants."
|
|
1635
|
+
tags: ["enterprise-saas", "productivity", "crm", "us"]
|
|
1636
|
+
enabled: true
|
|
1637
|
+
|
|
1638
|
+
- name: Zendesk
|
|
1639
|
+
careers_url: https://job-boards.greenhouse.io/zendesk
|
|
1640
|
+
notes: "Customer service + AI agents."
|
|
1641
|
+
tags: ["enterprise-saas", "productivity", "ai-agents", "conversational-ai", "us"]
|
|
1642
|
+
enabled: true
|
|
1643
|
+
|
|
1644
|
+
- name: Freshworks
|
|
1645
|
+
careers_url: https://careers.freshworks.com
|
|
1646
|
+
scan_method: websearch
|
|
1647
|
+
scan_query: 'site:careers.freshworks.com "AI" OR "ML" OR "Freddy AI" OR "Solutions"'
|
|
1648
|
+
notes: "CRM/ITSM + Freddy AI. Chennai + global."
|
|
1649
|
+
tags: ["enterprise-saas", "productivity", "crm", "apac"]
|
|
1650
|
+
enabled: true
|
|
1651
|
+
|
|
1652
|
+
- name: Zoom
|
|
1653
|
+
careers_url: https://careers.zoom.us
|
|
1654
|
+
scan_method: websearch
|
|
1655
|
+
scan_query: 'site:careers.zoom.us "AI" OR "ML" OR "AI Companion" OR "Engineer"'
|
|
1656
|
+
notes: "Video comms + AI Companion features."
|
|
1657
|
+
tags: ["enterprise-saas", "productivity", "communication", "us"]
|
|
1658
|
+
enabled: true
|
|
1659
|
+
|
|
1660
|
+
- name: Slack (Salesforce)
|
|
1661
|
+
careers_url: https://salesforce.wd12.myworkdayjobs.com
|
|
1662
|
+
scan_method: websearch
|
|
1663
|
+
scan_query: '"slack" "salesforce" careers "AI" OR "ML" OR "Engineer"'
|
|
1664
|
+
notes: "Messaging platform + AI features."
|
|
1665
|
+
tags: ["enterprise-saas", "productivity", "communication", "collaboration", "us"]
|
|
1666
|
+
enabled: true
|
|
1667
|
+
|
|
1668
|
+
- name: Discord
|
|
1669
|
+
careers_url: https://job-boards.greenhouse.io/discord
|
|
1670
|
+
api: https://boards-api.greenhouse.io/v1/boards/discord/jobs
|
|
1671
|
+
notes: "Community platform + AI moderation/features."
|
|
1672
|
+
tags: ["enterprise-saas", "productivity", "communication", "us"]
|
|
1673
|
+
enabled: true
|
|
1674
|
+
|
|
1675
|
+
- name: Loom
|
|
1676
|
+
careers_url: https://job-boards.greenhouse.io/loom
|
|
1677
|
+
notes: "Atlassian-owned. Video messaging + AI summaries."
|
|
1678
|
+
tags: ["enterprise-saas", "productivity", "communication", "collaboration", "us"]
|
|
1679
|
+
enabled: true
|
|
1680
|
+
|
|
1681
|
+
# -- E-commerce & Marketplace --
|
|
1682
|
+
|
|
1683
|
+
- name: Shopify
|
|
1684
|
+
careers_url: https://job-boards.greenhouse.io/shopify
|
|
1685
|
+
notes: "E-commerce platform + Sidekick AI. Remote."
|
|
1686
|
+
tags: ["e-commerce", "remote-first"]
|
|
1687
|
+
enabled: true
|
|
1688
|
+
|
|
1689
|
+
- name: Instacart
|
|
1690
|
+
careers_url: https://job-boards.greenhouse.io/instacart
|
|
1691
|
+
api: https://boards-api.greenhouse.io/v1/boards/instacart/jobs
|
|
1692
|
+
notes: "Grocery delivery + AI/ML personalization."
|
|
1693
|
+
tags: ["e-commerce", "logistics", "us"]
|
|
1694
|
+
enabled: true
|
|
1695
|
+
|
|
1696
|
+
- name: DoorDash
|
|
1697
|
+
careers_url: https://job-boards.greenhouse.io/doordash
|
|
1698
|
+
notes: "Delivery logistics + ML optimization."
|
|
1699
|
+
tags: ["e-commerce", "logistics", "us"]
|
|
1700
|
+
enabled: true
|
|
1701
|
+
|
|
1702
|
+
- name: Etsy
|
|
1703
|
+
careers_url: https://job-boards.greenhouse.io/etsy
|
|
1704
|
+
notes: "Marketplace + AI search and recommendations."
|
|
1705
|
+
tags: ["e-commerce", "ai-search", "us"]
|
|
1706
|
+
enabled: true
|
|
1707
|
+
|
|
1708
|
+
- name: Faire
|
|
1709
|
+
careers_url: https://job-boards.greenhouse.io/faire
|
|
1710
|
+
api: https://boards-api.greenhouse.io/v1/boards/faire/jobs
|
|
1711
|
+
notes: "Wholesale marketplace with ML. Remote-friendly."
|
|
1712
|
+
tags: ["e-commerce", "remote-first"]
|
|
1713
|
+
enabled: true
|
|
1714
|
+
|
|
1715
|
+
- name: Zalando
|
|
1716
|
+
careers_url: https://jobs.zalando.com
|
|
1717
|
+
scan_method: websearch
|
|
1718
|
+
scan_query: 'site:jobs.zalando.com "AI" OR "ML" OR "Data" OR "Platform Engineer"'
|
|
1719
|
+
notes: "Berlin. European fashion e-commerce + AI."
|
|
1720
|
+
tags: ["e-commerce", "eu"]
|
|
1721
|
+
enabled: true
|
|
1722
|
+
|
|
1723
|
+
# -- Fintech (extended) --
|
|
1724
|
+
|
|
1725
|
+
- name: Wise
|
|
1726
|
+
careers_url: https://job-boards.greenhouse.io/wise
|
|
1727
|
+
notes: "International money transfers. London + Tallinn."
|
|
1728
|
+
tags: ["fintech", "uk", "eu"]
|
|
1729
|
+
enabled: true
|
|
1730
|
+
|
|
1731
|
+
- name: Revolut
|
|
1732
|
+
careers_url: https://jobs.lever.co/revolut
|
|
1733
|
+
notes: "Digital banking. London + global. ML for fraud."
|
|
1734
|
+
tags: ["fintech", "uk"]
|
|
1735
|
+
enabled: true
|
|
1736
|
+
|
|
1737
|
+
- name: Monzo
|
|
1738
|
+
careers_url: https://monzo.com/careers
|
|
1739
|
+
scan_method: websearch
|
|
1740
|
+
scan_query: 'site:monzo.com/careers "AI" OR "ML" OR "Data" OR "Engineer"'
|
|
1741
|
+
notes: "UK digital bank. ML for fraud and ops."
|
|
1742
|
+
tags: ["fintech", "uk"]
|
|
1743
|
+
enabled: true
|
|
1744
|
+
|
|
1745
|
+
- name: N26
|
|
1746
|
+
careers_url: https://n26.com/en/careers
|
|
1747
|
+
scan_method: websearch
|
|
1748
|
+
scan_query: 'site:n26.com/careers "AI" OR "ML" OR "Engineer" OR "Data"'
|
|
1749
|
+
notes: "Berlin. European neobank."
|
|
1750
|
+
tags: ["fintech", "eu"]
|
|
1751
|
+
enabled: true
|
|
1752
|
+
|
|
1753
|
+
- name: Adyen
|
|
1754
|
+
careers_url: https://careers.adyen.com
|
|
1755
|
+
scan_method: websearch
|
|
1756
|
+
scan_query: 'site:careers.adyen.com "AI" OR "ML" OR "Engineer" OR "Platform"'
|
|
1757
|
+
notes: "Amsterdam. Global payments platform."
|
|
1758
|
+
tags: ["fintech", "eu"]
|
|
1759
|
+
enabled: true
|
|
1760
|
+
|
|
1761
|
+
- name: Checkout.com
|
|
1762
|
+
careers_url: https://job-boards.greenhouse.io/checkout
|
|
1763
|
+
notes: "London. Payment processing + fraud AI."
|
|
1764
|
+
tags: ["fintech", "uk"]
|
|
1765
|
+
enabled: true
|
|
1766
|
+
|
|
1767
|
+
- name: Affirm
|
|
1768
|
+
careers_url: https://job-boards.greenhouse.io/affirm
|
|
1769
|
+
api: https://boards-api.greenhouse.io/v1/boards/affirm/jobs
|
|
1770
|
+
notes: "BNPL + ML underwriting. Remote."
|
|
1771
|
+
tags: ["fintech", "remote-first"]
|
|
1772
|
+
enabled: true
|
|
1773
|
+
|
|
1774
|
+
- name: Robinhood
|
|
1775
|
+
careers_url: https://job-boards.greenhouse.io/robinhood
|
|
1776
|
+
api: https://boards-api.greenhouse.io/v1/boards/robinhood/jobs
|
|
1777
|
+
notes: "Trading platform + ML/AI features."
|
|
1778
|
+
tags: ["fintech", "us"]
|
|
1779
|
+
enabled: true
|
|
1780
|
+
|
|
1781
|
+
- name: Coinbase
|
|
1782
|
+
careers_url: https://job-boards.greenhouse.io/coinbase
|
|
1783
|
+
api: https://boards-api.greenhouse.io/v1/boards/coinbase/jobs
|
|
1784
|
+
notes: "Crypto exchange + AI/ML for compliance and trading."
|
|
1785
|
+
tags: ["fintech", "compliance", "us"]
|
|
1786
|
+
enabled: true
|
|
1787
|
+
|
|
1788
|
+
- name: Square (Block)
|
|
1789
|
+
careers_url: https://jobs.smartrecruiters.com/Square
|
|
1790
|
+
scan_method: websearch
|
|
1791
|
+
scan_query: '"block" OR "square" careers "AI" OR "ML" OR "Machine Learning"'
|
|
1792
|
+
notes: "Block (Square, Cash App). Payments + ML."
|
|
1793
|
+
tags: ["fintech", "us"]
|
|
1794
|
+
enabled: true
|
|
1795
|
+
|
|
1796
|
+
# -- Cybersecurity (extended) --
|
|
1797
|
+
|
|
1798
|
+
- name: Palo Alto Networks
|
|
1799
|
+
careers_url: https://jobs.paloaltonetworks.com
|
|
1800
|
+
scan_method: websearch
|
|
1801
|
+
scan_query: 'site:jobs.paloaltonetworks.com "AI" OR "ML" OR "Solutions Architect" OR "Cortex"'
|
|
1802
|
+
notes: "Network security + Cortex AI/ML."
|
|
1803
|
+
tags: ["security", "us"]
|
|
1804
|
+
enabled: true
|
|
1805
|
+
|
|
1806
|
+
- name: Fortinet
|
|
1807
|
+
careers_url: https://edel.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1001
|
|
1808
|
+
scan_method: websearch
|
|
1809
|
+
scan_query: '"fortinet" careers "AI" OR "ML" OR "Solutions Architect"'
|
|
1810
|
+
notes: "Network security + FortiAI."
|
|
1811
|
+
tags: ["security", "us"]
|
|
1812
|
+
enabled: true
|
|
1813
|
+
|
|
1814
|
+
- name: Zscaler
|
|
1815
|
+
careers_url: https://job-boards.greenhouse.io/zscaler
|
|
1816
|
+
api: https://boards-api.greenhouse.io/v1/boards/zscaler/jobs
|
|
1817
|
+
notes: "Zero-trust cloud security + AI."
|
|
1818
|
+
tags: ["security", "cloud", "us"]
|
|
1819
|
+
enabled: true
|
|
1820
|
+
|
|
1821
|
+
- name: SentinelOne
|
|
1822
|
+
careers_url: https://job-boards.greenhouse.io/sentinelone
|
|
1823
|
+
notes: "AI-powered endpoint and cloud security."
|
|
1824
|
+
tags: ["security", "us"]
|
|
1825
|
+
enabled: true
|
|
1826
|
+
|
|
1827
|
+
- name: Lacework
|
|
1828
|
+
careers_url: https://job-boards.greenhouse.io/lacework
|
|
1829
|
+
notes: "Cloud security + ML anomaly detection."
|
|
1830
|
+
tags: ["security", "cloud", "us"]
|
|
1831
|
+
enabled: true
|
|
1832
|
+
|
|
1833
|
+
- name: Okta
|
|
1834
|
+
careers_url: https://job-boards.greenhouse.io/okta
|
|
1835
|
+
api: https://boards-api.greenhouse.io/v1/boards/okta/jobs
|
|
1836
|
+
notes: "Identity and access management. AI threat detection."
|
|
1837
|
+
tags: ["security", "identity", "us"]
|
|
1838
|
+
enabled: true
|
|
1839
|
+
|
|
1840
|
+
- name: 1Password
|
|
1841
|
+
careers_url: https://jobs.lever.co/1password
|
|
1842
|
+
notes: "Password management + enterprise security."
|
|
1843
|
+
tags: ["security", "identity", "remote-first"]
|
|
1844
|
+
enabled: true
|
|
1845
|
+
|
|
1846
|
+
- name: Cybereason
|
|
1847
|
+
careers_url: https://job-boards.greenhouse.io/cybereason
|
|
1848
|
+
api: https://boards-api.greenhouse.io/v1/boards/cybereason/jobs
|
|
1849
|
+
notes: "AI-driven XDR security platform."
|
|
1850
|
+
tags: ["security", "us"]
|
|
1851
|
+
enabled: true
|
|
1852
|
+
|
|
1853
|
+
- name: Darktrace
|
|
1854
|
+
careers_url: https://darktrace.com/careers
|
|
1855
|
+
scan_method: websearch
|
|
1856
|
+
scan_query: 'site:darktrace.com/careers "AI" OR "ML" OR "Engineer" OR "Solutions"'
|
|
1857
|
+
notes: "Cambridge UK. AI cybersecurity (self-learning)."
|
|
1858
|
+
tags: ["security", "uk"]
|
|
1859
|
+
enabled: true
|
|
1860
|
+
|
|
1861
|
+
# -- DevOps, CI/CD & Infrastructure --
|
|
1862
|
+
|
|
1863
|
+
- name: JFrog
|
|
1864
|
+
careers_url: https://job-boards.greenhouse.io/jfrog
|
|
1865
|
+
api: https://boards-api.greenhouse.io/v1/boards/jfrog/jobs
|
|
1866
|
+
notes: "DevOps platform, Artifactory, ML model registry."
|
|
1867
|
+
tags: ["devops", "us"]
|
|
1868
|
+
enabled: true
|
|
1869
|
+
|
|
1870
|
+
- name: CircleCI
|
|
1871
|
+
careers_url: https://job-boards.greenhouse.io/circleci
|
|
1872
|
+
api: https://boards-api.greenhouse.io/v1/boards/circleci/jobs
|
|
1873
|
+
notes: "CI/CD platform."
|
|
1874
|
+
tags: ["devops", "us"]
|
|
1875
|
+
enabled: true
|
|
1876
|
+
|
|
1877
|
+
- name: Buildkite
|
|
1878
|
+
careers_url: https://buildkite.com/careers
|
|
1879
|
+
scan_method: websearch
|
|
1880
|
+
scan_query: '"buildkite" careers "engineer" OR "solutions" OR "platform"'
|
|
1881
|
+
notes: "CI/CD for scale. Remote-first."
|
|
1882
|
+
tags: ["devops", "remote-first"]
|
|
1883
|
+
enabled: true
|
|
1884
|
+
|
|
1885
|
+
- name: Kong
|
|
1886
|
+
careers_url: https://job-boards.greenhouse.io/kong
|
|
1887
|
+
notes: "API gateway and service mesh + AI Gateway."
|
|
1888
|
+
tags: ["devops", "networking", "us"]
|
|
1889
|
+
enabled: true
|
|
1890
|
+
|
|
1891
|
+
- name: Postman
|
|
1892
|
+
careers_url: https://job-boards.greenhouse.io/postman
|
|
1893
|
+
api: https://boards-api.greenhouse.io/v1/boards/postman/jobs
|
|
1894
|
+
notes: "API development platform."
|
|
1895
|
+
tags: ["devops", "developer-tools", "us"]
|
|
1896
|
+
enabled: true
|
|
1897
|
+
|
|
1898
|
+
- name: Fastly
|
|
1899
|
+
careers_url: https://job-boards.greenhouse.io/fastly
|
|
1900
|
+
api: https://boards-api.greenhouse.io/v1/boards/fastly/jobs
|
|
1901
|
+
notes: "Edge cloud platform + AI at the edge."
|
|
1902
|
+
tags: ["devops", "cloud", "networking", "us"]
|
|
1903
|
+
enabled: true
|
|
1904
|
+
|
|
1905
|
+
- name: Netlify
|
|
1906
|
+
careers_url: https://job-boards.greenhouse.io/netlify
|
|
1907
|
+
api: https://boards-api.greenhouse.io/v1/boards/netlify/jobs
|
|
1908
|
+
notes: "Web deployment platform. Remote-first."
|
|
1909
|
+
tags: ["devops", "developer-tools", "remote-first"]
|
|
1910
|
+
enabled: true
|
|
1911
|
+
|
|
1912
|
+
- name: Docker
|
|
1913
|
+
careers_url: https://job-boards.greenhouse.io/docker
|
|
1914
|
+
notes: "Container platform + AI developer tools."
|
|
1915
|
+
tags: ["devops", "developer-tools", "us"]
|
|
1916
|
+
enabled: true
|
|
1917
|
+
|
|
1918
|
+
- name: Grafbase
|
|
1919
|
+
careers_url: https://grafbase.com
|
|
1920
|
+
scan_method: websearch
|
|
1921
|
+
scan_query: '"grafbase" careers OR jobs "engineer"'
|
|
1922
|
+
notes: "Federated GraphQL platform. Remote EU."
|
|
1923
|
+
tags: ["devops", "developer-tools", "eu"]
|
|
1924
|
+
enabled: true
|
|
1925
|
+
|
|
1926
|
+
- name: GitGuardian
|
|
1927
|
+
careers_url: https://job-boards.greenhouse.io/gitguardian
|
|
1928
|
+
notes: "Paris. Secrets detection in code."
|
|
1929
|
+
tags: ["devops", "security", "developer-tools", "eu"]
|
|
1930
|
+
enabled: true
|
|
1931
|
+
|
|
1932
|
+
# -- Data Analytics & BI --
|
|
1933
|
+
|
|
1934
|
+
- name: ThoughtSpot
|
|
1935
|
+
careers_url: https://job-boards.greenhouse.io/thoughtspot
|
|
1936
|
+
notes: "AI-powered analytics and search."
|
|
1937
|
+
tags: ["analytics", "ai-search", "us"]
|
|
1938
|
+
enabled: true
|
|
1939
|
+
|
|
1940
|
+
- name: Amplitude
|
|
1941
|
+
careers_url: https://job-boards.greenhouse.io/amplitude
|
|
1942
|
+
api: https://boards-api.greenhouse.io/v1/boards/amplitude/jobs
|
|
1943
|
+
notes: "Product analytics + AI insights."
|
|
1944
|
+
tags: ["analytics", "us"]
|
|
1945
|
+
enabled: true
|
|
1946
|
+
|
|
1947
|
+
- name: Mixpanel
|
|
1948
|
+
careers_url: https://job-boards.greenhouse.io/mixpanel
|
|
1949
|
+
api: https://boards-api.greenhouse.io/v1/boards/mixpanel/jobs
|
|
1950
|
+
notes: "Product analytics."
|
|
1951
|
+
tags: ["analytics", "us"]
|
|
1952
|
+
enabled: true
|
|
1953
|
+
|
|
1954
|
+
- name: Segment (Twilio)
|
|
1955
|
+
careers_url: https://job-boards.greenhouse.io/segment
|
|
1956
|
+
notes: "Customer data platform."
|
|
1957
|
+
tags: ["analytics", "us"]
|
|
1958
|
+
enabled: true
|
|
1959
|
+
|
|
1960
|
+
- name: Heap
|
|
1961
|
+
careers_url: https://job-boards.greenhouse.io/heap
|
|
1962
|
+
notes: "Contentsquare-owned. Auto-capture analytics."
|
|
1963
|
+
tags: ["analytics", "us"]
|
|
1964
|
+
enabled: true
|
|
1965
|
+
|
|
1966
|
+
- name: Metabase
|
|
1967
|
+
careers_url: https://jobs.ashbyhq.com/metabase
|
|
1968
|
+
notes: "Open-source BI and analytics."
|
|
1969
|
+
tags: ["analytics", "open-source", "us"]
|
|
1970
|
+
enabled: true
|
|
1971
|
+
|
|
1972
|
+
- name: Preset (Superset)
|
|
1973
|
+
careers_url: https://job-boards.greenhouse.io/preset
|
|
1974
|
+
notes: "Managed Apache Superset. Open-source BI."
|
|
1975
|
+
tags: ["analytics", "open-source", "us"]
|
|
1976
|
+
enabled: true
|
|
1977
|
+
|
|
1978
|
+
- name: Observable
|
|
1979
|
+
careers_url: https://job-boards.greenhouse.io/observable
|
|
1980
|
+
notes: "Data visualization and Observable Framework."
|
|
1981
|
+
tags: ["analytics", "developer-tools", "us"]
|
|
1982
|
+
enabled: true
|
|
1983
|
+
|
|
1984
|
+
- name: Hightouch
|
|
1985
|
+
careers_url: https://job-boards.greenhouse.io/hightouch
|
|
1986
|
+
api: https://boards-api.greenhouse.io/v1/boards/hightouch/jobs
|
|
1987
|
+
notes: "Composable CDP and reverse ETL."
|
|
1988
|
+
tags: ["analytics", "us"]
|
|
1989
|
+
enabled: true
|
|
1990
|
+
|
|
1991
|
+
# -- AI for Sales, Marketing & RevOps --
|
|
1992
|
+
|
|
1993
|
+
- name: Clay
|
|
1994
|
+
careers_url: https://jobs.ashbyhq.com/clay
|
|
1995
|
+
notes: "AI data enrichment + outbound automation."
|
|
1996
|
+
tags: ["crm", "automation", "us"]
|
|
1997
|
+
enabled: true
|
|
1998
|
+
|
|
1999
|
+
- name: Apollo.io
|
|
2000
|
+
careers_url: https://job-boards.greenhouse.io/apolloio
|
|
2001
|
+
api: https://boards-api.greenhouse.io/v1/boards/apolloio/jobs
|
|
2002
|
+
notes: "Sales intelligence + AI sequences."
|
|
2003
|
+
tags: ["crm", "automation", "defense", "us"]
|
|
2004
|
+
enabled: true
|
|
2005
|
+
|
|
2006
|
+
- name: Outreach
|
|
2007
|
+
careers_url: https://job-boards.greenhouse.io/outreach
|
|
2008
|
+
notes: "Sales engagement + AI assistant."
|
|
2009
|
+
tags: ["crm", "automation", "us"]
|
|
2010
|
+
enabled: true
|
|
2011
|
+
|
|
2012
|
+
- name: Jasper
|
|
2013
|
+
careers_url: https://job-boards.greenhouse.io/jasper
|
|
2014
|
+
notes: "AI marketing content platform."
|
|
2015
|
+
tags: ["crm", "automation", "developer-tools", "ai-creative", "us"]
|
|
2016
|
+
enabled: true
|
|
2017
|
+
|
|
2018
|
+
- name: Copy.ai
|
|
2019
|
+
careers_url: https://jobs.ashbyhq.com/copy-ai
|
|
2020
|
+
notes: "AI GTM workflows and content."
|
|
2021
|
+
tags: ["crm", "automation", "ai-creative", "us"]
|
|
2022
|
+
enabled: true
|
|
2023
|
+
|
|
2024
|
+
- name: Salesloft
|
|
2025
|
+
careers_url: https://job-boards.greenhouse.io/salesloft
|
|
2026
|
+
api: https://boards-api.greenhouse.io/v1/boards/salesloft/jobs
|
|
2027
|
+
notes: "Sales engagement + AI. Vista-owned."
|
|
2028
|
+
tags: ["crm", "automation", "us"]
|
|
2029
|
+
enabled: true
|
|
2030
|
+
|
|
2031
|
+
- name: ZoomInfo
|
|
2032
|
+
careers_url: https://job-boards.greenhouse.io/zoominfo
|
|
2033
|
+
api: https://boards-api.greenhouse.io/v1/boards/zoominfo/jobs
|
|
2034
|
+
notes: "B2B data intelligence + AI."
|
|
2035
|
+
tags: ["crm", "automation", "defense", "us"]
|
|
2036
|
+
enabled: true
|
|
2037
|
+
|
|
2038
|
+
- name: Clari
|
|
2039
|
+
careers_url: https://job-boards.greenhouse.io/clari
|
|
2040
|
+
notes: "Revenue intelligence + AI forecasting."
|
|
2041
|
+
tags: ["crm", "automation", "defense", "us"]
|
|
2042
|
+
enabled: true
|
|
2043
|
+
|
|
2044
|
+
- name: 6sense
|
|
2045
|
+
careers_url: https://job-boards.greenhouse.io/6sense
|
|
2046
|
+
api: https://boards-api.greenhouse.io/v1/boards/6sense/jobs
|
|
2047
|
+
notes: "AI-powered ABM and revenue intelligence."
|
|
2048
|
+
tags: ["crm", "automation", "defense", "us"]
|
|
2049
|
+
enabled: true
|
|
2050
|
+
|
|
2051
|
+
# -- AI Agents & Workflow Automation (extended) --
|
|
2052
|
+
|
|
2053
|
+
- name: Relevance AI
|
|
2054
|
+
careers_url: https://jobs.ashbyhq.com/relevanceai
|
|
2055
|
+
notes: "AI workforce / agent building platform."
|
|
2056
|
+
tags: ["automation", "ai-agents", "apac"]
|
|
2057
|
+
enabled: true
|
|
2058
|
+
|
|
2059
|
+
- name: Fixie AI
|
|
2060
|
+
careers_url: https://jobs.ashbyhq.com/fixie
|
|
2061
|
+
notes: "AI agent infrastructure and tools."
|
|
2062
|
+
tags: ["automation", "ai-agents", "developer-tools", "us"]
|
|
2063
|
+
enabled: true
|
|
2064
|
+
|
|
2065
|
+
- name: Dust
|
|
2066
|
+
careers_url: https://jobs.ashbyhq.com/dust
|
|
2067
|
+
notes: "Paris. AI agent platform for enterprises."
|
|
2068
|
+
tags: ["automation", "ai-agents", "eu"]
|
|
2069
|
+
enabled: true
|
|
2070
|
+
|
|
2071
|
+
- name: Moveworks
|
|
2072
|
+
careers_url: https://job-boards.greenhouse.io/moveworks
|
|
2073
|
+
api: https://boards-api.greenhouse.io/v1/boards/moveworks/jobs
|
|
2074
|
+
notes: "Enterprise AI copilot for IT/HR/Finance."
|
|
2075
|
+
tags: ["automation", "ai-agents", "enterprise-saas", "us"]
|
|
2076
|
+
enabled: true
|
|
2077
|
+
|
|
2078
|
+
- name: Adept AI
|
|
2079
|
+
careers_url: https://jobs.ashbyhq.com/adept
|
|
2080
|
+
notes: "AI agents that use software like humans."
|
|
2081
|
+
tags: ["automation", "ai-agents", "us"]
|
|
2082
|
+
enabled: true
|
|
2083
|
+
|
|
2084
|
+
- name: Voiceflow
|
|
2085
|
+
careers_url: https://jobs.ashbyhq.com/voiceflow
|
|
2086
|
+
notes: "Conversational AI agent builder. Toronto."
|
|
2087
|
+
tags: ["automation", "ai-agents", "conversational-ai", "no-code", "us"]
|
|
2088
|
+
enabled: true
|
|
2089
|
+
|
|
2090
|
+
- name: Tray.io
|
|
2091
|
+
careers_url: https://job-boards.greenhouse.io/tray
|
|
2092
|
+
notes: "Enterprise automation platform + AI."
|
|
2093
|
+
tags: ["automation", "ai-agents", "enterprise-saas", "us"]
|
|
2094
|
+
enabled: true
|
|
2095
|
+
|
|
2096
|
+
- name: Workato
|
|
2097
|
+
careers_url: https://job-boards.greenhouse.io/workato
|
|
2098
|
+
api: https://boards-api.greenhouse.io/v1/boards/workato/jobs
|
|
2099
|
+
notes: "Enterprise integration + AI automation."
|
|
2100
|
+
tags: ["automation", "ai-agents", "enterprise-saas", "us"]
|
|
2101
|
+
enabled: true
|
|
2102
|
+
|
|
2103
|
+
# -- Cloud-Native & Kubernetes --
|
|
2104
|
+
|
|
2105
|
+
- name: Confluent Cloud
|
|
2106
|
+
careers_url: https://jobs.ashbyhq.com/confluent
|
|
2107
|
+
notes: "Already tracked above — duplicate guard."
|
|
2108
|
+
tags: ["cloud", "devops", "us"]
|
|
2109
|
+
enabled: false
|
|
2110
|
+
|
|
2111
|
+
- name: Red Hat
|
|
2112
|
+
careers_url: https://careers-redhat.icims.com
|
|
2113
|
+
scan_method: websearch
|
|
2114
|
+
scan_query: '"red hat" careers "AI" OR "OpenShift AI" OR "Solutions Architect"'
|
|
2115
|
+
notes: "IBM-owned. OpenShift AI, Ansible, RHEL."
|
|
2116
|
+
tags: ["cloud", "devops", "open-source", "us"]
|
|
2117
|
+
enabled: true
|
|
2118
|
+
|
|
2119
|
+
- name: SUSE
|
|
2120
|
+
careers_url: https://www.suse.com/careers
|
|
2121
|
+
scan_method: websearch
|
|
2122
|
+
scan_query: 'site:suse.com/careers "AI" OR "ML" OR "Kubernetes" OR "Solutions"'
|
|
2123
|
+
notes: "Enterprise Linux and K8s. Nuremberg + remote."
|
|
2124
|
+
tags: ["cloud", "devops", "open-source", "eu"]
|
|
2125
|
+
enabled: true
|
|
2126
|
+
|
|
2127
|
+
- name: Canonical
|
|
2128
|
+
careers_url: https://canonical.com/careers
|
|
2129
|
+
scan_method: websearch
|
|
2130
|
+
scan_query: 'site:canonical.com/careers "AI" OR "ML" OR "Solutions" OR "Engineer"'
|
|
2131
|
+
notes: "Ubuntu, Juju, MAAS. Remote-first."
|
|
2132
|
+
tags: ["cloud", "devops", "open-source", "remote-first"]
|
|
2133
|
+
enabled: true
|
|
2134
|
+
|
|
2135
|
+
- name: Isovalent (Cisco)
|
|
2136
|
+
careers_url: https://job-boards.greenhouse.io/isovalent
|
|
2137
|
+
notes: "eBPF and Cilium networking. Cisco-acquired."
|
|
2138
|
+
tags: ["cloud", "devops", "networking", "open-source", "us"]
|
|
2139
|
+
enabled: true
|
|
2140
|
+
|
|
2141
|
+
# -- EdTech & Learning --
|
|
2142
|
+
|
|
2143
|
+
- name: Duolingo
|
|
2144
|
+
careers_url: https://job-boards.greenhouse.io/duolingo
|
|
2145
|
+
api: https://boards-api.greenhouse.io/v1/boards/duolingo/jobs
|
|
2146
|
+
notes: "Language learning + AI (Birdbrain). Pittsburgh."
|
|
2147
|
+
tags: ["edtech", "voice-ai", "us"]
|
|
2148
|
+
enabled: true
|
|
2149
|
+
|
|
2150
|
+
- name: Coursera
|
|
2151
|
+
careers_url: https://job-boards.greenhouse.io/coursera
|
|
2152
|
+
api: https://boards-api.greenhouse.io/v1/boards/coursera/jobs
|
|
2153
|
+
notes: "Online learning platform + AI features."
|
|
2154
|
+
tags: ["edtech", "us"]
|
|
2155
|
+
enabled: true
|
|
2156
|
+
|
|
2157
|
+
- name: Khan Academy
|
|
2158
|
+
careers_url: https://job-boards.greenhouse.io/khanacademy
|
|
2159
|
+
api: https://boards-api.greenhouse.io/v1/boards/khanacademy/jobs
|
|
2160
|
+
notes: "Khanmigo AI tutor (OpenAI-powered)."
|
|
2161
|
+
tags: ["edtech", "us"]
|
|
2162
|
+
enabled: true
|
|
2163
|
+
|
|
2164
|
+
- name: Chegg
|
|
2165
|
+
careers_url: https://job-boards.greenhouse.io/chegg
|
|
2166
|
+
notes: "Education platform + AI study tools."
|
|
2167
|
+
tags: ["edtech", "us"]
|
|
2168
|
+
enabled: true
|
|
2169
|
+
|
|
2170
|
+
# -- Gaming & Creative AI --
|
|
2171
|
+
|
|
2172
|
+
- name: Unity
|
|
2173
|
+
careers_url: https://job-boards.greenhouse.io/unitytechnologies
|
|
2174
|
+
notes: "Game engine + AI/ML tools (Muse, Sentis)."
|
|
2175
|
+
tags: ["gaming", "ai-creative", "developer-tools", "us"]
|
|
2176
|
+
enabled: true
|
|
2177
|
+
|
|
2178
|
+
- name: Epic Games
|
|
2179
|
+
careers_url: https://job-boards.greenhouse.io/epicgames
|
|
2180
|
+
api: https://boards-api.greenhouse.io/v1/boards/epicgames/jobs
|
|
2181
|
+
notes: "Unreal Engine + AI features."
|
|
2182
|
+
tags: ["gaming", "ai-creative", "developer-tools", "us"]
|
|
2183
|
+
enabled: true
|
|
2184
|
+
|
|
2185
|
+
- name: Roblox
|
|
2186
|
+
careers_url: https://job-boards.greenhouse.io/roblox
|
|
2187
|
+
api: https://boards-api.greenhouse.io/v1/boards/roblox/jobs
|
|
2188
|
+
notes: "Gaming platform + generative AI for creation."
|
|
2189
|
+
tags: ["gaming", "ai-creative", "ai-lab", "us"]
|
|
2190
|
+
enabled: true
|
|
2191
|
+
|
|
2192
|
+
- name: Runway
|
|
2193
|
+
careers_url: https://job-boards.greenhouse.io/runwayml
|
|
2194
|
+
notes: "AI video generation and creative tools."
|
|
2195
|
+
tags: ["gaming", "ai-creative", "us"]
|
|
2196
|
+
enabled: true
|
|
2197
|
+
|
|
2198
|
+
- name: Midjourney
|
|
2199
|
+
careers_url: https://midjourney.com
|
|
2200
|
+
scan_method: websearch
|
|
2201
|
+
scan_query: '"midjourney" careers OR jobs OR hiring "engineer"'
|
|
2202
|
+
notes: "AI image generation. Small team."
|
|
2203
|
+
tags: ["gaming", "ai-creative", "us"]
|
|
2204
|
+
enabled: true
|
|
2205
|
+
|
|
2206
|
+
- name: Pika
|
|
2207
|
+
careers_url: https://jobs.ashbyhq.com/pika
|
|
2208
|
+
notes: "AI video generation."
|
|
2209
|
+
tags: ["gaming", "ai-creative", "us"]
|
|
2210
|
+
enabled: true
|
|
2211
|
+
|
|
2212
|
+
- name: Luma AI
|
|
2213
|
+
careers_url: https://jobs.ashbyhq.com/lumalabs
|
|
2214
|
+
notes: "3D capture and generation with AI."
|
|
2215
|
+
tags: ["gaming", "ai-creative", "us"]
|
|
2216
|
+
enabled: true
|
|
2217
|
+
|
|
2218
|
+
# -- Climate & Energy Tech --
|
|
2219
|
+
|
|
2220
|
+
- name: Climavision
|
|
2221
|
+
careers_url: https://job-boards.greenhouse.io/climavision
|
|
2222
|
+
notes: "AI weather forecasting and climate data."
|
|
2223
|
+
tags: ["climate", "us"]
|
|
2224
|
+
enabled: true
|
|
2225
|
+
|
|
2226
|
+
- name: Watershed
|
|
2227
|
+
careers_url: https://job-boards.greenhouse.io/watershed
|
|
2228
|
+
api: https://boards-api.greenhouse.io/v1/boards/watershed/jobs
|
|
2229
|
+
notes: "Enterprise carbon management platform."
|
|
2230
|
+
tags: ["climate", "us"]
|
|
2231
|
+
enabled: true
|
|
2232
|
+
|
|
2233
|
+
- name: Arcadia
|
|
2234
|
+
careers_url: https://job-boards.greenhouse.io/arcadia
|
|
2235
|
+
notes: "Energy data and decarbonization platform."
|
|
2236
|
+
tags: ["climate", "us"]
|
|
2237
|
+
enabled: true
|
|
2238
|
+
|
|
2239
|
+
# -- Supply Chain & Logistics --
|
|
2240
|
+
|
|
2241
|
+
- name: Flexport
|
|
2242
|
+
careers_url: https://job-boards.greenhouse.io/flexport
|
|
2243
|
+
api: https://boards-api.greenhouse.io/v1/boards/flexport/jobs
|
|
2244
|
+
notes: "Global logistics + AI optimization."
|
|
2245
|
+
tags: ["logistics", "us"]
|
|
2246
|
+
enabled: true
|
|
2247
|
+
|
|
2248
|
+
- name: project44
|
|
2249
|
+
careers_url: https://job-boards.greenhouse.io/project44
|
|
2250
|
+
api: https://boards-api.greenhouse.io/v1/boards/project44/jobs
|
|
2251
|
+
notes: "Supply chain visibility + ML."
|
|
2252
|
+
tags: ["logistics", "us"]
|
|
2253
|
+
enabled: true
|
|
2254
|
+
|
|
2255
|
+
- name: FourKites
|
|
2256
|
+
careers_url: https://job-boards.greenhouse.io/fourkites
|
|
2257
|
+
api: https://boards-api.greenhouse.io/v1/boards/fourkites/jobs
|
|
2258
|
+
notes: "Real-time supply chain visibility."
|
|
2259
|
+
tags: ["logistics", "us"]
|
|
2260
|
+
enabled: true
|
|
2261
|
+
|
|
2262
|
+
# -- Real Estate & PropTech --
|
|
2263
|
+
|
|
2264
|
+
- name: Opendoor
|
|
2265
|
+
careers_url: https://job-boards.greenhouse.io/opendoor
|
|
2266
|
+
api: https://boards-api.greenhouse.io/v1/boards/opendoor/jobs
|
|
2267
|
+
notes: "iBuying + ML pricing models."
|
|
2268
|
+
tags: ["real-estate", "us"]
|
|
2269
|
+
enabled: true
|
|
2270
|
+
|
|
2271
|
+
- name: Zillow
|
|
2272
|
+
careers_url: https://zillow.wd5.myworkdayjobs.com
|
|
2273
|
+
scan_method: websearch
|
|
2274
|
+
scan_query: '"zillow" careers "AI" OR "ML" OR "Data Science" OR "Engineer"'
|
|
2275
|
+
notes: "Real estate + Zestimate ML."
|
|
2276
|
+
tags: ["real-estate", "us"]
|
|
2277
|
+
enabled: true
|
|
2278
|
+
|
|
2279
|
+
# -- Telecom & Connectivity --
|
|
2280
|
+
|
|
2281
|
+
- name: Starlink (SpaceX)
|
|
2282
|
+
careers_url: https://www.spacex.com/careers
|
|
2283
|
+
scan_method: websearch
|
|
2284
|
+
scan_query: 'site:spacex.com/careers "AI" OR "ML" OR "Software" OR "Starlink"'
|
|
2285
|
+
notes: "Satellite internet. Hawthorne CA."
|
|
2286
|
+
tags: ["networking", "us"]
|
|
2287
|
+
enabled: true
|
|
2288
|
+
|
|
2289
|
+
# -- Music & Audio AI --
|
|
2290
|
+
|
|
2291
|
+
- name: Spotify
|
|
2292
|
+
careers_url: https://jobs.lever.co/spotify
|
|
2293
|
+
notes: "Music streaming + ML recommendations and AI DJ."
|
|
2294
|
+
tags: ["media", "eu"]
|
|
2295
|
+
enabled: true
|
|
2296
|
+
|
|
2297
|
+
- name: SoundHound
|
|
2298
|
+
careers_url: https://job-boards.greenhouse.io/soundhoundinc
|
|
2299
|
+
notes: "Voice AI and conversational intelligence."
|
|
2300
|
+
tags: ["media", "voice-ai", "defense", "us"]
|
|
2301
|
+
enabled: true
|
|
2302
|
+
|
|
2303
|
+
- name: AssemblyAI
|
|
2304
|
+
careers_url: https://jobs.ashbyhq.com/assemblyai
|
|
2305
|
+
notes: "Speech-to-text and audio AI APIs."
|
|
2306
|
+
tags: ["media", "voice-ai", "us"]
|
|
2307
|
+
enabled: true
|
|
2308
|
+
|
|
2309
|
+
# -- Travel & Mobility --
|
|
2310
|
+
|
|
2311
|
+
- name: Airbnb
|
|
2312
|
+
careers_url: https://job-boards.greenhouse.io/airbnb
|
|
2313
|
+
api: https://boards-api.greenhouse.io/v1/boards/airbnb/jobs
|
|
2314
|
+
notes: "Travel marketplace + ML/AI features."
|
|
2315
|
+
tags: ["analytics", "travel", "us"]
|
|
2316
|
+
enabled: true
|
|
2317
|
+
|
|
2318
|
+
- name: Uber
|
|
2319
|
+
careers_url: https://uber.wd5.myworkdayjobs.com
|
|
2320
|
+
scan_method: websearch
|
|
2321
|
+
scan_query: '"uber" careers "AI" OR "ML" OR "Machine Learning" OR "Applied Scientist"'
|
|
2322
|
+
notes: "Ride-hailing/delivery + massive ML platform."
|
|
2323
|
+
tags: ["analytics", "travel", "logistics", "us"]
|
|
2324
|
+
enabled: true
|
|
2325
|
+
|
|
2326
|
+
- name: Lyft
|
|
2327
|
+
careers_url: https://job-boards.greenhouse.io/lyft
|
|
2328
|
+
api: https://boards-api.greenhouse.io/v1/boards/lyft/jobs
|
|
2329
|
+
notes: "Ride-hailing + ML optimization."
|
|
2330
|
+
tags: ["analytics", "travel", "us"]
|
|
2331
|
+
enabled: true
|
|
2332
|
+
|
|
2333
|
+
- name: Booking.com
|
|
2334
|
+
careers_url: https://careers.booking.com
|
|
2335
|
+
scan_method: websearch
|
|
2336
|
+
scan_query: 'site:careers.booking.com "AI" OR "ML" OR "Data Science" OR "Engineer"'
|
|
2337
|
+
notes: "Amsterdam. Travel + ML at scale."
|
|
2338
|
+
tags: ["analytics", "travel", "eu"]
|
|
2339
|
+
enabled: true
|
|
2340
|
+
|
|
2341
|
+
# -- Insurance & RegTech --
|
|
2342
|
+
|
|
2343
|
+
- name: Lemonade
|
|
2344
|
+
careers_url: https://job-boards.greenhouse.io/lemonade
|
|
2345
|
+
notes: "AI-first insurance."
|
|
2346
|
+
tags: ["insurance", "us"]
|
|
2347
|
+
enabled: true
|
|
2348
|
+
|
|
2349
|
+
- name: Tractable
|
|
2350
|
+
careers_url: https://job-boards.greenhouse.io/tractable
|
|
2351
|
+
notes: "London. AI for auto claims and damage assessment."
|
|
2352
|
+
tags: ["insurance", "uk"]
|
|
2353
|
+
enabled: true
|
|
2354
|
+
|
|
2355
|
+
# -- Communication Platforms --
|
|
2356
|
+
|
|
2357
|
+
- name: Vonage (Ericsson)
|
|
2358
|
+
careers_url: https://job-boards.greenhouse.io/vonage
|
|
2359
|
+
api: https://boards-api.greenhouse.io/v1/boards/vonage/jobs
|
|
2360
|
+
notes: "CPaaS + AI voice and messaging."
|
|
2361
|
+
tags: ["communication", "identity", "us"]
|
|
2362
|
+
enabled: true
|
|
2363
|
+
|
|
2364
|
+
- name: MessageBird
|
|
2365
|
+
careers_url: https://job-boards.greenhouse.io/messagebird
|
|
2366
|
+
notes: "Amsterdam. Omnichannel comms + AI."
|
|
2367
|
+
tags: ["communication", "eu"]
|
|
2368
|
+
enabled: true
|
|
2369
|
+
|
|
2370
|
+
- name: Sinch
|
|
2371
|
+
careers_url: https://sinch.com/careers
|
|
2372
|
+
scan_method: websearch
|
|
2373
|
+
scan_query: '"sinch" careers "AI" OR "Engineer" OR "Solutions"'
|
|
2374
|
+
notes: "Stockholm. CPaaS and messaging + AI."
|
|
2375
|
+
tags: ["communication", "eu"]
|
|
2376
|
+
enabled: true
|
|
2377
|
+
|
|
2378
|
+
# -- Observability & Monitoring (extended) --
|
|
2379
|
+
|
|
2380
|
+
- name: New Relic
|
|
2381
|
+
careers_url: https://job-boards.greenhouse.io/newrelic
|
|
2382
|
+
api: https://boards-api.greenhouse.io/v1/boards/newrelic/jobs
|
|
2383
|
+
notes: "Full-stack observability + AI insights."
|
|
2384
|
+
tags: ["analytics", "observability", "us"]
|
|
2385
|
+
enabled: true
|
|
2386
|
+
|
|
2387
|
+
- name: Splunk (Cisco)
|
|
2388
|
+
careers_url: https://jobs.jobvite.com/splunk-careers
|
|
2389
|
+
scan_method: websearch
|
|
2390
|
+
scan_query: '"splunk" careers "AI" OR "ML" OR "Solutions" OR "Engineer"'
|
|
2391
|
+
notes: "Cisco-owned. SIEM, observability, AI assistants."
|
|
2392
|
+
tags: ["analytics", "observability", "security", "us"]
|
|
2393
|
+
enabled: true
|
|
2394
|
+
|
|
2395
|
+
- name: Chronosphere
|
|
2396
|
+
careers_url: https://job-boards.greenhouse.io/chronosphere
|
|
2397
|
+
notes: "Cloud-native observability."
|
|
2398
|
+
tags: ["analytics", "observability", "us"]
|
|
2399
|
+
enabled: true
|
|
2400
|
+
|
|
2401
|
+
- name: Honeycomb
|
|
2402
|
+
careers_url: https://job-boards.greenhouse.io/honeycomb
|
|
2403
|
+
api: https://boards-api.greenhouse.io/v1/boards/honeycomb/jobs
|
|
2404
|
+
notes: "Observability + AI query assistant."
|
|
2405
|
+
tags: ["analytics", "observability", "us"]
|
|
2406
|
+
enabled: true
|
|
2407
|
+
|
|
2408
|
+
# -- Database & Data Infrastructure (extended) --
|
|
2409
|
+
|
|
2410
|
+
- name: CockroachDB
|
|
2411
|
+
careers_url: https://job-boards.greenhouse.io/cockroachlabs
|
|
2412
|
+
api: https://boards-api.greenhouse.io/v1/boards/cockroachlabs/jobs
|
|
2413
|
+
notes: "Distributed SQL database."
|
|
2414
|
+
tags: ["devops", "database", "us"]
|
|
2415
|
+
enabled: true
|
|
2416
|
+
|
|
2417
|
+
- name: SingleStore
|
|
2418
|
+
careers_url: https://job-boards.greenhouse.io/singlestore
|
|
2419
|
+
api: https://boards-api.greenhouse.io/v1/boards/singlestore/jobs
|
|
2420
|
+
notes: "Real-time unified database for AI/analytics."
|
|
2421
|
+
tags: ["devops", "database", "analytics", "us"]
|
|
2422
|
+
enabled: true
|
|
2423
|
+
|
|
2424
|
+
- name: ClickHouse
|
|
2425
|
+
careers_url: https://job-boards.greenhouse.io/clickhouse
|
|
2426
|
+
api: https://boards-api.greenhouse.io/v1/boards/clickhouse/jobs
|
|
2427
|
+
notes: "Column-oriented OLAP database."
|
|
2428
|
+
tags: ["devops", "database", "analytics", "us"]
|
|
2429
|
+
enabled: true
|
|
2430
|
+
|
|
2431
|
+
- name: TimescaleDB
|
|
2432
|
+
careers_url: https://job-boards.greenhouse.io/timescale
|
|
2433
|
+
notes: "Time-series database on Postgres."
|
|
2434
|
+
tags: ["devops", "database", "us"]
|
|
2435
|
+
enabled: true
|
|
2436
|
+
|
|
2437
|
+
- name: StarRocks
|
|
2438
|
+
careers_url: https://jobs.ashbyhq.com/starrocks
|
|
2439
|
+
notes: "Real-time analytics database."
|
|
2440
|
+
tags: ["devops", "database", "analytics", "us"]
|
|
2441
|
+
enabled: true
|
|
2442
|
+
|
|
2443
|
+
- name: Motherduck
|
|
2444
|
+
careers_url: https://jobs.ashbyhq.com/motherduck
|
|
2445
|
+
notes: "Serverless DuckDB analytics."
|
|
2446
|
+
tags: ["devops", "database", "analytics", "us"]
|
|
2447
|
+
enabled: true
|
|
2448
|
+
|
|
2449
|
+
- name: Turso
|
|
2450
|
+
careers_url: https://jobs.ashbyhq.com/turso
|
|
2451
|
+
notes: "Edge SQLite (libSQL) database."
|
|
2452
|
+
tags: ["devops", "database", "developer-tools", "us"]
|
|
2453
|
+
enabled: true
|
|
2454
|
+
|
|
2455
|
+
# -- AI Coding & Code Gen (extended) --
|
|
2456
|
+
|
|
2457
|
+
- name: Augment Code
|
|
2458
|
+
careers_url: https://jobs.ashbyhq.com/augmentcode
|
|
2459
|
+
notes: "AI coding assistant for enterprise."
|
|
2460
|
+
tags: ["ai-coding", "developer-tools", "us"]
|
|
2461
|
+
enabled: true
|
|
2462
|
+
|
|
2463
|
+
- name: Magic AI
|
|
2464
|
+
careers_url: https://jobs.ashbyhq.com/magic
|
|
2465
|
+
notes: "Long-context AI coding. LTM-2 model."
|
|
2466
|
+
tags: ["ai-coding", "developer-tools", "ai-lab", "us"]
|
|
2467
|
+
enabled: true
|
|
2468
|
+
|
|
2469
|
+
- name: Poolside
|
|
2470
|
+
careers_url: https://jobs.ashbyhq.com/poolside
|
|
2471
|
+
notes: "Code generation foundation models."
|
|
2472
|
+
tags: ["ai-coding", "developer-tools", "ai-lab", "us"]
|
|
2473
|
+
enabled: true
|
|
2474
|
+
|
|
2475
|
+
- name: Cognition (Devin)
|
|
2476
|
+
careers_url: https://jobs.ashbyhq.com/cognition
|
|
2477
|
+
notes: "Devin AI software engineer."
|
|
2478
|
+
tags: ["ai-coding", "developer-tools", "ai-agents", "us"]
|
|
2479
|
+
enabled: true
|
|
2480
|
+
|
|
2481
|
+
- name: Factory AI
|
|
2482
|
+
careers_url: https://jobs.ashbyhq.com/factory
|
|
2483
|
+
notes: "Autonomous coding agents (Droids)."
|
|
2484
|
+
tags: ["ai-coding", "developer-tools", "ai-agents", "us"]
|
|
2485
|
+
enabled: true
|
|
2486
|
+
|
|
2487
|
+
# -- AI Search & Knowledge --
|
|
2488
|
+
|
|
2489
|
+
- name: You.com
|
|
2490
|
+
careers_url: https://jobs.ashbyhq.com/you
|
|
2491
|
+
notes: "AI search and productivity agents."
|
|
2492
|
+
tags: ["ai-search", "networking", "us"]
|
|
2493
|
+
enabled: true
|
|
2494
|
+
|
|
2495
|
+
- name: Hebbia
|
|
2496
|
+
careers_url: https://jobs.ashbyhq.com/hebbia
|
|
2497
|
+
notes: "AI knowledge work for finance/legal."
|
|
2498
|
+
tags: ["ai-search", "networking", "legal-tech", "fintech", "us"]
|
|
2499
|
+
enabled: true
|
|
2500
|
+
|
|
2501
|
+
- name: Vectara
|
|
2502
|
+
careers_url: https://jobs.ashbyhq.com/vectara
|
|
2503
|
+
notes: "RAG-as-a-service platform."
|
|
2504
|
+
tags: ["ai-search", "networking", "vector-db", "us"]
|
|
2505
|
+
enabled: true
|
|
2506
|
+
|
|
2507
|
+
- name: Coactive AI
|
|
2508
|
+
careers_url: https://jobs.ashbyhq.com/coactive-ai
|
|
2509
|
+
notes: "Multimodal AI for unstructured data."
|
|
2510
|
+
tags: ["ai-search", "networking", "us"]
|
|
2511
|
+
enabled: true
|
|
2512
|
+
|
|
2513
|
+
# -- Developer Experience & API --
|
|
2514
|
+
|
|
2515
|
+
- name: Twitch
|
|
2516
|
+
careers_url: https://job-boards.greenhouse.io/twitch
|
|
2517
|
+
api: https://boards-api.greenhouse.io/v1/boards/twitch/jobs
|
|
2518
|
+
notes: "Amazon-owned. Streaming platform + ML."
|
|
2519
|
+
tags: ["developer-tools", "media", "gaming", "us"]
|
|
2520
|
+
enabled: true
|
|
2521
|
+
|
|
2522
|
+
- name: Snyk (Developer Security)
|
|
2523
|
+
careers_url: https://job-boards.greenhouse.io/snyk
|
|
2524
|
+
notes: "Already tracked above — duplicate guard."
|
|
2525
|
+
tags: ["developer-tools", "us"]
|
|
2526
|
+
enabled: false
|
|
2527
|
+
|
|
2528
|
+
- name: Doppler
|
|
2529
|
+
careers_url: https://jobs.ashbyhq.com/doppler
|
|
2530
|
+
notes: "Secrets management for developers."
|
|
2531
|
+
tags: ["developer-tools", "security", "us"]
|
|
2532
|
+
enabled: true
|
|
2533
|
+
|
|
2534
|
+
- name: Resend
|
|
2535
|
+
careers_url: https://jobs.ashbyhq.com/resend
|
|
2536
|
+
notes: "Developer email API. YC-backed."
|
|
2537
|
+
tags: ["developer-tools", "us"]
|
|
2538
|
+
enabled: true
|
|
2539
|
+
|
|
2540
|
+
- name: Inngest
|
|
2541
|
+
careers_url: https://jobs.ashbyhq.com/inngest
|
|
2542
|
+
notes: "Event-driven durable functions."
|
|
2543
|
+
tags: ["developer-tools", "us"]
|
|
2544
|
+
enabled: true
|
|
2545
|
+
|
|
2546
|
+
- name: Trigger.dev
|
|
2547
|
+
careers_url: https://jobs.ashbyhq.com/trigger-dev
|
|
2548
|
+
notes: "Background jobs for serverless."
|
|
2549
|
+
tags: ["developer-tools", "us"]
|
|
2550
|
+
enabled: true
|
|
2551
|
+
|
|
2552
|
+
- name: Nango
|
|
2553
|
+
careers_url: https://jobs.ashbyhq.com/nango
|
|
2554
|
+
notes: "Unified API for integrations."
|
|
2555
|
+
tags: ["developer-tools", "us"]
|
|
2556
|
+
enabled: true
|
|
2557
|
+
|
|
2558
|
+
- name: Svix
|
|
2559
|
+
careers_url: https://jobs.ashbyhq.com/svix
|
|
2560
|
+
notes: "Webhooks-as-a-service."
|
|
2561
|
+
tags: ["developer-tools", "us"]
|
|
2562
|
+
enabled: true
|
|
2563
|
+
|
|
2564
|
+
# -- European Tech (extended) --
|
|
2565
|
+
|
|
2566
|
+
- name: Klarna
|
|
2567
|
+
careers_url: https://jobs.lever.co/klarna
|
|
2568
|
+
notes: "Stockholm. BNPL + AI shopping assistant."
|
|
2569
|
+
tags: ["eu", "fintech"]
|
|
2570
|
+
enabled: true
|
|
2571
|
+
|
|
2572
|
+
- name: Spotify (Engineering)
|
|
2573
|
+
careers_url: https://jobs.lever.co/spotify
|
|
2574
|
+
notes: "Already tracked above — duplicate guard."
|
|
2575
|
+
tags: ["eu"]
|
|
2576
|
+
enabled: false
|
|
2577
|
+
|
|
2578
|
+
- name: BlaBlaCar
|
|
2579
|
+
careers_url: https://jobs.lever.co/blablacar
|
|
2580
|
+
notes: "Paris. Carpooling + ML."
|
|
2581
|
+
tags: ["eu", "travel"]
|
|
2582
|
+
enabled: true
|
|
2583
|
+
|
|
2584
|
+
- name: Doctolib
|
|
2585
|
+
careers_url: https://careers.doctolib.com
|
|
2586
|
+
scan_method: websearch
|
|
2587
|
+
scan_query: '"doctolib" careers "AI" OR "ML" OR "Engineer" OR "Data"'
|
|
2588
|
+
notes: "Paris/Berlin. Healthcare booking + AI."
|
|
2589
|
+
tags: ["eu", "healthcare"]
|
|
2590
|
+
enabled: true
|
|
2591
|
+
|
|
2592
|
+
- name: Pitch
|
|
2593
|
+
careers_url: https://jobs.ashbyhq.com/pitch
|
|
2594
|
+
notes: "Berlin. Presentation software."
|
|
2595
|
+
tags: ["eu", "productivity"]
|
|
2596
|
+
enabled: true
|
|
2597
|
+
|
|
2598
|
+
- name: ContentSquare
|
|
2599
|
+
careers_url: https://job-boards.greenhouse.io/contentsquare
|
|
2600
|
+
notes: "Paris. Digital experience analytics + AI."
|
|
2601
|
+
tags: ["eu", "fintech", "us", "analytics"]
|
|
2602
|
+
enabled: true
|
|
2603
|
+
|
|
2604
|
+
- name: Dataiku
|
|
2605
|
+
careers_url: https://job-boards.greenhouse.io/dataiku
|
|
2606
|
+
api: https://boards-api.greenhouse.io/v1/boards/dataiku/jobs
|
|
2607
|
+
notes: "Paris/NYC. Enterprise AI platform."
|
|
2608
|
+
tags: ["eu", "mlops"]
|
|
2609
|
+
enabled: true
|
|
2610
|
+
|
|
2611
|
+
- name: Algolia
|
|
2612
|
+
careers_url: https://job-boards.greenhouse.io/algolia
|
|
2613
|
+
api: https://boards-api.greenhouse.io/v1/boards/algolia/jobs
|
|
2614
|
+
notes: "Paris. AI-powered search and recommendations."
|
|
2615
|
+
tags: ["eu", "ai-search", "developer-tools"]
|
|
2616
|
+
enabled: true
|
|
2617
|
+
|
|
2618
|
+
- name: Snorkel AI
|
|
2619
|
+
careers_url: https://job-boards.greenhouse.io/snorkelai
|
|
2620
|
+
api: https://boards-api.greenhouse.io/v1/boards/snorkelai/jobs
|
|
2621
|
+
notes: "Data-centric AI and labeling platform."
|
|
2622
|
+
tags: ["eu", "mlops", "us"]
|
|
2623
|
+
enabled: true
|
|
2624
|
+
|
|
2625
|
+
- name: Collibra
|
|
2626
|
+
careers_url: https://job-boards.greenhouse.io/collibra
|
|
2627
|
+
api: https://boards-api.greenhouse.io/v1/boards/collibra/jobs
|
|
2628
|
+
notes: "Brussels. Data intelligence + AI governance."
|
|
2629
|
+
tags: ["eu", "defense", "analytics", "compliance"]
|
|
2630
|
+
enabled: true
|
|
2631
|
+
|
|
2632
|
+
- name: MessageBird (Bird)
|
|
2633
|
+
careers_url: https://job-boards.greenhouse.io/messagebird
|
|
2634
|
+
notes: "Already tracked above — duplicate guard."
|
|
2635
|
+
tags: ["eu"]
|
|
2636
|
+
enabled: false
|
|
2637
|
+
|
|
2638
|
+
- name: Personio
|
|
2639
|
+
careers_url: https://job-boards.greenhouse.io/personio
|
|
2640
|
+
notes: "Munich. European HR platform."
|
|
2641
|
+
tags: ["eu", "hr-tech"]
|
|
2642
|
+
enabled: true
|
|
2643
|
+
|
|
2644
|
+
- name: Celonis
|
|
2645
|
+
careers_url: https://job-boards.greenhouse.io/celonis
|
|
2646
|
+
api: https://boards-api.greenhouse.io/v1/boards/celonis/jobs
|
|
2647
|
+
notes: "Munich. Process mining + AI."
|
|
2648
|
+
tags: ["eu", "automation", "analytics"]
|
|
2649
|
+
enabled: true
|
|
2650
|
+
|
|
2651
|
+
- name: UiPath
|
|
2652
|
+
careers_url: https://job-boards.greenhouse.io/uipath
|
|
2653
|
+
notes: "RPA and AI automation. Bucharest + global."
|
|
2654
|
+
tags: ["eu", "rpa", "automation"]
|
|
2655
|
+
enabled: true
|
|
2656
|
+
|
|
2657
|
+
- name: Typeform
|
|
2658
|
+
careers_url: https://job-boards.greenhouse.io/typeform
|
|
2659
|
+
api: https://boards-api.greenhouse.io/v1/boards/typeform/jobs
|
|
2660
|
+
notes: "Barcelona. Forms and surveys + AI."
|
|
2661
|
+
tags: ["eu", "enterprise-saas"]
|
|
2662
|
+
enabled: true
|
|
2663
|
+
|
|
2664
|
+
# -- Israel Tech --
|
|
2665
|
+
|
|
2666
|
+
- name: Wix
|
|
2667
|
+
careers_url: https://careers.wix.com
|
|
2668
|
+
scan_method: websearch
|
|
2669
|
+
scan_query: 'site:careers.wix.com "AI" OR "ML" OR "Engineer" OR "Solutions"'
|
|
2670
|
+
notes: "Tel Aviv. Web platform + AI site builder."
|
|
2671
|
+
tags: ["israel", "developer-tools", "no-code"]
|
|
2672
|
+
enabled: true
|
|
2673
|
+
|
|
2674
|
+
- name: Check Point
|
|
2675
|
+
careers_url: https://careers.checkpoint.com
|
|
2676
|
+
scan_method: websearch
|
|
2677
|
+
scan_query: '"check point" careers "AI" OR "ML" OR "Solutions" OR "Architect"'
|
|
2678
|
+
notes: "Tel Aviv. Cybersecurity + AI threat prevention."
|
|
2679
|
+
tags: ["israel", "security"]
|
|
2680
|
+
enabled: true
|
|
2681
|
+
|
|
2682
|
+
- name: Taboola
|
|
2683
|
+
careers_url: https://job-boards.greenhouse.io/taboola
|
|
2684
|
+
api: https://boards-api.greenhouse.io/v1/boards/taboola/jobs
|
|
2685
|
+
notes: "Tel Aviv. Content discovery + AI recommendations."
|
|
2686
|
+
tags: ["israel", "media"]
|
|
2687
|
+
enabled: true
|
|
2688
|
+
|
|
2689
|
+
# -- India Tech (Global Eng Hubs) --
|
|
2690
|
+
|
|
2691
|
+
- name: Razorpay
|
|
2692
|
+
careers_url: https://job-boards.greenhouse.io/razorpay
|
|
2693
|
+
notes: "Bangalore. Payments + AI fraud detection."
|
|
2694
|
+
tags: ["apac", "rpa", "fintech"]
|
|
2695
|
+
enabled: true
|
|
2696
|
+
|
|
2697
|
+
- name: Postman (India)
|
|
2698
|
+
careers_url: https://job-boards.greenhouse.io/postman
|
|
2699
|
+
notes: "Already tracked above — duplicate guard."
|
|
2700
|
+
tags: ["apac"]
|
|
2701
|
+
enabled: false
|
|
2702
|
+
|
|
2703
|
+
# -- Horizontal AI Platforms --
|
|
2704
|
+
|
|
2705
|
+
- name: Comet ML
|
|
2706
|
+
careers_url: https://job-boards.greenhouse.io/cometml
|
|
2707
|
+
notes: "ML experiment tracking and model monitoring."
|
|
2708
|
+
tags: ["mlops", "us"]
|
|
2709
|
+
enabled: true
|
|
2710
|
+
|
|
2711
|
+
- name: Neptune.ai
|
|
2712
|
+
careers_url: https://jobs.lever.co/neptune-ai
|
|
2713
|
+
notes: "ML metadata store and experiment tracking. Warsaw."
|
|
2714
|
+
tags: ["mlops", "eu"]
|
|
2715
|
+
enabled: true
|
|
2716
|
+
|
|
2717
|
+
- name: Determined AI (HPE)
|
|
2718
|
+
careers_url: https://careers.hpe.com
|
|
2719
|
+
scan_method: websearch
|
|
2720
|
+
scan_query: '"determined ai" OR "hpe" "ML" OR "training" OR "AI platform"'
|
|
2721
|
+
notes: "HPE-owned. ML training platform."
|
|
2722
|
+
tags: ["mlops", "us"]
|
|
2723
|
+
enabled: true
|
|
2724
|
+
|
|
2725
|
+
- name: Labelbox
|
|
2726
|
+
careers_url: https://job-boards.greenhouse.io/labelbox
|
|
2727
|
+
api: https://boards-api.greenhouse.io/v1/boards/labelbox/jobs
|
|
2728
|
+
notes: "Data labeling and annotation for AI."
|
|
2729
|
+
tags: ["mlops", "us"]
|
|
2730
|
+
enabled: true
|
|
2731
|
+
|
|
2732
|
+
- name: Humanloop
|
|
2733
|
+
careers_url: https://jobs.ashbyhq.com/humanloop
|
|
2734
|
+
notes: "London. LLM evaluation and prompt management."
|
|
2735
|
+
tags: ["mlops", "llmops", "uk"]
|
|
2736
|
+
enabled: true
|
|
2737
|
+
|
|
2738
|
+
- name: Weights & Biases
|
|
2739
|
+
careers_url: https://jobs.lever.co/wandb
|
|
2740
|
+
notes: "Already tracked above — duplicate guard."
|
|
2741
|
+
tags: ["mlops", "us"]
|
|
2742
|
+
enabled: false
|
|
2743
|
+
|
|
2744
|
+
# -- Vertical AI (Finance, Insurance, Construction) --
|
|
2745
|
+
|
|
2746
|
+
- name: Eigen Technologies
|
|
2747
|
+
careers_url: https://job-boards.greenhouse.io/eigentechnologies
|
|
2748
|
+
notes: "London. Document AI for financial services."
|
|
2749
|
+
tags: ["insurance", "enterprise-saas", "construction", "fintech", "uk"]
|
|
2750
|
+
enabled: true
|
|
2751
|
+
|
|
2752
|
+
- name: Featurespace
|
|
2753
|
+
careers_url: https://featurespace.com/careers
|
|
2754
|
+
scan_method: websearch
|
|
2755
|
+
scan_query: '"featurespace" careers "AI" OR "ML" OR "Engineer"'
|
|
2756
|
+
notes: "Cambridge UK. AI fraud prevention."
|
|
2757
|
+
tags: ["insurance", "enterprise-saas", "construction", "fintech", "uk"]
|
|
2758
|
+
enabled: true
|
|
2759
|
+
|
|
2760
|
+
- name: Procore
|
|
2761
|
+
careers_url: https://job-boards.greenhouse.io/procore
|
|
2762
|
+
notes: "Construction management + AI features."
|
|
2763
|
+
tags: ["insurance", "enterprise-saas", "construction", "us"]
|
|
2764
|
+
enabled: true
|
|
2765
|
+
|
|
2766
|
+
- name: Veeva Systems
|
|
2767
|
+
careers_url: https://careers.veeva.com
|
|
2768
|
+
scan_method: websearch
|
|
2769
|
+
scan_query: 'site:careers.veeva.com "AI" OR "ML" OR "Data" OR "Engineer"'
|
|
2770
|
+
notes: "Life sciences cloud + AI. Remote."
|
|
2771
|
+
tags: ["insurance", "enterprise-saas", "construction", "healthcare", "remote-first"]
|
|
2772
|
+
enabled: true
|
|
2773
|
+
|
|
2774
|
+
# -- Identity & Trust --
|
|
2775
|
+
|
|
2776
|
+
- name: Persona
|
|
2777
|
+
careers_url: https://job-boards.greenhouse.io/persona
|
|
2778
|
+
notes: "Identity verification + AI."
|
|
2779
|
+
tags: ["identity", "us"]
|
|
2780
|
+
enabled: true
|
|
2781
|
+
|
|
2782
|
+
- name: Jumio
|
|
2783
|
+
careers_url: https://job-boards.greenhouse.io/jumio
|
|
2784
|
+
api: https://boards-api.greenhouse.io/v1/boards/jumio/jobs
|
|
2785
|
+
notes: "AI identity verification and eKYC."
|
|
2786
|
+
tags: ["identity", "us"]
|
|
2787
|
+
enabled: true
|
|
2788
|
+
|
|
2789
|
+
- name: Onfido
|
|
2790
|
+
careers_url: https://job-boards.greenhouse.io/onfido
|
|
2791
|
+
notes: "London. AI identity verification. Entrust-acquired."
|
|
2792
|
+
tags: ["identity", "uk"]
|
|
2793
|
+
enabled: true
|
|
2794
|
+
|
|
2795
|
+
# -- Networking & Edge --
|
|
2796
|
+
|
|
2797
|
+
- name: Tailscale
|
|
2798
|
+
careers_url: https://job-boards.greenhouse.io/tailscale
|
|
2799
|
+
api: https://boards-api.greenhouse.io/v1/boards/tailscale/jobs
|
|
2800
|
+
notes: "WireGuard-based mesh VPN. Remote."
|
|
2801
|
+
tags: ["networking", "remote-first"]
|
|
2802
|
+
enabled: true
|
|
2803
|
+
|
|
2804
|
+
- name: Zscaler
|
|
2805
|
+
careers_url: https://job-boards.greenhouse.io/zscaler
|
|
2806
|
+
notes: "Already tracked above — duplicate guard."
|
|
2807
|
+
tags: ["networking", "security", "cloud", "us"]
|
|
2808
|
+
enabled: false
|
|
2809
|
+
|
|
2810
|
+
- name: Cloudinary
|
|
2811
|
+
careers_url: https://job-boards.greenhouse.io/cloudinary
|
|
2812
|
+
notes: "Media management + AI transformations."
|
|
2813
|
+
tags: ["networking", "developer-tools", "israel"]
|
|
2814
|
+
enabled: true
|
|
2815
|
+
|
|
2816
|
+
- name: Imgix
|
|
2817
|
+
careers_url: https://jobs.ashbyhq.com/imgix
|
|
2818
|
+
notes: "Image optimization and delivery."
|
|
2819
|
+
tags: ["networking", "developer-tools", "us"]
|
|
2820
|
+
enabled: true
|
|
2821
|
+
|
|
2822
|
+
# -- Testing & QA --
|
|
2823
|
+
|
|
2824
|
+
- name: BrowserStack
|
|
2825
|
+
careers_url: https://job-boards.greenhouse.io/browserstack
|
|
2826
|
+
notes: "Testing platform + AI test generation."
|
|
2827
|
+
tags: ["testing", "apac"]
|
|
2828
|
+
enabled: true
|
|
2829
|
+
|
|
2830
|
+
- name: Sauce Labs
|
|
2831
|
+
careers_url: https://job-boards.greenhouse.io/saucelabs
|
|
2832
|
+
api: https://boards-api.greenhouse.io/v1/boards/saucelabs/jobs
|
|
2833
|
+
notes: "Automated testing cloud."
|
|
2834
|
+
tags: ["testing", "us"]
|
|
2835
|
+
enabled: true
|
|
2836
|
+
|
|
2837
|
+
- name: Testim (Tricentis)
|
|
2838
|
+
careers_url: https://job-boards.greenhouse.io/testim
|
|
2839
|
+
notes: "AI-powered test automation."
|
|
2840
|
+
tags: ["testing", "us"]
|
|
2841
|
+
enabled: true
|
|
2842
|
+
|
|
2843
|
+
# -- Open Source Companies --
|
|
2844
|
+
|
|
2845
|
+
- name: GitPod
|
|
2846
|
+
careers_url: https://jobs.ashbyhq.com/gitpod
|
|
2847
|
+
notes: "Cloud development environments. Remote."
|
|
2848
|
+
tags: ["open-source", "developer-tools", "remote-first"]
|
|
2849
|
+
enabled: true
|
|
2850
|
+
|
|
2851
|
+
- name: Coder
|
|
2852
|
+
careers_url: https://jobs.ashbyhq.com/coder
|
|
2853
|
+
notes: "Remote development environments. Open-source."
|
|
2854
|
+
tags: ["open-source", "developer-tools", "remote-first"]
|
|
2855
|
+
enabled: true
|
|
2856
|
+
|
|
2857
|
+
- name: Meilisearch
|
|
2858
|
+
careers_url: https://jobs.lever.co/meilisearch
|
|
2859
|
+
notes: "Paris. Open-source search engine."
|
|
2860
|
+
tags: ["open-source", "developer-tools", "ai-search", "eu"]
|
|
2861
|
+
enabled: true
|
|
2862
|
+
|
|
2863
|
+
- name: MinIO
|
|
2864
|
+
careers_url: https://min.io/careers
|
|
2865
|
+
scan_method: websearch
|
|
2866
|
+
scan_query: '"minio" careers "engineer" OR "solutions" OR "AI"'
|
|
2867
|
+
notes: "Object storage for AI/ML. Open-source."
|
|
2868
|
+
tags: ["open-source", "developer-tools", "cloud", "us"]
|
|
2869
|
+
enabled: true
|
|
2870
|
+
|
|
2871
|
+
# -- Blockchain / Web3 AI (opt-in) --
|
|
2872
|
+
|
|
2873
|
+
- name: Worldcoin
|
|
2874
|
+
careers_url: https://job-boards.greenhouse.io/worldcoinorg
|
|
2875
|
+
notes: "World ID + AI proof-of-personhood. Sam Altman."
|
|
2876
|
+
tags: ["identity", "us"]
|
|
2877
|
+
enabled: false
|
|
2878
|
+
|
|
2879
|
+
# -- Media & Content --
|
|
2880
|
+
|
|
2881
|
+
- name: Reddit
|
|
2882
|
+
careers_url: https://job-boards.greenhouse.io/reddit
|
|
2883
|
+
api: https://boards-api.greenhouse.io/v1/boards/reddit/jobs
|
|
2884
|
+
notes: "Social platform + ML/AI features."
|
|
2885
|
+
tags: ["media", "us"]
|
|
2886
|
+
enabled: true
|
|
2887
|
+
|
|
2888
|
+
- name: Pinterest
|
|
2889
|
+
careers_url: https://job-boards.greenhouse.io/pinterest
|
|
2890
|
+
api: https://boards-api.greenhouse.io/v1/boards/pinterest/jobs
|
|
2891
|
+
notes: "Visual discovery + ML recommendations."
|
|
2892
|
+
tags: ["media", "e-commerce", "us"]
|
|
2893
|
+
enabled: true
|
|
2894
|
+
|
|
2895
|
+
- name: Snap
|
|
2896
|
+
careers_url: https://job-boards.greenhouse.io/snap
|
|
2897
|
+
notes: "Snapchat + AR/AI (My AI assistant)."
|
|
2898
|
+
tags: ["media", "ai-creative", "us"]
|
|
2899
|
+
enabled: true
|
|
2900
|
+
|
|
2901
|
+
- name: The New York Times
|
|
2902
|
+
careers_url: https://nytimes.wd5.myworkdayjobs.com
|
|
2903
|
+
scan_method: websearch
|
|
2904
|
+
scan_query: '"new york times" careers "AI" OR "ML" OR "Data" OR "Engineer"'
|
|
2905
|
+
notes: "Media + AI/ML for recommendations and content."
|
|
2906
|
+
tags: ["media", "us"]
|
|
2907
|
+
enabled: true
|
|
2908
|
+
|
|
2909
|
+
- name: Substack
|
|
2910
|
+
careers_url: https://jobs.ashbyhq.com/substack
|
|
2911
|
+
notes: "Newsletter platform."
|
|
2912
|
+
tags: ["media", "us"]
|
|
2913
|
+
enabled: true
|
|
2914
|
+
|
|
2915
|
+
# -- Food & AgTech --
|
|
2916
|
+
|
|
2917
|
+
- name: Toast
|
|
2918
|
+
careers_url: https://job-boards.greenhouse.io/toast
|
|
2919
|
+
api: https://boards-api.greenhouse.io/v1/boards/toast/jobs
|
|
2920
|
+
notes: "Restaurant tech + AI features."
|
|
2921
|
+
tags: ["food-tech", "us"]
|
|
2922
|
+
enabled: true
|
|
2923
|
+
|
|
2924
|
+
- name: Grubhub (Just Eat Takeaway)
|
|
2925
|
+
careers_url: https://job-boards.greenhouse.io/grubhub
|
|
2926
|
+
notes: "Food delivery + ML optimization."
|
|
2927
|
+
tags: ["food-tech", "logistics", "us"]
|
|
2928
|
+
enabled: true
|
|
2929
|
+
|
|
2930
|
+
# -- Construction & Industrial --
|
|
2931
|
+
|
|
2932
|
+
- name: Built Robotics
|
|
2933
|
+
careers_url: https://jobs.lever.co/builtrobotics
|
|
2934
|
+
notes: "Autonomous construction equipment."
|
|
2935
|
+
tags: ["construction", "robotics", "autonomous", "us"]
|
|
2936
|
+
enabled: true
|
|
2937
|
+
|
|
2938
|
+
- name: Samsara
|
|
2939
|
+
careers_url: https://job-boards.greenhouse.io/samsara
|
|
2940
|
+
api: https://boards-api.greenhouse.io/v1/boards/samsara/jobs
|
|
2941
|
+
notes: "IoT + AI for physical operations."
|
|
2942
|
+
tags: ["construction", "logistics", "us"]
|
|
2943
|
+
enabled: true
|
|
2944
|
+
|
|
2945
|
+
# -- Government & Civic Tech --
|
|
2946
|
+
|
|
2947
|
+
- name: Govini
|
|
2948
|
+
careers_url: https://job-boards.greenhouse.io/govini
|
|
2949
|
+
api: https://boards-api.greenhouse.io/v1/boards/govini/jobs
|
|
2950
|
+
notes: "AI analytics for defense and government."
|
|
2951
|
+
tags: ["govtech", "defense", "us"]
|
|
2952
|
+
enabled: true
|
|
2953
|
+
|
|
2954
|
+
- name: Primer AI
|
|
2955
|
+
careers_url: https://job-boards.greenhouse.io/primerai
|
|
2956
|
+
api: https://boards-api.greenhouse.io/v1/boards/primerai/jobs
|
|
2957
|
+
notes: "NLP for defense and intelligence."
|
|
2958
|
+
tags: ["govtech", "defense", "us"]
|
|
2959
|
+
enabled: true
|
|
2960
|
+
|
|
2961
|
+
# -- Misc High-Growth Tech --
|
|
2962
|
+
|
|
2963
|
+
- name: Canva (Design)
|
|
2964
|
+
careers_url: https://job-boards.greenhouse.io/canva
|
|
2965
|
+
notes: "Already tracked above — duplicate guard."
|
|
2966
|
+
tags: ["developer-tools", "us"]
|
|
2967
|
+
enabled: false
|
|
2968
|
+
|
|
2969
|
+
- name: Grammarly
|
|
2970
|
+
careers_url: https://job-boards.greenhouse.io/grammarly
|
|
2971
|
+
notes: "AI writing assistant. Remote-first."
|
|
2972
|
+
tags: ["developer-tools", "ai-coding", "ai-creative", "remote-first"]
|
|
2973
|
+
enabled: true
|
|
2974
|
+
|
|
2975
|
+
- name: Webflow
|
|
2976
|
+
careers_url: https://job-boards.greenhouse.io/webflow
|
|
2977
|
+
api: https://boards-api.greenhouse.io/v1/boards/webflow/jobs
|
|
2978
|
+
notes: "No-code web platform + AI features."
|
|
2979
|
+
tags: ["developer-tools", "no-code", "us"]
|
|
2980
|
+
enabled: true
|
|
2981
|
+
|
|
2982
|
+
- name: Liveblocks
|
|
2983
|
+
careers_url: https://jobs.ashbyhq.com/liveblocks
|
|
2984
|
+
notes: "Real-time collaboration infrastructure."
|
|
2985
|
+
tags: ["developer-tools", "fintech", "us", "collaboration"]
|
|
2986
|
+
enabled: true
|
|
2987
|
+
|
|
2988
|
+
- name: Convex
|
|
2989
|
+
careers_url: https://jobs.ashbyhq.com/convex
|
|
2990
|
+
notes: "Reactive backend-as-a-service."
|
|
2991
|
+
tags: ["developer-tools", "database", "us"]
|
|
2992
|
+
enabled: true
|
|
2993
|
+
|
|
2994
|
+
- name: Railway
|
|
2995
|
+
careers_url: https://jobs.ashbyhq.com/railway
|
|
2996
|
+
notes: "Cloud deployment platform for developers."
|
|
2997
|
+
tags: ["developer-tools", "cloud", "us"]
|
|
2998
|
+
enabled: true
|
|
2999
|
+
|
|
3000
|
+
- name: Deno
|
|
3001
|
+
careers_url: https://jobs.ashbyhq.com/deno
|
|
3002
|
+
notes: "JavaScript/TypeScript runtime + Deploy."
|
|
3003
|
+
tags: ["developer-tools", "open-source", "us"]
|
|
3004
|
+
enabled: true
|
|
3005
|
+
|
|
3006
|
+
- name: Val Town
|
|
3007
|
+
careers_url: https://jobs.ashbyhq.com/valtown
|
|
3008
|
+
notes: "Social programming and serverless functions."
|
|
3009
|
+
tags: ["developer-tools", "us"]
|
|
3010
|
+
enabled: true
|
|
3011
|
+
|
|
3012
|
+
- name: Vercel
|
|
3013
|
+
careers_url: https://job-boards.greenhouse.io/vercel
|
|
3014
|
+
notes: "Already tracked above — duplicate guard."
|
|
3015
|
+
tags: ["developer-tools", "us"]
|
|
3016
|
+
enabled: false
|
|
3017
|
+
|
|
3018
|
+
- name: Sanity
|
|
3019
|
+
careers_url: https://jobs.ashbyhq.com/sanity
|
|
3020
|
+
notes: "Composable content platform."
|
|
3021
|
+
tags: ["developer-tools", "us"]
|
|
3022
|
+
enabled: true
|
|
3023
|
+
|
|
3024
|
+
- name: Contentful
|
|
3025
|
+
careers_url: https://job-boards.greenhouse.io/contentful
|
|
3026
|
+
api: https://boards-api.greenhouse.io/v1/boards/contentful/jobs
|
|
3027
|
+
notes: "Berlin. Headless CMS + AI content."
|
|
3028
|
+
tags: ["developer-tools", "eu"]
|
|
3029
|
+
enabled: true
|
|
3030
|
+
|
|
3031
|
+
- name: Storyblok
|
|
3032
|
+
careers_url: https://jobs.ashbyhq.com/storyblok
|
|
3033
|
+
notes: "Linz/Remote. Headless CMS."
|
|
3034
|
+
tags: ["developer-tools", "eu"]
|
|
3035
|
+
enabled: true
|
|
3036
|
+
|
|
3037
|
+
- name: PagerDuty
|
|
3038
|
+
careers_url: https://job-boards.greenhouse.io/pagerduty
|
|
3039
|
+
api: https://boards-api.greenhouse.io/v1/boards/pagerduty/jobs
|
|
3040
|
+
notes: "Incident management + AIOps."
|
|
3041
|
+
tags: ["developer-tools", "observability", "us"]
|
|
3042
|
+
enabled: true
|
|
3043
|
+
|
|
3044
|
+
- name: OpsGenie (Atlassian)
|
|
3045
|
+
careers_url: https://www.atlassian.com/company/careers
|
|
3046
|
+
notes: "Already tracked Atlassian above."
|
|
3047
|
+
tags: ["developer-tools", "us"]
|
|
3048
|
+
enabled: false
|
|
3049
|
+
|
|
3050
|
+
- name: FireHydrant
|
|
3051
|
+
careers_url: https://job-boards.greenhouse.io/firehydrant
|
|
3052
|
+
notes: "Incident management platform."
|
|
3053
|
+
tags: ["developer-tools", "observability", "us"]
|
|
3054
|
+
enabled: true
|
|
3055
|
+
|
|
3056
|
+
- name: Rootly
|
|
3057
|
+
careers_url: https://jobs.ashbyhq.com/rootly
|
|
3058
|
+
notes: "Incident management in Slack."
|
|
3059
|
+
tags: ["developer-tools", "observability", "us"]
|
|
3060
|
+
enabled: true
|
|
3061
|
+
|
|
3062
|
+
- name: Vanta
|
|
3063
|
+
careers_url: https://job-boards.greenhouse.io/vanta
|
|
3064
|
+
notes: "Automated compliance (SOC 2, ISO) + AI."
|
|
3065
|
+
tags: ["developer-tools", "compliance", "security", "us"]
|
|
3066
|
+
enabled: true
|
|
3067
|
+
|
|
3068
|
+
- name: Drata
|
|
3069
|
+
careers_url: https://job-boards.greenhouse.io/drata
|
|
3070
|
+
notes: "Compliance automation platform."
|
|
3071
|
+
tags: ["developer-tools", "compliance", "us"]
|
|
3072
|
+
enabled: true
|
|
3073
|
+
|
|
3074
|
+
- name: Chainguard
|
|
3075
|
+
careers_url: https://job-boards.greenhouse.io/chainguard
|
|
3076
|
+
api: https://boards-api.greenhouse.io/v1/boards/chainguard/jobs
|
|
3077
|
+
notes: "Supply chain security and distroless images."
|
|
3078
|
+
tags: ["developer-tools", "compliance", "security", "open-source", "us"]
|
|
3079
|
+
enabled: true
|
|
3080
|
+
|
|
3081
|
+
- name: Teleport
|
|
3082
|
+
careers_url: https://job-boards.greenhouse.io/teleport
|
|
3083
|
+
notes: "Infrastructure access platform."
|
|
3084
|
+
tags: ["developer-tools", "security", "us"]
|
|
3085
|
+
enabled: true
|
|
3086
|
+
|
|
3087
|
+
- name: Cockroach Labs
|
|
3088
|
+
careers_url: https://job-boards.greenhouse.io/cockroachlabs
|
|
3089
|
+
notes: "Already tracked above — duplicate guard."
|
|
3090
|
+
tags: ["developer-tools", "us"]
|
|
3091
|
+
enabled: false
|
|
3092
|
+
|
|
3093
|
+
- name: Materialize
|
|
3094
|
+
careers_url: https://job-boards.greenhouse.io/materialize
|
|
3095
|
+
api: https://boards-api.greenhouse.io/v1/boards/materialize/jobs
|
|
3096
|
+
notes: "Streaming SQL database."
|
|
3097
|
+
tags: ["developer-tools", "database", "us"]
|
|
3098
|
+
enabled: true
|
|
3099
|
+
|
|
3100
|
+
- name: RisingWave
|
|
3101
|
+
careers_url: https://jobs.ashbyhq.com/risingwave
|
|
3102
|
+
notes: "Streaming database (Postgres-compatible)."
|
|
3103
|
+
tags: ["developer-tools", "database", "us"]
|
|
3104
|
+
enabled: true
|
|
3105
|
+
|
|
3106
|
+
- name: Redpanda
|
|
3107
|
+
careers_url: https://jobs.ashbyhq.com/redpanda-data
|
|
3108
|
+
notes: "Kafka-compatible streaming platform."
|
|
3109
|
+
tags: ["developer-tools", "open-source", "us"]
|
|
3110
|
+
enabled: true
|
|
3111
|
+
|
|
3112
|
+
- name: WarpStream
|
|
3113
|
+
careers_url: https://jobs.ashbyhq.com/warpstream
|
|
3114
|
+
notes: "Confluent-acquired. Kafka-compatible streaming."
|
|
3115
|
+
tags: ["developer-tools", "us"]
|
|
3116
|
+
enabled: true
|
|
3117
|
+
|
|
3118
|
+
- name: Buf
|
|
3119
|
+
careers_url: https://jobs.ashbyhq.com/buf
|
|
3120
|
+
notes: "Protocol buffers tooling and BSR."
|
|
3121
|
+
tags: ["developer-tools", "us"]
|
|
3122
|
+
enabled: true
|
|
3123
|
+
|
|
3124
|
+
- name: Hasura
|
|
3125
|
+
careers_url: https://job-boards.greenhouse.io/hasura
|
|
3126
|
+
notes: "Instant GraphQL APIs + AI connectors."
|
|
3127
|
+
tags: ["developer-tools", "open-source", "us"]
|
|
3128
|
+
enabled: true
|
|
3129
|
+
|
|
3130
|
+
- name: Prisma
|
|
3131
|
+
careers_url: https://jobs.ashbyhq.com/prisma
|
|
3132
|
+
notes: "Berlin. ORM and data access for Node/TypeScript."
|
|
3133
|
+
tags: ["developer-tools", "open-source", "eu"]
|
|
3134
|
+
enabled: true
|
|
3135
|
+
|
|
3136
|
+
- name: Drizzle
|
|
3137
|
+
careers_url: https://jobs.ashbyhq.com/drizzle
|
|
3138
|
+
notes: "TypeScript ORM. Remote."
|
|
3139
|
+
tags: ["developer-tools", "open-source", "remote-first"]
|
|
3140
|
+
enabled: true
|