apify-financial-osint
Social-listening signals for tracked portfolio companies via Apify Actors — Reddit sentiment (fatihtahta), Twitter/X real-time mentions (kaitoeasyapi pay-per-result), Trustpilot service quality (getwally.net). Use when the user asks for sentiment, social media mentions, customer reviews, brand perception, crisis signals, OSINT, social listening, "what are people saying about X". Reads tracked companies from data/companies.json. Do NOT use for news (use apify-financial-news) or registry lookups (use apify-public-registries).
What this skill does
# Financial OSINT — Social Listening
Discover and quantify what the internet is saying about portfolio companies. Three verified Apify Actors only — Reddit (sentiment + threaded discussion), Twitter/X (real-time mentions, crisis monitoring), Trustpilot (customer satisfaction). All actors verified against real demo data with ≥98% success rate.
## Prerequisites
- Apify access — preferred: `apify` CLI (`npm install -g apify-cli && apify login`); fallback: Apify MCP connector (`call-actor` tool). CLI is faster and preferred when both are available.
- Companies data at `${CLAUDE_PLUGIN_ROOT}/data/companies.json` (read fields: `queries.reddit`, `queries.twitter`, `trustpilot_urls`, `identifiers.ticker`)
- Per-company routing pre-computed at `${CLAUDE_PLUGIN_ROOT}/skills/apify-financial-osint/data/osint-targets.json`
`${CLAUDE_PLUGIN_ROOT}` is the plugin's root directory (where `.claude-plugin/` lives). It is resolved automatically by Claude Code when the plugin is installed, or set to the `--plugin-dir` path during development.
## Workflow checklist
Copy this and tick boxes as you progress:
```
Task Progress:
- [ ] Step 0: Verify Apify access — try `apify --version && apify info`; if unavailable, check for `call-actor` MCP tool; if neither, tell user to install apify CLI or Apify MCP connector
- [ ] Step 1: Pick actor(s) by signal type — see "Choose Actor by Signal" table
- [ ] Step 2: Build input — read data/osint-targets.json or construct from data/companies.json
- [ ] Step 3: Run actor via apify CLI
- [ ] Step 4: Output — present top results with sentiment + engagement signals
```
## Constraints
### Allowed Apify Actors (exhaustive — do NOT use others)
| Actor | Purpose | Cost | Success rate |
|-------|---------|------|--------------|
| `fatihtahta/reddit-scraper-search-fast` | Reddit sentiment, acquisition reactions, brand perception | $1.49 / 1k results | 98.4% (40,787 runs/30d) |
| `kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest` | Real-time mentions, crisis monitoring, dealflow signals | $0.25 / 1k tweets | 99.7% (4.3/5, 58 reviews) |
| `getwally.net/trustpilot-reviews-scraper` | Service quality, complaint patterns (telcos, e-commerce, banks) | $3.00 / 1k results | verified working |
Do NOT use any other actor. Do NOT use WebSearch, WebFetch, or browser tools.
### Choose Actor by Signal
| If you need | Use Actor | When NOT to use |
|---|---|---|
| Sentiment / discussion threads / reactions to corporate events | `fatihtahta/reddit-scraper-search-fast` | If company has no consumer base (B2B fintech, biotech) — expect <5 posts |
| Real-time mentions / crisis signals / dealflow chatter | `kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest` | If you need >1 week historical depth — Twitter API limits |
| Customer satisfaction / service quality complaints | `getwally.net/trustpilot-reviews-scraper` | If company has no Trustpilot page (B2B, holding companies) — see verified URL list in `reference/osint-actor-schemas.md` Section 3 |
## Pipeline
### Step 1: Pick actor(s)
For portfolio companies, look up the company in [`data/osint-targets.json`](data/osint-targets.json) — it pre-computes which actors to run with templated inputs. Routing rule (mirrors how the file was built):
- `queries.reddit` non-empty → run Reddit actor
- `queries.twitter` non-empty → run Twitter actor (always set for tracked companies)
- `trustpilot_urls` non-empty → run Trustpilot actor
For ad-hoc / non-portfolio targets, construct input from scratch (see Step 2).
### Step 2: Build input
#### Reddit input (key fields)
| Field | Type | Default | Notes |
|---|---|---|---|
| `queries` | array of string | required (one of queries / urls / subredditName) | Global Reddit-wide search terms. |
| `maxPosts` | integer | **50000** (!) | **ALWAYS set explicitly** — typical 30-50 for scans, 100-200 for deep-dives. |
| `scrapeComments` | boolean | `false` | Set `true` to extract threaded discussion. |
| `maxComments` | integer | 50000 (!) | Only used when `scrapeComments: true`. Typical 5–10. |
| `sort` | enum | `"relevance"` | One of `relevance`, `hot`, `top`, `new`, `comments`. (NOT `rising` / `best`.) |
| `timeframe` | enum | `"all"` | One of `all`, `year`, `month`, `week`, `day`, `hour`. Must be >= dateFrom–dateTo range. |
| `dateFrom` | string | — | `YYYY-MM-DD`. Post-fetch filter: keep posts from this date onward. |
| `dateTo` | string | — | `YYYY-MM-DD`. Post-fetch filter: keep posts up to this date. |
Example:
```bash
apify call fatihtahta/reddit-scraper-search-fast \
--input '{"queries":["InPost FedEx acquisition"],"maxPosts":50,"scrapeComments":true,"maxComments":10,"sort":"relevance","timeframe":"month"}' \
--user-agent apify-awesome-skills/apify-financial-osint
```
#### Twitter/X input (key fields)
| Field | Type | Default | Notes |
|---|---|---|---|
| `twitterContent` | string | — | One of `twitterContent` / `tweetIDs` / `searchTerms`. Twitter advanced-search syntax (`OR`, `-`, `from:`, `since:`). |
| `tweetIDs` | array of string | — | **Plural** — not `tweetId`. |
| `searchTerms` | array of string | — | Each term gets `maxItems` results independently. |
| `maxItems` | integer | 200 | **REQUIRED** — actor fails without it. Pay-per-result. |
| `queryType` | enum | `"Latest"` | One of `Latest`, `Top`, `Photos`, `Videos`. |
| `lang` | string | `"en"` | ISO 639-1. Set `cs`/`pl`/`hu`/`bg`/`sk`/`tr` for single-country B2C; omit for multilingual. |
| `since` / `until` | string | — | Format: `YYYY-MM-DD_HH:MM:SS_UTC` (NOT ISO 8601). |
| `filter:news` / `filter:media` / `min_faves` / `min_retweets` | various | — | Engagement / content filters. |
Example:
```bash
apify call kaitoeasyapi/twitter-x-data-tweet-scraper-pay-per-result-cheapest \
--input '{"twitterContent":"InPost FedEx acquisition OR INPST","maxItems":100,"queryType":"Latest","since":"2026-01-01_00:00:00_UTC","filter:news":true}' \
--user-agent apify-awesome-skills/apify-financial-osint
```
#### Trustpilot input (only 2 fields exist!)
| Field | Type | Required | Notes |
|---|---|---|---|
| `startUrls` | array of `{"url": "..."}` objects | Yes | **NOT plain strings** — array of objects. |
| `limit` | integer | No (default 1000) | Set lower to control cost ($3/1k). |
Example:
```bash
apify call getwally.net/trustpilot-reviews-scraper \
--input '{"startUrls":[{"url":"https://www.trustpilot.com/review/inpost.pl"}],"limit":50}' \
--user-agent apify-awesome-skills/apify-financial-osint
```
Older docs reference fields like `maxItems`, `includeStatistics`, `includeCompanyDetails`, `onlyNewerThan` — these **do NOT exist** on this actor.
### Step 3: Cost-bound the run
Always cap output before running. Defaults are dangerously high.
| Actor | Cap field | Portfolio scan | Deep-dive |
|---|---|---|---|
| Reddit | `maxPosts` | 30–50 | 100–200 |
| Reddit comments | `maxComments` | 5–10 (only if `scrapeComments: true`) | 20–50 |
| Twitter/X | `maxItems` | 50–100 | 200–500 |
| Trustpilot | `limit` | 30–50 | 100–200 |
Twitter and Trustpilot are pay-per-result — every returned item is billed.
### Step 4: Run
Single example pulling Reddit threads + Twitter mentions for InPost (driven by [`data/osint-targets.json`](data/osint-targets.json)):
```bash
apify call fatihtahta/reddit-scraper-search-fast \
--input "$(jq -c '.targets[] | select(.company_id=="inpost") | .inputs.reddit' \
${CLAUDE_PLUGIN_ROOT}/skills/apify-financial-osint/data/osint-targets.json)" \
--user-agent apify-awesome-skills/apify-financial-osint \
--output-dataset > reddit_inpost.json
```
Full per-actor input schema (all 51 Twitter properties, every Reddit enum, every Trustpilot edge case) plus 30+ example invocations: [reference/osint-actor-schemas.md](reference/osint-actor-schemas.md).
### Step 4b: Post-filter Reddit results
Reddit search ignores quotes and matches partial words ("InPost" matches "in post game thread"). After fetching, filter results client-side: keep only posts where any oRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".