saas-router

saas-router is a skill for Claude Code from MartinOlivero/saas-builder. It costs 189 tokens per session (2,199 once invoked), scanned A, original, MIT.

A first-step workflow for deciding how to handle requests to build digital products, such as web apps, SaaS products, dashboards, APIs, and landing pages. It asks a few questions and sends the work to the appropriate specialist workflow.

In plain words
What is it for?
Use it at the beginning of product work to classify what is being built, whether the idea is defined, and whether the project starts from an existing codebase or from nothing.
Why use it?
It prevents implementation from starting before the product type, idea, and existing codebase are understood. That reduces the chance of building the wrong thing or choosing an unsuitable approach.

Skill for Claude Code

Written for Claude Code: Claude Code plugin machinery.

Part of the saas-builder plugin — 18 skills, 1 hook shipped together

Good fit Use it at the beginning of product work to classify what is being built, whether the idea is defined, and whether the project starts from an existing codebase or from nothing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/martinolivero/saas-builder/saas-router
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.

Any agent
npx skills add MartinOlivero/saas-builder --skill saas-router
Clone the repo
git clone --depth 1 https://github.com/MartinOlivero/saas-builder

Made for: Claude Code.

Or install saas-builder, the plugin that ships this one along with the rest of its 18 skills, 1 hook.

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 saas-router

README.md
[![agentmods](https://agentmods.dev/badge/skills/martinolivero/saas-builder/saas-router/github.svg)](https://agentmods.dev/skills/martinolivero/saas-builder/saas-router)
Your own site
<a href="https://agentmods.dev/skills/martinolivero/saas-builder/saas-router"><img src="https://agentmods.dev/badge/skills/martinolivero/saas-builder/saas-router/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.

agentmods 80×15 button for saas-router

Your own site · 80×15
<a href="https://agentmods.dev/skills/martinolivero/saas-builder/saas-router"><img src="https://agentmods.dev/badge/skills/martinolivero/saas-builder/saas-router.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 189 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,199 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00189 $0.02199
Opus 5 $0.00095 $0.01099
Sonnet 5 $0.00038 $0.00440
Haiku 4.5 $0.00019 $0.00220

Measured 10d ago against content hash 7489a0be8b4e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

saas-router 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 10d 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.

skills/saas-router/SKILL.md · 110 lines

How it starts

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

SaaS Router

This skill is the brain of the saas-builder plugin. It runs before any product work and decides which specialist skill should handle the request.

The one rule that cannot be broken

Do NOT write code, design a UI, or pick a stack before routing through this skill. Jumping straight to implementation is the most common failure mode — it produces generic output that ignores what the user actually needs. Route first, build second.

Analogy: this is the triage nurse at a hospital. Nobody goes straight to surgery. The nurse asks two or three quick questions, then sends the patient to the right specialist.

Workflow

Step 1 — Ask 2-3 quick routing questions

Do not interrogate. Ask only what is needed to classify the request. Pick from:

  • "What are you building — a landing page, a dashboard, or a full app/SaaS?"
  • "Do you already know exactly what it should do, or are you still shaping the idea?"
  • "Is there an existing product/codebase, or are we starting from zero?"

If the user's first message already answers these (e.g. "build me a pricing landing page for my course"), skip straight to routing — do not re-ask what is already known.

Step 2 — Route to the right specialist

Match the request (English or Spanish) against this table and activate the matching skill. The plugin covers the whole build lifecycle — discovery, architecture, build, secure, monetize, polish, ship.

Plan & design

User says / wants Route to
"SaaS", "platform", "app", "MVP", "product" / "idea para", idea not fully defined product-discoveryarchitecture-primer → build skills → ui-design
"architecture", "how do I structure this", "scale", "what stack" / "cómo lo estructuro", "qué stack" architecture-primer
"landing", "sales page", "lead capture" / "página de ventas", "captar leads" landing-page (structure + copy) + design-taste-frontend (visual execution)
"portfolio", "marketing site", "agency site", "editorial/blog", "make a website that doesn't look AI-generated", website redesign / "portfolio", "sitio de marketing", "que no parezca hecho por IA", "rediseñar mi web" design-taste-frontend
"dashboard", "admin", "backoffice", "internal tool", "data table", product/app UI / "panel", "tablero", "interfaz de la app" ui-design (dashboard mode)
Component, colors, design system for an app, dark mode for product UI / "componente", "design system de la app" ui-design
"copy this design", "make it look like this screenshot/site", reference image of a web they like / "cloná esta web", "hacelo como esta captura" image-to-code

Read the full file on GitHub · 110 lines

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. 10d ago First seen · 110 lines · 189 tokens per session scan A 7489a0be8b4e

Subscribe to this mod's changes

saas-router is a skill published in the GitHub repository MartinOlivero/saas-builder (2 stars, last pushed 22d ago), licensed MIT. It adds 189 tokens to every session and 2,199 once invoked, about $0.0009 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.