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 architawr/claude-bpmn-skill --skill bpmngit clone --depth 1 https://github.com/architawr/claude-bpmn-skillWrote 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/architawr/claude-bpmn-skill/bpmn)<a href="https://agentmods.dev/skills/architawr/claude-bpmn-skill/bpmn"><img src="https://agentmods.dev/badge/skills/architawr/claude-bpmn-skill/bpmn/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/architawr/claude-bpmn-skill/bpmn"><img src="https://agentmods.dev/badge/skills/architawr/claude-bpmn-skill/bpmn.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.00142 | $0.02857 |
| Opus 5 | $0.00071 | $0.01429 |
| Sonnet 5 | $0.00028 | $0.00571 |
| Haiku 4.5 | $0.00014 | $0.00286 |
Grade A, and why
bpmn 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 10d 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 — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BPMN 2.0: read and edit process diagrams
What this skill does
Helps you understand existing .bpmn files in plain language and produce new or
edited ones that are valid and visually clean when opened in any modeler
(Camunda Modeler, bpmn.io, Cawemo, etc.).
The job splits cleanly:
- You do the semantic reasoning: what the process means, what to add or change.
- The bundled script does the deterministic mechanics: parsing, regenerating layout, and validating. Lean on it instead of hand-rolling these each time.
The one idea that makes BPMN tractable: two layers
A .bpmn file holds two layers in one XML document:
- Semantics - the actual process:
bpmn:processwith tasks, gateways, events, andsequenceFlows connecting them. This is the meaning. - Diagram interchange (DI) -
bpmndi:BPMNDiagramwith x/y coordinates for every shape and waypoints for every edge. This is only the picture.
Editing DI by hand is where BPMN work goes wrong: coordinates drift, shapes
overlap, edges cross. So we never hand-write DI. You edit semantics; the
layout command owns the DI. That is exactly what makes the diagram "clear" - a
tidy left-to-right layout, generated deterministically.
layout is non-destructive by default, which is the rule that keeps you out
of trouble: on a file that already has a diagram it preserves the existing
layout and only syncs it to your edit (prune shapes for deleted elements, place
shapes for new ones). On a file with no DI it generates a fresh layout. It only
throws the whole diagram away and rebuilds from scratch when you pass
--rebuild. So the habit is simple: after editing semantics, always run
layout; it never destroys a good diagram.
Setup (once per machine)
The script needs two npm packages. From the skill's own directory:
npm install --prefix "<SKILL_DIR>"
<SKILL_DIR> is the folder containing this SKILL.md. After that, the four
commands below are available. If a run fails with "Cannot find package", the
install step was skipped - run it and retry.
What ships with it
40 files 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.
- package-lock.json 2.6 KB
- package.json 353 B
- README.md 4.4 KB
- references/bpmn-reference.md 11 KB
- scripts/bpmn-tool.mjs 5.4 KB runs code
- scripts/lib.mjs 44 KB runs code
- test/artifacts.test.mjs 1.6 KB runs code
- test/collaboration.test.mjs 2.4 KB runs code
- test/fidelity.test.mjs 952 B runs code
- test/fixtures/add-boundary.bpmn 1.6 KB
- test/fixtures/added-node.bpmn 1.5 KB
- test/fixtures/bad-boundary.bpmn 757 B
- test/fixtures/bad-events.bpmn 530 B
- test/fixtures/clean-linear-v2.bpmn 573 B
- test/fixtures/clean-linear.bpmn 468 B
- test/fixtures/collab-uneven.bpmn 1.2 KB
- test/fixtures/collab.bpmn 1.1 KB
- test/fixtures/data-artifacts.bpmn 902 B
- test/fixtures/deadend.bpmn 561 B
- test/fixtures/deadlock.bpmn 841 B
- test/fixtures/implicit-split.bpmn 538 B
- test/fixtures/insert-between.bpmn 1.3 KB
- test/fixtures/internal-msgflow.bpmn 932 B
- test/fixtures/lane-gap.bpmn 821 B
- test/fixtures/lanes.bpmn 929 B
- test/fixtures/nostart.bpmn 352 B
- test/fixtures/overlap-di.bpmn 1021 B
- test/fixtures/semantics-subprocess.bpmn 932 B
- test/fixtures/stale-di.bpmn 1.6 KB
- test/fixtures/stale-edge.bpmn 1.3 KB
- test/fixtures/subprocess-multiplane.bpmn 3.6 KB
- test/fixtures/unreachable.bpmn 549 B
- test/lanes.test.mjs 1.8 KB runs code
- test/layout.test.mjs 1.9 KB runs code
- test/lint-rules.test.mjs 1.9 KB runs code
- test/lint.test.mjs 1.7 KB runs code
- test/qa.test.mjs 1.4 KB runs code
- test/resync.test.mjs 4.6 KB runs code
- test/utils.test.mjs 1.5 KB runs code
- test/validate.test.mjs 1.4 KB runs code
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.
- 10d ago First seen · 221 lines · 142 tokens per session scan A eed3d31b3c0d
bpmn is a skill published in the GitHub repository architawr/claude-bpmn-skill (5 stars, last pushed 3mo ago), licensed MIT. It adds 142 tokens to every session and 2,857 once invoked, about $0.0007 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
job-description-skill
A job-description analysis skill that turns a vacancy listing and a candidate’s background into an HTML report about fit, gaps, interview topics, and application strategy.
offer-compare-skill
A decision assistant for comparing two or more job offers across pay, growth, company strength, team risk, promotion, AI exposure, and lifestyle. Total compensation means the combined value of salary, bonuses, shares, and sign-on payments.
offer-toolkit-skill
A set of job-search tools covering the path from finding a vacancy to accepting an offer. It includes separate tools for job searches, job-description analysis, tailored resumes, behavioral interviews, offer comparisons, and salary negotiation.
bq-skill
A coaching workflow for building a reusable library of truthful stories for behavioral job interviews. It uses structures such as STAR—Situation, Task, Action, Result—and can connect stories to a job description and résumé.
job-hunt-skill
A workflow for finding and maintaining a searchable list of job openings from LinkedIn and public websites. It can use a résumé, career goals, example job descriptions, or existing links to build the list.
linkedin-job-search-skill
A job-search assistant that uses a sample job description and your resume to find and rank similar public LinkedIn Jobs listings. LinkedIn Jobs is LinkedIn’s section for advertised employment positions.