prospect-posts

prospect-posts is a skill for Claude Code from Zevenue/headless-gtm. It costs 58 tokens per session (1,611 once invoked), scanned A, original, MIT.

A skill that collects recent LinkedIn posts from prospective customers and searches them for a chosen topic. LinkedIn is a professional social network, and Apify is the service used to collect the posts.

In plain words
What is it for?
Use it to scan one or more prospect profiles for themes such as hiring problems or AI-focused sales strategies, then produce matched excerpts and post links.
Why use it?
It helps outreach research find relevant signals without reading each post manually.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the headless-gtm plugin — 17 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/zevenue/headless-gtm/prospect-posts
Any agent
npx skills add Zevenue/headless-gtm --skill prospect-posts
Clone the repo
git clone --depth 1 https://github.com/Zevenue/headless-gtm

Made for: Claude Code.

Or install headless-gtm, the plugin that ships this one along with the rest of its 17 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for prospect-posts

README.md
[![agentmods](https://agentmods.dev/badge/skills/zevenue/headless-gtm/prospect-posts.svg)](https://agentmods.dev/skills/zevenue/headless-gtm/prospect-posts)
Your own site
<a href="https://agentmods.dev/skills/zevenue/headless-gtm/prospect-posts"><img src="https://agentmods.dev/badge/skills/zevenue/headless-gtm/prospect-posts.svg" alt="Measured on agentmods" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,611 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00058 $0.01611
Opus 5 $0.00029 $0.00805
Sonnet 5 $0.00012 $0.00322
Haiku 4.5 $0.00006 $0.00161

Measured 6d ago against content hash 9659c2914510, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

prospect-posts scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/prospect_posts.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/prospect-posts/SKILL.md · 154 lines

How it starts

The opening of the file, as written. The whole thing — 154 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Prospect Posts

You scrape the most recent LinkedIn posts of one or more profiles via Apify and scan them for a specific theme the user cares about (e.g. "AI-first GTM", "hiring pain", "pivoting to enterprise"). Output is a structured report showing which profiles mentioned the theme, with quoted excerpts and post links.

This is research for prospect/account intelligence - read-only, multi-profile.

How to invoke

The user says something like:

  • "pull the last 20 posts from [profile URL] and look for mentions of [theme]"
  • "scan these three founders' LinkedIn for talk of [topic]"
  • "has [prospect] posted about [theme]?"

Required inputs:

  1. Profile URL(s) - one or more LinkedIn profile URLs
  2. Theme - what to look for. Can be a topic, belief, pain point, or signal

Optional:

  • Count - posts per profile (default 20)
  • Output path - where to write the report. Default derived from theme + date (see Step 4)

If either profile URL or theme is missing, ask the user before running.

Prerequisites

  • APIFY_API_TOKEN in .env
  • requests and python-dotenv installed

Process

Step 1: Prepare

  1. Confirm APIFY_API_TOKEN is set. If missing, tell the user to add it.
  2. Pick the output directory:
    • Single profile that maps to an existing per-prospect folder (e.g. prospects/{slug}/): save there
    • Otherwise: prospects/_scans/ (default)
  3. Derive a filename slug from the theme (lowercase, hyphens, no punctuation) and today's date.
    • JSON path: {output_dir}/{date}-{theme-slug}.json
    • Report path: {output_dir}/{date}-{theme-slug}.md
  4. Create prospects/_scans/ if it doesn't exist.

Step 2: Fetch posts

Run the scraper. Repeat --profile-url for each profile:

python3 scripts/prospect_posts.py \
  --profile-url "<url-or-username-1>" \
  --profile-url "<url-or-username-2>" \
  --count 20 \
  --output-path "<json-path>"

The script:

  • Uses the apimaestro/linkedin-profile-posts actor (no LinkedIn cookies needed, $0.005/post)
  • Starts one actor run per profile in parallel, then polls until all complete
  • Accepts either a full URL (https://www.linkedin.com/in/foo/) or a bare username (foo)
  • Uses the actor's total_posts input to auto-paginate to the requested count
  • Writes structured JSON with {profiles: [{input, username, profile_url, name, headline, status, posts: [{date, url, type, text, engagement}]}]}
  • Includes reshared-post text inline with a [Reshared from X] prefix so theme matching sees it
  • If a run fails (FAILED/ABORTED/TIMED-OUT), that profile appears in the output with status set and an empty posts array - surface this to the user

Read the full file on GitHub · 154 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 154 lines · 58 tokens per session scan A 9659c2914510

Subscribe to this mod's changes

prospect-posts is a skill published in the GitHub repository Zevenue/headless-gtm (26 stars, last pushed 1mo ago), licensed MIT. It adds 58 tokens to every session and 1,611 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

gtm-machine

Validate startup ideas with evidence and test them with real outbound — the full loop from raw idea to booked calls. Use this skill whenever an idea-stage founder wants to validate a startup or product idea, assess AI-platform kill-risk, check if a market is worth entering, build an ICP or personas, source leads from…

vkuchkanov/gtm-machine · 155 tokens

deepline-ads-audiences

Use this skill when building, enriching, auditing, or uploading B2B paid ads audiences to Google Customer Match, Meta/Facebook Custom Audiences, or LinkedIn Matched Audiences. Triggers on phrases like '/deepline-ads-audience', '/deepline-ads-audiences', 'upload this audience', 'create custom audiences', 'personal…

getaero-io/gtm-eng-skills · 133 tokens

deepline-pre-research

Use when the user wants a last30days-style pre-research pass in Deepline: discover the critical public, private, CRM, workflow, social, and web data sources for a research/enrichment job; compare provider coverage; estimate Deepline credit cost; recommend the source plan before building or running the workflow; or…

getaero-io/gtm-eng-skills · 135 tokens

niche-signal-discovery

Discover niche first-party signals that differentiate Closed Won vs Closed Lost accounts for ICP analysis. Use when the user provides won/lost customer domain lists and wants differential signals (website content, job listings, tech stack, maturity markers) to build account scoring models and prospecting criteria.…

getaero-io/gtm-eng-skills · 135 tokens

deepline-engine

Build, publish, and verify a Deepline Play as a durable state machine over Customer DB tables, including a small paid pilot. Invoke this skill explicitly when the user asks to build an engine.

getaero-io/gtm-eng-skills · 43 tokens

deepline-plays-review

Use this skill when a human needs to review a Deepline Play result and hand feedback, labels, or approval back to the agent for revision, evaluation, comparison, or bounded iteration. Triggers on “put this run in a Sheet,” “review these results,” “read my feedback,” “make this a standing rule,” “never regress on this…

getaero-io/gtm-eng-skills · 121 tokens