/twitter-GTM-find
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
$ npx -y skills add Varnan-Tech/opendirectory --skill twitter-GTM-find --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/twitter-GTM-find
Context preview
The summary Claude sees to decide when to auto-load this skill.
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.md
twitter-GTM-find.SKILL.mdname: twitter-GTM-find-Skill
description: 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.
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).
Using the Pipeline
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)
Optional Native X/Twitter Plugin Inputs
If the user is running OpenClaw with [TweetClaw](https://github.com/Xquik-dev/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 promising
founders or company accounts, export followers, and monitor leads during this workflow
If the user is running Hermes Agent with [Hermes Tweet](https://github.com/Xquik-dev/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 from
promising companies or founders
- `tweet_action` only for read-side exports such as export followers in this
discovery 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.
Outputs
The script handles two primary JSON files: 1. `radar-jobs.json`: The initial raw batch of tech jobs identified by the scraper. 2. `openclaw-icp-jobs.json`: The **final validated file** OpenClaw should ingest, containing only companies that passed the strict web-search evaluation.
References
For deeper context on how the evaluation works or modifying the pipeline, read these files as needed:
- **ICP Checklist**: See [references/icp-checklist.md](references/icp-checklist.md) for the exact strict evaluation criteria (Developer-first + $100K minimum funding).
- **Gemini Search Grounding**: The pipeline (`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.
Read more
name: twitter-GTM-find-Skill description: 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.
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).
Using the Pipeline
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)
Optional Native X/Twitter Plugin Inputs
If the user is running OpenClaw with [TweetClaw](https://github.com/Xquik-dev/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 promising
founders or company accounts, export followers, and monitor leads during this workflow
If the user is running Hermes Agent with [Hermes Tweet](https://github.com/Xquik-dev/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 from
promising companies or founders
- `tweet_action` only for read-side exports such as export followers in this
discovery 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.
Outputs
The script handles two primary JSON files: 1. `radar-jobs.json`: The initial raw batch of tech jobs identified by the scraper. 2. `openclaw-icp-jobs.json`: The **final validated file** OpenClaw should ingest, containing only companies that passed the strict web-search evaluation.
References
For deeper context on how the evaluation works or modifying the pipeline, read these files as needed:
- **ICP Checklist**: See [references/icp-checklist.md](references/icp-checklist.md) for the exact strict evaluation criteria (Developer-first + $100K minimum funding).
- **Gemini Search Grounding**: The pipeline (`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.
AI Agent Skills built for Founders who hate Marketing
Repo: Varnan-Tech/opendirectory
Other skills on opendirectory-gtm-skills.
- /app-store-review-arbitrage
Fetches low-star App Store and Google Play reviews, clusters them into broken-promise patterns, and generates a ranked copy brief with positioning opportunities.
Open skill - /blog-cover-image-cli
Use when the user asks to generate a blog cover image, thumbnail, or article header. Automatically uses modern typography, brand logos, and Google Search grounding to create beautiful 16:9 images with Gemini 3.1 Flash Image Preview.
Open skill - /brand-alchemy
World-class brand strategist and naming expert. Uses an interrogation-led discovery phase to extract your brand's DNA, then applies scientific naming frameworks (Phonosemantics) and automated multi-TLD domain checking.
Open skill - /claude-md-generator
Use when the user asks to generate or update a project's CLAUDE or AGENTS context file from a codebase scan. Writes a focused file under 100 lines containing only the non-obvious build commands, conventions, and gotchas Claude Code needs.
Open skill - /cold-email-verifier
Use when the user wants to verify cold emails, enrich a lead list, or autonomously guess email addresses from a CSV using ValidEmail.co or the open-source Reacher engine.
Open skill - /company-radar
Competitive intelligence orchestrator tracking companies across 8+ platforms (GitHub, Twitter, Reddit, HN, PH, YC Jobs) with heat scores and AI briefings.
Open skill

