Bpmn export
Skill emaarco/hogwarts/plugins/felix-felicis/skills/bpmn-export
A magical place where my skills, rules, and plugins for AI agents are defined, which magically boost productivity 🏰🪄
npx -y skills add emaarco/hogwarts --skill bpmn-exportAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Export a BPMN file to an image (SVG, PNG, or PDF) using npx bpmn-to-image. Use when asked to export, render, or convert a .bpmn diagram to an image.
SKILL.md
1.3 KB, as published. Nobody here has run it
Skill: bpmn-export
Exports a BPMN file to an image using npx bpmn-to-image.
Steps
1. Identify the source file
If the user has not provided a .bpmn file path, ask which file to export and what output format they want (.svg, .png, or .pdf).
2. Determine output path
Default: <module-root>/assets/<basename>.<ext>, where the module root is the nearest ancestor directory of the BPMN file containing a build manifest (package.json, pom.xml, build.gradle, …). If the repo has no module structure, use assets/ at the repo root. Ask if unsure.
3. Run the export
Use --yes so npx installs the package without prompting (a plain npx call hangs on the install confirmation in non-interactive runs):
npx --yes bpmn-to-image <path-to-bpmn>:<path-to-output-image>
Example:
npx --yes bpmn-to-image services/example-service/src/main/resources/bpmn/membership.bpmn:services/example-service/assets/membership.svg
4. Confirm
Report the output path to the user and confirm the export succeeded.