skill-saas-factory

skill-saas-factory is a skill for Claude Code, Codex from IAPro-Community/Orquestrador-Maestro. It costs 80 tokens per session (1,523 once invoked), scanned A, original, Apache-2.0.

A broad workflow for building, changing, reviewing, or planning SaaS products. SaaS means software people use online, often with accounts, subscriptions, and separate customer workspaces.

In plain words
What is it for?
Use it for React/Vite products, dashboards, admin panels, Supabase-backed apps, payments, subscriptions, customer limits, webhooks, tenant separation, security, and production preparation.
Why use it?
It brings the main product, payment, account, security, infrastructure, and launch-readiness concerns into one planning and development workflow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for React/Vite products, dashboards, admin panels, Supabase-backed apps, payments, subscriptions, customer limits, webhooks, tenant separation, security, and production preparation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iapro-community/orquestrador-maestro/skill-saas-factory
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 IAPro-Community/Orquestrador-Maestro --skill skill-saas-factory
Clone the repo
git clone --depth 1 https://github.com/IAPro-Community/Orquestrador-Maestro

Made for: Claude Code, Codex.

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 skill-saas-factory

README.md
[![agentmods](https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-saas-factory/github.svg)](https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-saas-factory)
Your own site
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-saas-factory"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-saas-factory/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 skill-saas-factory

Your own site · 80×15
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-saas-factory"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-saas-factory.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,523 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00080 $0.01523
Opus 5 $0.00040 $0.00762
Sonnet 5 $0.00016 $0.00305
Haiku 4.5 $0.00008 $0.00152

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

Security

Grade A, and why

skill-saas-factory 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 3d 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.

codex/skills/skill-saas-factory/SKILL.md · 111 lines

How it starts

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

skill-saas-factory

Default SaaS Base

When the user asks to create or modernize a SaaS and gives no narrower scope, treat the baseline product as:

  1. Public landing page.
  2. Registration/sign-up.
  3. Login/sign-in.
  4. Password recovery or magic-link flow when the auth provider supports it.
  5. Onboarding/profile setup.
  6. Authenticated app dashboard.
  7. Billing/plan surface when a payment provider is present.
  8. Admin dashboard for operators.
  9. Security, analytics, and verification gates.

Do not build a marketing-only landing page when the user asked for a SaaS. The first usable app path must exist or be explicitly scoped out.

Workflow

  1. Discover the stack: package scripts, routes, auth provider, database schema/migrations, serverless/API boundaries, payment provider, env requirements, admin layout, and existing tests.
  2. Classify the requested SaaS surface: public, auth, onboarding, app dashboard, admin, billing, analytics, security, or integrations.
  3. Route to focused skills only when they add useful detail. Keep this file as the orchestration layer.
  4. Preserve local patterns before adding architecture. Reuse existing clients, route groups, components, validation, migrations, and deployment conventions.
  5. Implement the smallest coherent SaaS slice: database contract, backend enforcement, UI projection, audit trail, and verification.
  6. Validate with the lightest meaningful gate available: typecheck, build, lint, focused tests, webhook simulation, security scan, or migration dry run.

Public And Auth Surface

For new SaaS work, expect these screens unless the project already has equivalents:

  • Landing: clear product promise, primary CTA to sign up, secondary CTA to sign in, social proof/pricing/FAQ only when useful.
  • Sign up: email/password, OAuth, or magic link according to the existing auth provider; validate errors and duplicate-account states.
  • Login: email/password/OAuth/magic link, forgot-password link, session persistence, clear auth errors.
  • Password recovery: request reset, reset form, expired/invalid token state when supported.
  • Onboarding: minimum profile/workspace setup, plan/trial state, first meaningful action, skip/complete status when appropriate.
  • App dashboard: authenticated home with product-specific empty state, key metrics/actions, account/billing entry points.
  • Admin dashboard: operator-only surface for users, tenants/workspaces, plans, payments, logs, support, settings.

Read the full file on GitHub · 111 lines

Files

What ships with it

4 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.

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. 3d ago Changed · +1 lines a810f9c2d400
  2. 12d ago First seen · 110 lines · 80 tokens per session scan A ede22351ea7f

Subscribe to this mod's changes

skill-saas-factory is a skill published in the GitHub repository IAPro-Community/Orquestrador-Maestro (42 stars, last pushed yesterday), licensed Apache-2.0. It adds 80 tokens to every session and 1,523 once invoked, about $0.0004 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

algolia-search

Expert patterns for Algolia search implementation, indexing strategies, React InstantSearch, and relevance tuning.

Ghosteken/agent-harness · 22 tokens

agent-self-scheduling

Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.

sickn33/agentic-awesome-skills · 24 tokens

trigger-realtime-and-frontend

Trigger.dev client/frontend surface: subscribe to runs in realtime (runs.subscribeToRun and the @trigger.dev/react-hooks hook useRealtimeRun), consume metadata and AI/text streams in React (useRealtimeStream), trigger tasks from the browser (useTaskTrigger, useRealtimeTaskTrigger), and mint scoped frontend credentials…

triggerdotdev/trigger.dev · 148 tokens

liveview-patterns

Build LiveView: async data (assignasync), PubSub (check connected?), phx-change events, form components/modals/uploads, streams for lists, livepatch. Use when handling interactions, debugging events, or tracking Presence.

oliver-kriska/claude-elixir-phoenix · 51 tokens

testing

Verify a Skyvern deployment is working correctly by smoke-testing the backend API, frontend rendering, browser session provisioning, and workflow execution. Use when the user says 'is Skyvern working', 'test my deployment', 'verify the installation', 'smoke test', or needs to check that a self-hosted or local Skyvern…

Skyvern-AI/skyvern · 71 tokens

mockup-extraction

Extract reusable components from approved HTML mockups during implementation. Identifies patterns, maps CSS to Tailwind, and populates prototype-patterns.md for visual fidelity. Use at start of /implement for UI-first features.

marcusgoll/Spec-Flow · 48 tokens