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.
npx skills add gulmezeren2-byte/erp-report-engine --skill write-erp-profilegit clone --depth 1 https://github.com/gulmezeren2-byte/erp-report-engineWrote 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.
[](https://agentmods.dev/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile)<a href="https://agentmods.dev/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile"><img src="https://agentmods.dev/badge/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile/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.
<a href="https://agentmods.dev/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile"><img src="https://agentmods.dev/badge/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00049 | $0.00702 |
| Opus 5 | $0.00024 | $0.00351 |
| Sonnet 5 | $0.00010 | $0.00140 |
| Haiku 4.5 | $0.00005 | $0.00070 |
Grade A, and why
write-erp-profile 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 12d 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.
How it starts
The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Write an ERP profile
Use this to onboard a new ERP (Mikro, SAP Business One, Odoo, a custom system). A profile is a versioned YAML contract that maps that ERP's schema to the engine's canonical entities. You write three SELECT statements (four with receivables); the engine does the rest.
The contract
Each entity's query must output exactly these columns (alias to them):
orders: order_id, order_date, region, customer, status,
promised_date, actual_ship_date, net_total
order_lines: order_id, item_code, qty
inventory: item_code, stock_qty
receivables: invoice_id, customer, due_date, open_amount # OPTIONAL
receivables is optional — map it only if the AR ledger is reachable; leave it
out and the aging analysis simply doesn't appear.
Steps
- Start from
generic.yaml(the canonical demo shapes) as a template. - Write each SELECT against the ERP's real tables, aliasing every output to
the canonical name. Use
{placeholders}for per-install values (firm/period codes); they are validated as^[A-Za-z0-9_]{1,16}$, so they can't carry an injection. Bind the report window with the:sinceparameter where relevant. - Read-only only. Every query must be a single
SELECT/WITH— the loader runs the read-only guard on each one at load time and refuses the profile otherwise. - Flag the weak points inline. ERP schemas drift by version. In the
description, write "VERIFY AGAINST YOUR VERSION" notes for every field you're unsure of — the VAT-inclusiveness of the total, the closed-status code, how ship dates are derived, and (for receivables) whether open amount comes from an open-item flag or must be FIFO-derived. An honest field mapping beats a confident wrong one. - Add a contract (optional
contract:block):not_null,unique,accepted_values,relationships,min_rows.severity: failtripsvalidate --strict. - Verify. Run
erp-report-engine validate -c config.yaml. It connects, checks every canonical column exists, reconciles each entity's row count against an independentCOUNT(*), and runs the contract — and tells you immediately what's wrong. Don't ship a profile that hasn't passedvalidate.
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.
- 12d ago First seen · 60 lines · 49 tokens per session scan A 987a04a1b896
write-erp-profile is a skill published in the GitHub repository gulmezeren2-byte/erp-report-engine (1 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 702 once invoked, about $0.0002 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.
Other skills, from other repositories
google-analytics
Skill "google-analytics" from VKirill/claude-lane-stack, covering version requirements (may 2026), usage, use this skill when, do not use this skill when and purpose.
agency-os
Notion-as-source-of-truth dispatch board for running your work like an AI agency. One Tasks database is the source of truth; tasks flow Suggestion through Discussion, To-Do, In Progress, and Done with subtasks, recurring cadences, dependencies, and template subtrees. Batch execution fans approved To-Do rows out to…
performance-report
Generate affiliate performance reports with KPIs and recommendations. Triggers on: "show my affiliate report", "how are my programs doing", "performance review", "earnings report", "monthly affiliate report", "weekly report", "analyze my affiliate earnings", "which program is best", "EPC report", "conversion rate…
metabase-data-app-semantic-layer
Use when building, creating, or editing data apps that should query Metabase tables and metrics through generated schema files like metabase.data.ts or .metabase.data.ts.
ecto-patterns
Ecto patterns — schemas, changesets, queries, migrations, Multi, associations, preloads, upserts. Use when editing Repo calls, Ecto.Query, or schema fields. Skip for Ash.
backend-patterns
Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.