write-erp-profile

write-erp-profile is a skill for Claude Code from gulmezeren2-byte/erp-report-engine. It costs 49 tokens per session (702 once invoked), scanned A, original, MIT.

A YAML profile that maps an ERP system’s database tables to the standard data fields used by erp-report-engine. ERP means business software for areas such as orders, stock and invoices.

In plain words
What is it for?
Use it to connect Mikro, SAP Business One, Odoo or a custom ERP to reports for orders, order lines, inventory and optionally unpaid invoices.
Why use it?
It removes the need to change the reporting engine for every ERP database layout. It also checks the profile and limits values used in SQL placeholders.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the erp-report-engine plugin — 3 skills, 2 commands, 1 MCP server shipped together

Good fit Use it to connect Mikro, SAP Business One, Odoo or a custom ERP to reports for orders, order lines, inventory and optionally unpaid invoices.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/gulmezeren2-byte/erp-report-engine/write-erp-profile
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 gulmezeren2-byte/erp-report-engine --skill write-erp-profile
Clone the repo
git clone --depth 1 https://github.com/gulmezeren2-byte/erp-report-engine

Made for: Claude Code.

Or install erp-report-engine, the plugin that ships this one along with the rest of its 3 skills, 2 commands, 1 MCP server.

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 write-erp-profile

README.md
[![agentmods](https://agentmods.dev/badge/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile/github.svg)](https://agentmods.dev/skills/gulmezeren2-byte/erp-report-engine/write-erp-profile)
Your own site
<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.

agentmods 80×15 button for write-erp-profile

Your own site · 80×15
<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>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 702 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.
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.00049 $0.00702
Opus 5 $0.00024 $0.00351
Sonnet 5 $0.00010 $0.00140
Haiku 4.5 $0.00005 $0.00070

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

Security

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.

skills/write-erp-profile/SKILL.md · 60 lines

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

  1. Start from generic.yaml (the canonical demo shapes) as a template.
  2. 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 :since parameter where relevant.
  3. 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.
  4. 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.
  5. Add a contract (optional contract: block): not_null, unique, accepted_values, relationships, min_rows. severity: fail trips validate --strict.
  6. Verify. Run erp-report-engine validate -c config.yaml. It connects, checks every canonical column exists, reconciles each entity's row count against an independent COUNT(*), and runs the contract — and tells you immediately what's wrong. Don't ship a profile that hasn't passed validate.

Read the full file on GitHub · 60 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. 12d ago First seen · 60 lines · 49 tokens per session scan A 987a04a1b896

Subscribe to this mod's changes

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.

Related

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.

VKirill/claude-lane-stack · 188 tokens

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…

jeremylongshore/tons-of-skills-marketplace · 142 tokens

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…

Affitor/affiliate-skills · 80 tokens

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.

metabase/metabase · 42 tokens

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.

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

backend-patterns

Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes.

loulanyue/awesome-claude-notes · 31 tokens