fsl-business

fsl-business is a skill for Codex from ymm-oss/fsl. It costs 98 tokens per session (1,264 once invoked), scanned A, original, Apache-2.0.

A skill for writing and checking FSL business specifications. FSL is a language for describing business processes, rules, controls, goals, and measurements.

In plain words
What is it for?
Use it to document current and future business processes, roles, case stages, policies, controls, KPIs, and goals, then verify the resulting specification.
Why use it?
It keeps business-flow descriptions focused on what the organization does, instead of mixing them with software implementation details.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to document current and future business processes, roles, case stages, policies, controls, KPIs, and goals, then verify the resulting specification.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ymm-oss/fsl/fsl-business
View source ↗ ymm-oss/fsl
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 ymm-oss/fsl --skill fsl-business
Clone the repo
git clone --depth 1 https://github.com/ymm-oss/fsl

Made for: 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 fsl-business

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ymm-oss/fsl/fsl-business"><img src="https://agentmods.dev/badge/skills/ymm-oss/fsl/fsl-business.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 98 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,264 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.00098 $0.01264
Opus 5 $0.00049 $0.00632
Sonnet 5 $0.00020 $0.00253
Haiku 4.5 $0.00010 $0.00126

Measured 9d ago against content hash 2c9317d90c16, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

fsl-business 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 9d 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/fsl-business/SKILL.md · 91 lines

How it starts

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

FSL Business Layer

Use this skill to turn business process material into a business Name { ... } FSL file. Keep the output at the business/consulting level: process stages, business transitions, policies, KPIs, goals, and control preservation evidence.

Before writing syntax, read ../fsl/SKILL.md, then use its reference index to load only the needed language and verifier detail. When working inside this repository, read examples/consulting/ for As-Is/To-Be work, examples/pm/cancel_flow.fsl for a PM-friendly business flow, and examples/e2e/1_business.fsl when this business layer will be chained downstream.

Boundary

Produce business-layer artifacts only:

  • A business spec with actor, entity, process, transition, optional control, policy, kpi, and goal, plus a top-level verify { instances Entity = N } bound
  • Optional standalone governance catalog when the same controls must be traced across multiple business specs
  • Verification commands/results, usually fslc verify ... --engine induction
  • Optional As-Is/To-Be control preservation using fslc refine and a mapping file

Do not write system requirements, acceptance criteria, UI states, service/API shape, data models, queues, outboxes, retry algorithms, implementation adapters, or design refinement maps from business material. If the source asks for those, route the work to fsl-requirements or fsl-design after the business layer is agreed.

Workflow

  1. Extract a business formalization memo in chat:
    • actors and external roles
    • business entity names and finite verify { instances ... } modeling sizes
    • process stages and allowed business transitions
    • policies/controls with IDs and verbatim source text
    • KPIs/goals and what counts as completion (kpi name = count Entity in Stage)
    • open questions about rule priority, exceptions, ownership, or timing
  2. Ask for confirmation before encoding any interpretation that changes behavior. Representation-only modeling choices may be labeled and carried as comments.
  3. Write the business spec. Prefer readable stage syntax:
    • entity Claim with verify { instances Claim = 3 }
    • kpi paid_claims = count Claim in Paid
    • control CTRL-1 "..." owner Finance severity high applies_to Claim
    • policy POL-1 "..." satisfies CTRL-1 every Case in Source must eventually be Target
    • policy POL-2 "..." satisfies CTRL-1 every Case reaching Completed must have passed through AwaitingApproval — the no-bypass form; desugars to an invisible history flag plus a kernel invariant, without descending to requirements
    • goal G "..." some Case can reach Target
    • goal G "..." all Case can be Target or OtherTarget
  4. Run fslc check, then fslc verify --engine induction. A pure stage-graph business spec needs no flag for intentional stops: terminal { } is derived automatically from each process's sink stages (stages with no outgoing transition), so a spec that ends cleanly at those stages verifies with no flag. --deadlock ignore is not the tool for intended stops — it silences all deadlock detection, including unintended ones.
  5. If comparing As-Is and To-Be, keep them in separate files. Write an explicit mapping that states the business interpretation, then run fslc refine tobe.fsl asis.fsl mapping.fsl.
  6. Report results in business language: which policy/control/KPI broke, the shortest reproduction trace, and which interpretation remains a human judgment.

Read the full file on GitHub · 91 lines

Files

What ships with it

1 file 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. 9d ago First seen · 91 lines · 98 tokens per session scan A 2c9317d90c16

Subscribe to this mod's changes

fsl-business is a skill published in the GitHub repository ymm-oss/fsl (23 stars, last pushed yesterday), licensed Apache-2.0. It adds 98 tokens to every session and 1,264 once invoked, about $0.0005 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

open-source

Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…

browser-use/browser-use · 137 tokens

stripe-apps

Use when building, modifying, or reviewing a Stripe App — or when the user describes something that implies one (e.g. "add a panel to the customer page", "customize my Stripe Dashboard", "react to Stripe events from my app", "connect my service to Stripe without sharing API keys"). Covers the full app development…

stripe/ai · 197 tokens

deepseek-harness

Use when building AI agent applications with a plugin-based architecture — Web UI, CLI, Python SDK, Cordis plugin system, multi-model orchestration. DeepSeek Harness (dsh): open-source agent harness by DeepSeek AI where everything is a plugin, powered by Cordis for spatiotemporal composability.

znlgis/opengis-skills · 68 tokens

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

accelerate

Run PyTorch training across GPUs with minimal changes.

NousResearch/hermes-agent · 13 tokens

serving-llms-vllm

Use when deploying production LLM APIs, optimizing inference latency/throughput, or serving models with limited GPU memory. Supports OpenAI-compatible endpoints, quantization (GPTQ/AWQ/FP8), and tensor parallelism.

NousResearch/hermes-agent · 27 tokens