End-to-end pipeline for scraping X/Twitter for GTM/DevRel tech startup jobs using Apify, or optionally TweetClaw for OpenClaw and Hermes Tweet for Hermes Agent, then validating them against an Ideal Customer Profile (ICP) using Gemini's native Google Search Grounding. Use this skill when OpenClaw needs to find developer-first, funded startups actively hiring for GTM, DevRel, or Growth roles.
npx skills add https://github.com/Varnan-Tech/opendirectory --skill twitter-GTM-find-Skill
This skill provides an automated pipeline to scrape Twitter for Developer-First startups hiring GTM/DevRel roles, followed by an automatic web-search verification step to validate them against our Ideal Customer Profile (ICP).
You can run the full pipeline using the executable Node.js project bundled in scripts/.
cd scripts
npm install
npx ts-node src/index.ts
Requirements:
A .env file must be present at the workspace root with:
APIFY_API_TOKEN (Apify account access)GEMINI_API_KEY (Gemini 3 Flash Preview with Search Grounding)MAX_POSTS=20 (Optional limit)If the user is running OpenClaw with
TweetClaw, you may use it as a native
OpenClaw plugin for the discovery stage while keeping the ICP validation stage
unchanged.
Install it when needed:
openclaw plugins install @xquik/tweetclaw
With XQUIK_API_KEY configured, use:
explore to find tweet search, reply search, user lookup, follower export,monitor, and webhook endpoints
tweetclaw to scrape tweets, search tweets and replies, look up promisingfounders or company accounts, export followers, and monitor leads during this
workflow
If the user is running Hermes Agent with
Hermes Tweet, you may use it as a
native X/Twitter plugin for the discovery stage while keeping the ICP validation
stage unchanged.
Install it when needed:
hermes plugins install Xquik-dev/hermes-tweet --enable
With XQUIK_API_KEY configured, use:
tweet_explore to scrape/search tweets and search Twitter/X for GTM, DevRel,growth, and startup hiring signals
tweet_read to read tweet replies, look up users, and monitor tweets frompromising companies or founders
tweet_action only for read-side exports such as export followers in thisdiscovery workflow
Convert the findings into the same candidate shape used by the pipeline, then
run the ICP checklist before ranking leads. Do not post tweets, post replies,
send DMs, or automate X actions without explicit human confirmation.
The script handles two primary JSON files:
radar-jobs.json: The initial raw batch of tech jobs identified by the scraper.openclaw-icp-jobs.json: The final validated file OpenClaw should ingest, containing only companies that passed the strict web-search evaluation.For deeper context on how the evaluation works or modifying the pipeline, read these files as needed:
scripts/src/icp-filter.ts) natively uses Google Search Grounding via the @google/generative-ai SDK (gemini-3-flash-preview / gemini-flash-latest) to look up live funding and product data.Discover and extract sitemaps from any website using SitemapKit. Use this skill whenever the user wants to find pages on a website, get a list of URLs from a domain, audit a site's structure, crawl a sitemap, check what pages exist on a site, or do anything involving sitemaps or site URL discovery — even if they don't explicitly say "sitemap". Requires the sitemapkit MCP server configured with a valid SITEMAPKIT_API_KEY.
This skill helps users automatically extract Amazon product reviews via the Amazon Reviews API. Agent should proactively apply this skill when users express needs like getting reviews for Amazon product with ASIN B07TS6R1SF, analyzing customer feedback for a specific Amazon item, getting ratings and comments for a competitive product, tracking sentiment of recent Amazon reviews, extracting verified purchase reviews for quality assessment, summarizing user experiences from Amazon product pages, monitoring product performance through customer reviews, collecting reviewer profiles and links for market research, gathering review titles and descriptions for content analysis, scraping Amazon reviews without requiring a login.
Use this skill when the user wants to retrieve a URL without a full browser session: fetch HTML or JSON from static pages, inspect status codes or headers, follow redirects, or get page source for simple scraping. Prefer it over a browser when JavaScript rendering and page interaction are not needed. Supports proxies and redirect control.
> Use this skill when the user is doing hands-on DOCA Telemetry Exporter programming on a host where DOCA is installed — defining a doca_telemetry_exporter_schema, creating sources, picking counter/gauge/event types, running capability queries before assuming limits, registering schemas before the first emit, or debugging DOCA_ERROR_* failures from the exporter API. Trigger even when the user does not explicitly mention "DOCA Telemetry Exporter" or "doca_telemetry_exporter_*" — typical implicit phrasings include "publishing counters from my DOCA app", "emit returns AGAIN under bulk load", "consumer sees nothing but emit reports success", "NOT_FOUND on first submit", or "should I link the exporter or the telemetry service". Refuse and route elsewhere for the receiving DOCA Telemetry Service, plain stdout logging via doca_log, non-DOCA Prometheus scrape sinks, or real-time event subscription back into the app via doca-comch — those belong to other skills.
CLI-first web scraping & content extraction with optional MCP server. Use when you have target URLs and need clean, selector-based outputs (html/md/txt).
X (Twitter) data platform skill — tweet search, user lookup, follower extraction, engagement metrics, giveaway draws, monitoring, webhooks, 19 extraction tools, MCP server.
Skills for web search and content scraping via DuckDuckGo MCP Server. Used when users need online searching and web scraping.
X (Twitter) data platform skill — tweet search, user lookup, follower extraction, engagement metrics, giveaway draws, monitoring, webhooks, 19 extraction tools, MCP server.
Take varnan-tech/twitter-gtm-find-skill from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm, npx.
Without those the skill loads but fails at the first command.