---
title: "Remote Job Alert — Auto-notify when new crypto, blockchain or Rust jobs appear on RemoteOK"
description: "Fetch this URL using the http tool:\nhttps://remoteok.com/api\n\nParse the JSON response. Filter jobs where the job TITLE contains ANY of these keywords (case-insensitive):\n- crypto\n- blockchain\n- rust\n- web3\n- NEAR\n- DeFi\n- solidity\n\nOR where at least 2 of the first 5 tags match these keywords.\n\nThis double-check avoids false positives where unrelated companies accidentally have one crypto tag.\n\nFor each matching job extract:\n- Job title\n- Company\n- Tags (first 5 only)\n- URL (https://remoteok.com/remote-jobs/ + slug)\n- Date posted\n\nThen read memory at jobs/seen.md using memory_read.\nCompare found jobs against seen list.\nOnly keep jobs NOT already in seen.md.\n\nIf there are new jobs:\n1. Send Telegram message in this format:\n\n\"💼 New Remote Jobs Alert\n\n1. [Job Title] — [Company]\n🏷 [tags]\n🔗 [URL]\n\n2. [Job Title] — [Company]\n🏷 [tags]\n🔗 [URL]\"\n\n2. Append new job URLs to jobs/seen.md using memory_write.\n\nIf no new jobs: reply HEARTBEAT_OK and stop."
canonical: "https://hub.ironclaw.com/usecases/remote-job-alert-auto-notify-when-new-crypto-blockchain-or-rust-jobs-appear-on-remoteok"
markdown: "https://hub.ironclaw.com/usecases/remote-job-alert-auto-notify-when-new-crypto-blockchain-or-rust-jobs-appear-on-remoteok.md"
type: "use-case"
categories: ["Personal assistant","Research","Automation"]
author: "Evgeny"
---

# Remote Job Alert — Auto-notify when new crypto, blockchain or Rust jobs appear on RemoteOK

## Example Prompt

> Fetch this URL using the http tool:
> https://remoteok.com/api
> 
> Parse the JSON response. Filter jobs where the job TITLE contains ANY of these keywords (case-insensitive):
> - crypto
> - blockchain
> - rust
> - web3
> - NEAR
> - DeFi
> - solidity
> 
> OR where at least 2 of the first 5 tags match these keywords.
> 
> This double-check avoids false positives where unrelated companies accidentally have one crypto tag.
> 
> For each matching job extract:
> - Job title
> - Company
> - Tags (first 5 only)
> - URL (https://remoteok.com/remote-jobs/ + slug)
> - Date posted
> 
> Then read memory at jobs/seen.md using memory_read.
> Compare found jobs against seen list.
> Only keep jobs NOT already in seen.md.
> 
> If there are new jobs:
> 1. Send Telegram message in this format:
> 
> "💼 New Remote Jobs Alert
> 
> 1. [Job Title] — [Company]
> 🏷 [tags]
> 🔗 [URL]
> 
> 2. [Job Title] — [Company]
> 🏷 [tags]
> 🔗 [URL]"
> 
> 2. Append new job URLs to jobs/seen.md using memory_write.
> 
> If no new jobs: reply HEARTBEAT_OK and stop.

## What the Agent Does

Every 6 hours the agent fetches all remote jobs from RemoteOK's public API and filters positions where the title or at least 2 tags match crypto-related keywords (crypto, blockchain, rust, web3, NEAR, DeFi, solidity). It checks against a memory file of already-seen job URLs to avoid duplicate alerts. Only genuinely new matching jobs trigger a Telegram message with title, company, tags, and a direct link. After alerting, it saves the new URLs to memory so you never get the same job twice.

![Image](https://github.com/user-attachments/assets/954754d7-d975-4cb8-9962-ce6e372b04d7)

## Skills and Tools

- http
- memory_read
- memory_write
- message
- routine/cron

## Categories

- Personal assistant
- Research
- Automation

## Links

- [HTML page](https://hub.ironclaw.com/usecases/remote-job-alert-auto-notify-when-new-crypto-blockchain-or-rust-jobs-appear-on-remoteok)

