Twitter GTM Find 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.

by Varnan-Tech·MIT license·GitHub ↗

★ 665 Stars on the repo·Checked

npx degit Varnan-Tech/opendirectory/skills/twitter-GTM-find-skill/twitter-GTM-find#main ~/.claude/skills/twitter-gtm-find

SKILL.md · 3.4 KB · names 3 other files — download is this file only · installs the whole folder to ~/.claude/skills/twitter-gtm-find

Files of Twitter GTM Find Skill

Files 1 file
Show the full text83 lines

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, 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, 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 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.
1---
2name: twitter-GTM-find-Skill
3description: 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.
4---
5 
6# Twitter GTM Find Skill
7 
8This 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).
9 
10## Using the Pipeline
11 
12You can run the full pipeline using the executable Node.js project bundled in `scripts/`.
13 
14```bash
15cd scripts
16npm install
17npx ts-node src/index.ts
18```
19 
20**Requirements:**
21A `.env` file must be present at the workspace root with:
22- `APIFY_API_TOKEN` (Apify account access)
23- `GEMINI_API_KEY` (Gemini 3 Flash Preview with Search Grounding)
24- `MAX_POSTS=20` (Optional limit)
25 
26## Optional Native X/Twitter Plugin Inputs
27 
28If the user is running OpenClaw with
29[TweetClaw](https://github.com/Xquik-dev/tweetclaw), you may use it as a native
30OpenClaw plugin for the discovery stage while keeping the ICP validation stage
31unchanged.
32 
33Install it when needed:
34 
35```bash
36openclaw plugins install @xquik/tweetclaw
37```
38 
39With `XQUIK_API_KEY` configured, use:
40 
41- `explore` to find tweet search, reply search, user lookup, follower export,
42 monitor, and webhook endpoints
43- `tweetclaw` to scrape tweets, search tweets and replies, look up promising
44 founders or company accounts, export followers, and monitor leads during this
45 workflow
46 
47If the user is running Hermes Agent with
48[Hermes Tweet](https://github.com/Xquik-dev/hermes-tweet), you may use it as a
49native X/Twitter plugin for the discovery stage while keeping the ICP validation
50stage unchanged.
51 
52Install it when needed:
53 
54```bash
55hermes plugins install Xquik-dev/hermes-tweet --enable
56```
57 
58With `XQUIK_API_KEY` configured, use:
59 
60- `tweet_explore` to scrape/search tweets and search Twitter/X for GTM, DevRel,
61 growth, and startup hiring signals
62- `tweet_read` to read tweet replies, look up users, and monitor tweets from
63 promising companies or founders
64- `tweet_action` only for read-side exports such as export followers in this
65 discovery workflow
66 
67Convert the findings into the same candidate shape used by the pipeline, then
68run the ICP checklist before ranking leads. Do not post tweets, post replies,
69send DMs, or automate X actions without explicit human confirmation.
70 
71## Outputs
72 
73The script handles two primary JSON files:
741. `radar-jobs.json`: The initial raw batch of tech jobs identified by the scraper.
752. `openclaw-icp-jobs.json`: The **final validated file** OpenClaw should ingest, containing only companies that passed the strict web-search evaluation.
76 
77## References
78 
79For deeper context on how the evaluation works or modifying the pipeline, read these files as needed:
80 
81- **ICP Checklist**: See [references/icp-checklist.md](references/icp-checklist.md) for the exact strict evaluation criteria (Developer-first + $100K minimum funding).
82- **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.
83 

Discussion

Alternatives

Also in Posting & schedulingSee all 401 in Marketing →