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 diagrid-labs/dapr-skills --skill create-workflow-from-diagramgit clone --depth 1 https://github.com/diagrid-labs/dapr-skillsWrote 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/diagrid-labs/dapr-skills/create-workflow-from-diagram)<a href="https://agentmods.dev/skills/diagrid-labs/dapr-skills/create-workflow-from-diagram"><img src="https://agentmods.dev/badge/skills/diagrid-labs/dapr-skills/create-workflow-from-diagram/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/diagrid-labs/dapr-skills/create-workflow-from-diagram"><img src="https://agentmods.dev/badge/skills/diagrid-labs/dapr-skills/create-workflow-from-diagram.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 9 Skill selects an external model or provider that may use a different account or billing plan than the operator expects. Undisclosed model switches can cause unexpected cost or quota consumption.Fix: Remove the model/provider override or disclose it prominently and require explicit operator approval before invoking an external coding CLI or billed model.
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.00124 | $0.01948 |
| Opus 5 | $0.00062 | $0.00974 |
| Sonnet 5 | $0.00025 | $0.00390 |
| Haiku 4.5 | $0.00012 | $0.00195 |
Grade A, and why
create-workflow-from-diagram 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 — 141 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create Dapr Workflow from Diagram
Overview
This skill converts a workflow diagram into a runnable Dapr workflow project. Two input paths are supported:
- Image (PNG / JPG / JPEG / GIF / WebP) — uses Claude's vision to extract workflow structure
- BPMN 2.0 XML (
.bpmn,.bpmn20.xml) — parses the XML deterministically
Both paths produce the same intermediate representation (IR, JSON Lines), which is then rendered into code for the target language.
Execution Order
You MUST follow these phases in strict order:
- Check specification — Confirm you have the input diagram + target language. Ask clarifying questions only if missing.
- Phase 0: Detect input type — Decide between the image path and the BPMN path.
- Phase 1: Diagram → IR — Emit JSON Lines IR per
prompts/ir-schema.md. - Phase 2: Validate IR — Light checks per
prompts/ir-schema.mdacceptance rules. - Phase 3: IR → code — Render the project for the target language using
prompts/languages/<lang>.md. - Create README.md — Summarise the generated project + how to run it.
- Show final message — Your LAST output MUST be EXACTLY the message defined in
## Show final message. No extra text.
Check specification
You need three things. Ask at most three clarifying questions, interview-style, only for items not already provided:
- Input diagram — a path to a PNG/JPG/JPEG/GIF/WebP image or a
.bpmn/.bpmn20.xmlfile. If the user pasted the image directly into the chat, use that. - Target language — one of:
go,python,csharp,javascript,java. Default:python. - Project name — used as the folder name. No spaces. Defaults to a camelCased name derived from the workflow's
<bpmn:process @id>or image filename.
Prerequisites
The following must be installed by the user before running the generated project:
What ships with it
16 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.
- examples/order-process.bpmn 2.5 KB
- examples/order-process.ir.jsonl 1.9 KB
- examples/pizza-order.png 192 KB
- examples/user-order.png 61 KB
- prompts/bpmn-to-ir.md 6.8 KB
- prompts/code-quality-judge.md 1.9 KB
- prompts/final-turn-prettifier.md 12 KB
- prompts/guardrails.md 1.8 KB
- prompts/ir-schema.md 79 KB
- prompts/languages/csharp.md 7.7 KB
- prompts/languages/go.md 7.5 KB
- prompts/languages/java.md 9.7 KB
- prompts/languages/javascript.md 13 KB
- prompts/languages/python.md 14 KB
- prompts/system-prompt.md 2.4 KB
- REFERENCE.md 5.9 KB
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 · 141 lines · 124 tokens per session scan A 492e591f97f3
create-workflow-from-diagram is a skill published in the GitHub repository diagrid-labs/dapr-skills (12 stars, last pushed 2d ago), licensed MIT. It adds 124 tokens to every session and 1,948 once invoked, about $0.0006 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.
Other skills, from other repositories
fullstack-guide
A development guide for building full-stack applications with React and TypeScript on the frontend and Node.js and Supabase on the backend. It covers component structure, data loading, routing, styling, performance, and TypeScript practices.
api-documentation-discovery
Use when APIs fail repeatedly with version-related errors (method not found, wrong arguments, unknown flag) or when about to use library APIs with uncertain knowledge - guides finding current, accurate documentation instead of guessing from training data.
mcp-building
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools.
add-matrix
Add Matrix channel integration via Chat SDK. Works with any Matrix homeserver.
django-storages-s3
Use when configuring Django to store static and media files on AWS S3 with django-storages. Invoke when working with the STORAGES setting, S3 buckets, presigned URLs, CloudFront, or boto3-backed file storage in settings.py. Configures the Django 4.2+ STORAGES dict, public/private custom backends, presigned GET/POST…
laravel-specialist
Build and configure Laravel 10+ applications, including creating Eloquent models and relationships, implementing Sanctum authentication, configuring Horizon queues, designing RESTful APIs with API resources, and building reactive interfaces with Livewire. Use when creating Laravel models, setting up queue workers…