skill-saas-core-limits

skill-saas-core-limits is a skill for Claude Code, Codex from IAPro-Community/Orquestrador-Maestro. It costs 51 tokens per session (598 once invoked), scanned A, original, Apache-2.0.

A workflow for implementing SaaS plan rules and usage controls. These rules decide what each customer can use, how much they can use, and what happens when access or payment status changes.

In plain words
What is it for?
Use it to add quotas, entitlements, feature flags, trials, grace periods, usage counters, and access checks after payment, webhook, or administrator subscription updates.
Why use it?
It prevents subscription changes from leaving limits, trials, feature access, usage counts, or blocked accounts out of sync.

Skill for Claude CodeCodex

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

Good fit Use it to add quotas, entitlements, feature flags, trials, grace periods, usage counters, and access checks after payment, webhook, or administrator subscription updates.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iapro-community/orquestrador-maestro/skill-saas-core-limits
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-core-limits
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-core-limits

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/skill-saas-core-limits"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/skill-saas-core-limits.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 598 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.00051 $0.00598
Opus 5 $0.00026 $0.00299
Sonnet 5 $0.00010 $0.00120
Haiku 4.5 $0.00005 $0.00060

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

Security

Grade A, and why

skill-saas-core-limits 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.

codex/skills/skill-saas-core-limits/SKILL.md · 53 lines

How it starts

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

skill-saas-core-limits

Workflow

  1. Identify the billable actor: user, tenant, workspace, account, organization, or project.
  2. Inventory gated features and usage counters. Classify each as hard limit, soft limit, feature flag, trial-only feature, admin override, or informational banner.
  3. Model entitlements independently from payment provider objects. Store provider IDs as evidence, not as the product access model.
  4. Enforce important limits server-side, in RPC, or through RLS. Use frontend checks only for early feedback.
  5. Make usage updates atomic when races are possible.
  6. Add audit logs for payment sync, admin overrides, blocked states, automatic deactivation, and limit resets.
  7. Verify transitions with focused tests, SQL checks, or manual scenarios.

Data Model

  • plans: code, display name, active flag, currency, price, interval, feature limits JSON.
  • entitlements: actor ID, plan ID, status, starts_at, ends_at, grace_until, provider, provider IDs, override fields.
  • usage_counters: actor ID, feature key, period start/end, used count, hard limit, reset policy.
  • audit_logs: actor, action, before/after, reason, source, correlation ID.

Status Contract

  • Subscription/access states: trialing, active, grace, past_due, cancelled, expired, blocked.
  • Usage states: ok, caution, warning, limit_reached, expired.
  • Suggested thresholds: caution at 70%, warning at 90%, limit_reached at 100%.

Guardrails

  1. Do not grant or revoke access from a checkout success redirect alone.
  2. Do not trust frontend counters for enforcement.
  3. Do not scatter plan logic across UI components. Centralize in backend services, RPC, or shared domain helpers.
  4. Do not block paid users silently. Return actionable errors and show upgrade/recovery paths.
  5. Keep grace-period and cancellation policy explicit; do not infer it from provider defaults.

Local Reference

For a concrete local pattern, inspect {{USER_HOME}}/Documents\Code\Nina\src\lib\planLimitChecker.ts only when implementing similar Supabase/RPC usage checks.

Read the full file on GitHub · 53 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. 11d ago First seen · 53 lines · 51 tokens per session scan A 45125d21c293

Subscribe to this mod's changes

skill-saas-core-limits is a skill published in the GitHub repository IAPro-Community/Orquestrador-Maestro (42 stars, last pushed today), licensed Apache-2.0. It adds 51 tokens to every session and 598 once invoked, about $0.0003 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.