sku-profitability — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited sku-profitability (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generated skill (example). This is the kind of bespoke skillfpa-learn-businessproposes when the business profile says "product company with a discrete SKU set." It lives inskills/generated/- in a real engagement it would be written into the client's repo after human approval, citing the profile facts that justify it (here: a limited-SKU D2C brand where per-product economics drive the mix decision).
The channel-level forecast tells you the business is healthy; it doesn't tell you which products carry it. This skill computes per-SKU economics and the Pareto curve so you can see the 80/20, find margin-dilutive SKUs, and make cut/reprice/push calls.
Core principle: Revenue flatters; margin and contribution decide. Rank by gross profit, not by sales.
import pyfpa
skus = pyfpa.load_skus("examples/ridgeline/skus.yaml") # or build [Sku(...)] inline
df = pyfpa.sku_profitability(skus)df is sorted by gross profit (desc), indexed by SKU, with columns: units, revenue, cogs, gross_profit, gross_margin, revenue_share, cumulative_revenue_pct.
n = pyfpa.pareto_breakpoint(df, threshold=0.8) # SKUs that make 80% of revenuegross_margin here is per-unit price minus unit cost - it excludes channel fees, returns, and fulfillment. A D2C SKU and a wholesale SKU at the same listed margin are not equally profitable once channel economics hit.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.