skills/capabilities/tiktok-influencer-finder/SKILL.md
Find TikTok influencers using Apify's Influencer Discovery Agent. Use when the user wants to discover TikTok creators or influencers in any niche.
npx skillsauth add gooseworks-ai/goose-skills tiktok-influencer-finderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Search for TikTok influencers matching a specific niche using Apify's Influencer Discovery Agent.
Requires requests and either GOOSEWORKS_API_KEY or APIFY_API_TOKEN env var.
# Basic search
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "fitness coaches for women over 40"
# With follower filters
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "AI and tech reviewers" \
--min-followers 10000 --max-followers 500000
# Summary table output
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "vegan cooking creators" --output summary
# CSV export
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "sustainable fashion" --output csv
Before running the search, ask the user for their filtering criteria. Collect ALL of the following:
Ask all 5 criteria in a single question to minimize back-and-forth. Provide sensible default options but always allow custom input.
Compose a detailed --description combining the user's niche, content style preferences, and target audience. Be specific and descriptive.
python3 skills/tiktok-influencer-finder/scripts/find_influencers.py \
--description "fitness coaches targeting women over 40, focus on home workouts and healthy aging" \
--min-followers 5000 --max-followers 500000 \
--min-fit 0.6 \
--output json
The script uses apify~influencer-discovery-agent actor. It routes through the GooseWorks proxy when GOOSEWORKS_API_KEY is set, or directly to Apify when APIFY_API_TOKEN is set.
After receiving results, apply the user's criteria:
fit score and fitDescription to judge relevance; generally exclude fit < 0.6)Present filtered results in a clean markdown table:
| Creator | Handle | Followers | Engagement | Location | Focus | Fit Score |
Include:
After the table, include:
| Flag | Default | Description |
|------|---------|-------------|
| --description | required | Describe the type of influencer to find |
| --keywords | 5 | Number of search keywords to generate (max 5) |
| --profiles-per-keyword | 10 | Profiles per keyword (max 10) |
| --min-followers | none | Minimum follower count filter |
| --max-followers | none | Maximum follower count filter |
| --min-fit | 0.0 | Minimum fit score (0.0-1.0) |
| --output | json | Output format: json, csv, summary |
| --token | env var | Apify token (overrides env vars) |
| --timeout | 300 | Max seconds for Apify run |
development
End-to-end skill that turns a single reference image into a fully-installed, example-rendered style preset for the goose-graphics composite. Analyzes the image, writes the slim style spec, registers it in styles/index.json, generates all 7 format examples using the standard brief, renders PNGs via Playwright, and updates examples/manifest.json. Invoke with /goose-graphics-create-style.
development
Evaluate YC batch companies for investment — scrapes the YC directory, researches each company and its founders (work history, LinkedIn, website), assesses founder-company fit, and exports to Google Sheets with priority rankings. Use when asked to evaluate YC companies, research a YC batch, screen startups, or do due diligence on YC companies.
tools
Take screenshots of any website using Notte browser automation. Use when asked to screenshot, capture, or snap a webpage.
development
Search the web, platforms, and datasets. Use when asked to search, find, look up, research, or discover information from the web, YouTube, Amazon, eBay, news, academic sources, or any online platform.