| Rank | Title | Company | Location | Added | Posted | Freshness | Responsive | Score |
|---|
Trending web3 repositories on GitHub from the past week
Channels are found by mining the ones already being read for forwards and mentions, then probing each new name once. A channel is kept only if it is both alive and mostly job ads that name a role — content and recency are judged separately, so a dormant job board is rejected however good its posts.
| Channel | Status | Score | Posts | Last post | Jobs | Found via | Verdict |
|---|
Processing Pipeline
Live Status
Recently Discovered Companies
Crawl History
| Run | Status | Started | Duration | Found | New | Updated | Gone | Errors |
|---|
This indexer automatically finds and tracks remote-friendly software jobs. It visits company career pages directly, extracts job listings, scores them, and sends alerts via Telegram. Here's how each piece works.
Finding Companies
We start with a seed list of known web3 companies (Binance, Coinbase, Uniswap, etc). Then we discover more from multiple sources:
- Job aggregators — we scrape web3.career, crypto.jobs, cryptojobslist, remoteok, and others. When they mention a company we don't know, we add it.
- CoinGecko & DeFiLlama — top crypto projects by market cap and TVL.
- GitHub Topics — repos tagged with ethereum, solana, web3, defi.
- Snapshot DAOs — governance organizations.
- Alchemy Dapp Store — registered dApps.
Companies are admitted from job-bearing sources without an industry gate; useful remote software roles are kept whether or not the employer identifies as web3.
Detecting Career Pages
Most companies don't put job listings on their homepage. We need to find the actual careers page. The system tries several strategies:
- Common paths — checks /careers, /jobs, /join, /work-with-us, and similar URLs on the company website.
- ATS platform detection — looks for links to Greenhouse, Lever, Ashby, Workable, or Comeet on the company site.
- ATS probing — tries common board URLs like
boards.greenhouse.io/{slug}orjobs.lever.co/{slug}to see if the company has an account. - Browser rendering — for JavaScript-heavy sites (SPAs), we launch a headless browser to render the page and find career links.
Crawling Jobs
Every 30 minutes, we crawl all companies. The order matters — we crawl high-yield companies first:
- ATS-backed companies (Greenhouse, Lever, Ashby, Comeet) — these have structured APIs that return clean job data. Highest success rate.
- Workable companies — no public API, so we render the page in a browser.
- Generic companies — we render their careers page and look for structured data (JSON-LD) or parse the HTML directly.
For each company, we fetch the careers page, parse out individual job listings, and store them. If a job disappears for 3 consecutive crawls, we mark it as gone.
Parsing Job Data
Each ATS platform returns data differently. We have dedicated parsers:
Remote Scoring
Not every job is remote. We analyze each listing and assign a remote score from 0 to 100:
- 90–100 — explicitly remote worldwide ("Remote", "Anywhere")
- 55–89 — remote but region-limited ("Remote US", "Remote Europe")
- 30–54 — hybrid or possibly remote (mentions "flexible", "WFH")
- 0–29 — on-site only (these are filtered out)
We also detect the remote scope: worldwide, US, Europe, APAC, or LATAM. The location field, job title, and description snippet all feed into this score.
Freshness & Ranking
Each job gets a composite rank (0–100) that determines its position in search results. The formula:
The freshness score uses the best available date, capped at the date we first saw the job so an ATS edit cannot make an old listing look newly posted.
Filtering Out Noise
Not everything we discover is a real hiring company. We skip:
- Telegram bots — TON ecosystem entries where the "website" is a t.me link.
- OSS libraries — GitHub repos tagged web3 but aren't companies (ethers.js, foundry, etc).
- Blacklisted entities — known non-hiring entries like wrapped tokens, bridge contracts, stablecoins.
- Duplicates — companies sharing the same website domain are merged (e.g., "Aave" from DeFiLlama and "Aave" from CoinGecko).
Exploring
Every 6 hours, we run a deeper exploration pass:
- Website discovery — for companies without a known website, search for it.
- ATS re-probing — companies can switch platforms, so we periodically re-check.
- New source scanning — probe CoinGecko, DeFiLlama, GitHub Topics, and Snapshot for new companies.