Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/valtterimelkko/agent-workflow-skillsnpx agentmods add skills/valtterimelkko/agent-workflow-skills/saas-idea-finderWrote 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.
[](https://agentmods.dev/skills/valtterimelkko/agent-workflow-skills/saas-idea-finder)<a href="https://agentmods.dev/skills/valtterimelkko/agent-workflow-skills/saas-idea-finder"><img src="https://agentmods.dev/badge/skills/valtterimelkko/agent-workflow-skills/saas-idea-finder/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/valtterimelkko/agent-workflow-skills/saas-idea-finder"><img src="https://agentmods.dev/badge/skills/valtterimelkko/agent-workflow-skills/saas-idea-finder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00133 | $0.05165 |
| Opus 5 | $0.00067 | $0.02583 |
| Sonnet 5 | $0.00027 | $0.01033 |
| Haiku 4.5 | $0.00013 | $0.00517 |
Grade A, and why
saas-idea-finder 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 11d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 561 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SaaS Idea Finder
Automatically discover trending topics from multiple sources and generate actionable Micro-SaaS ideas based on real research and market signals.
Overview
This skill implements a 3-stage pipeline that:
- Discovers trends from HackerNews, HN Algolia Search, DEV.to, GitHub, arXiv, Stack Exchange, GDELT, SerpAPI, YouTube, Reddit (self-hosted), and social media (Twitter/X, Instagram via Xpoz MCP)
- Researches topics using GPT Researcher with comprehensive web analysis
- Generates SaaS ideas using AI based on researched pain points and opportunities, with viability scoring (0-100)
Uses a rotating lens system (7 daily perspectives) to ensure fresh, diverse ideas with automatic deduplication.
Pipeline Timing Expectations
Total Pipeline Duration: ~3-6 minutes per topic
| Stage | Component | Expected Time | Notes |
|---|---|---|---|
| Stage 1: Discovery | ~30-60s | ||
| HackerNews | 2-3s | Fast, reliable | |
| GitHub | 3-5s | Depends on API response | |
| DEV.to | 2-3s | Usually fast | |
| HN Algolia | 2-3s | Fast | |
| NewsAPI | 2-3s | Fast | |
| Product Hunt | 2-3s | Fast | |
| arXiv | 2-3s | Fast | |
| Stack Exchange | 2-3s | Fast | |
| GDELT | 2-3s | May timeout occasionally | |
| SerpAPI | 2-3s | Optional, may be skipped | |
| YouTube | 2-3s | Fast | |
| ~18-25s | Sequential fetches with rate limiting (4 subreddits × ~5s) | ||
| Twitter/X | ~15-25s | 8 parallel queries with 15s timeout each | |
| Stage 2: Research | GPT Researcher | ~2-4 min | Web scraping + LLM analysis |
| Stage 3: Synthesis | Idea Generation | ~30-60s | LLM idea generation + viability scoring |
Factors that increase time:
- Slower API responses (TwitterAPI.io, Reddit)
- Rate limiting (Reddit: ~6s delay between requests)
- Network latency
- Complex research topics requiring more web scraping
Factors that decrease time:
- Cached/credential failures (skips source quickly)
- GDELT timeout (fails fast, ~2s)
- SerpAPI not configured (skipped)
What ships with it
58 files 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.
- .gitignore 244 B
- config/lenses.json 12 KB
- examples/example_research.md 3.8 KB
- examples/example_saas_ideas.md 6.4 KB
- examples/example_trends.json 2.4 KB
- scripts/discover_trends.py 25 KB runs code
- scripts/helpers/__init__.py 1.2 KB runs code
- scripts/helpers/arxiv_fetcher.py 9.3 KB runs code
- scripts/helpers/devto_fetcher.py 5.6 KB runs code
- scripts/helpers/gdelt_fetcher.py 12 KB runs code
- scripts/helpers/hackernews_fetcher.py 8.6 KB runs code
- scripts/helpers/hn_algolia_fetcher.py 7.4 KB runs code
- scripts/helpers/idea_template.py 48 KB runs code
- scripts/helpers/lens_manager.py 7.4 KB runs code
- scripts/helpers/newsapi_fetcher.py 10 KB runs code
- scripts/helpers/output_formatter.py 2.6 KB runs code
- scripts/helpers/producthunt_fetcher.py 12 KB runs code
- scripts/helpers/reddit_credentials.py 2.2 KB runs code
- scripts/helpers/reddit_health_check.py 1.5 KB runs code
- scripts/helpers/serpapi_fetcher.py 14 KB runs code
- scripts/helpers/stackexchange_fetcher.py 11 KB runs code
- scripts/helpers/state_manager.py 7.0 KB runs code
- scripts/helpers/topic_extractor.py 23 KB runs code
- scripts/helpers/viability_scorer.py 26 KB runs code
- scripts/helpers/xpoz_consumer_deep_dive.py 14 KB runs code
- scripts/helpers/xpoz_fetcher.py 21 KB runs code
- scripts/helpers/youtube_fetcher.py 26 KB runs code
- scripts/investigate_topic.py 6.2 KB runs code
- scripts/platforms/__init__.py 271 B runs code
- scripts/platforms/base_scraper.py 3.4 KB runs code
- scripts/platforms/consumer_deep_dive.py 17 KB runs code
- scripts/platforms/consumer_scraper_enhanced.py 12 KB runs code
- scripts/platforms/instagram_scraper.py 14 KB runs code
- scripts/platforms/reddit_json_scraper.py 35 KB runs code
- scripts/platforms/reddit_scraper.py 1.3 KB runs code
- scripts/platforms/tests/__init__.py 34 B runs code
- scripts/platforms/tests/test_instagram_scraper.py 7.6 KB runs code
- scripts/platforms/tests/test_reddit_scraper.py 14 KB runs code
- scripts/platforms/tests/test_twitter_scraper.py 3.8 KB runs code
- scripts/platforms/twitter_scraper.py 23 KB runs code
- scripts/platforms/twitterapi_client.py 16 KB runs code
- scripts/run_full_pipeline.py 11 KB runs code
- scripts/synthesize_saas_ideas.py 39 KB runs code
- scripts/tests/__init__.py 0 B runs code
- scripts/tests/test_baseline_consumer_problems.py 14 KB runs code
- scripts/tests/test_baseline_quick.py 4.1 KB runs code
- scripts/tests/test_consumer_deep_dive.py 7.7 KB runs code
- scripts/tests/test_full_pipeline_with_social.py 14 KB runs code
- scripts/tests/test_full_pipeline_xpoz.py 14 KB runs code
- scripts/tests/test_graceful_failure.py 8.1 KB runs code
- scripts/tests/test_single_platform_quality.py 5.1 KB runs code
- scripts/tests/test_xpoz_minimal.py 1.9 KB runs code
- scripts/tests/test_xpoz_pipeline_minimal.py 4.5 KB runs code
- scripts/xpoz/__init__.py 291 B runs code
- scripts/xpoz/monitor_usage.py 7.1 KB runs code
- scripts/xpoz/test_connection.py 4.6 KB runs code
- scripts/xpoz/xpoz_client.py 11 KB runs code
- scripts/xpoz/xpoz_credentials.py 2.7 KB runs code
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.
- 11d ago First seen · 561 lines · 133 tokens per session scan A c6fbd8479fbb
saas-idea-finder is a skill published in the GitHub repository valtterimelkko/agent-workflow-skills (2 stars, last pushed 2mo ago), licensed MIT. It adds 133 tokens to every session and 5,165 once invoked, about $0.0007 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-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…