resources

A set of instructions for converting workflow descriptions into flat JSON models of business processes. The output can include ordered steps, activities, events, gateways, branches, and swimlanes.

In plain words
What is it for?
Use it to generate BPMN-style process JSON with step IDs, task types, labels, branch conditions, next-step links, and optional swimlanes.
Why use it?
It provides a fixed JSON structure for representing processes, making workflow descriptions easier for software to consume or visualize.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/jenreh/appkit/resources
Any agent
npx skills add jenreh/appkit --skill resources
Clone the repo
git clone --depth 1 https://github.com/jenreh/appkit

Made for: Claude Code, Codex.

Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,515 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.01515
Opus 5 $0.00000 $0.00758
Sonnet 5 $0.00000 $0.00303
Haiku 4.5 $0.00000 $0.00152

Measured 2d ago against content hash 92e6fb5f110e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

resources 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 2d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (__init__.py, bpmn_viewer.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

components/appkit-mcp-bpmn/src/appkit_mcp_bpmn/resources/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a BPMN process JSON generator. Convert workflow descriptions into a flat JSON process model. Output ONLY the raw JSON — no markdown fences, no comments, no explanation.

JSON SHAPE

{
  "steps": [ ... ],
  "lanes": null
}

steps — flat ordered array of step objects (see below). lanes — null, or array of {"name": "...", "steps": ["id1", "id2"]} for swimlanes.

STEP OBJECT

Every step has exactly these 5 fields (all required, use null when not applicable):

{"id": "some_id", "type": "task", "label": "Do something", "branches": null, "next": null}
Field Type Description
id string Unique identifier. Only A-Z a-z 0-9 _.
type string One of the step types below.
label string Human-readable label.
branches array or null Only for gateways: [{"condition": "...", "target": "step_id"}]. null for all others.
next string or null Explicit jump target (overrides sequential flow). null = flow to next step in list.

STEP TYPES

Activities: task, userTask, serviceTask, sendTask, receiveTask, businessRuleTask, manualTask, scriptTask, callActivity, subProcess Events: startEvent, endEvent, intermediateCatchEvent, intermediateThrowEvent Gateways: exclusive, parallel, inclusive, eventBased Merge: merge — synchronization point for parallel branches

FLOW RULES

  1. Steps flow sequentially: step[0] → step[1] → step[2] → ...
  2. Gateway steps: flow goes to each branch.target (NOT to the next step)
  3. next field: when set, flow jumps to that step instead of the next one in the list
  4. endEvent: no outgoing flow (never set next on endEvent)
  5. Loops: use next to jump back to an earlier step

GATEWAY RULES

  • Gateways MUST have branches with at least 2 entries
  • Gateways MUST have next: null (flow goes through branches only)
  • Each branch has condition (label) and target (step id to jump to)
  • For exclusive: exactly one branch is taken based on condition
  • For parallel: ALL branches execute simultaneously — MUST use merge step to synchronize
  • Non-gateway steps MUST have branches: null

Read the full file on GitHub · 133 lines

Files

What ships with it

2 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.

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. 2d ago First seen · 133 lines · 0 tokens per session scan A 92e6fb5f110e

Subscribe to this mod's changes

resources is a skill published in the GitHub repository jenreh/appkit (4 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,515 tokens. 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

generate-asset

Generate a single media asset — image, video, audio, or 3D. Use when the user wants one output from a clear prompt. Calls muapiselect to pick the best model, then muapigenerate.

SamurAIGPT/muapi-cli · 48 tokens

run-skill

Run a named muapi multi-step recipe (UGC ad, storyboard, brand kit, product video, social carousel…). Use when the brief matches a known workflow. Delegates to the creative-specialist subagent.

SamurAIGPT/muapi-cli · 47 tokens

srt-whiteboard-animation

将 SRT 字幕做成暖米黄纸张底的白板手绘动画:读字幕→输出配图策略→确认后生成统一风格线稿→按叙事语义标注分区→预览台调整→渲染 MP4。编排沿用分区遮罩揭示(annotation.json / sequence / startMs / protectedRegions),但每个区域内的落墨换成 stream 的连续笔迹(骨架/网格 ink→color)。当用户提供 SRT 字幕并要求"字幕做成白板手绘/流式笔迹视频""SRT 生成白板动画""按字幕分镜画手绘"时触发。.

geeklee/srt-whiteboard-animation · 156 tokens

video2mp3

从视频文件中提取音频并保存为 MP3。当用户提到视频转音频、提取音频、抽 MP3、视频提取声音时使用。.

CoderWanFeng/python-office · 43 tokens

videoagent-image-studio

Tired of juggling 8 API keys? This skill gives you one-command access to Midjourney, Flux, Ideogram, and more, with zero setup. Use when you want to generate any image without worrying about API keys.

pexoai/pexo-skills · 53 tokens

comfyui-skill-openclaw

Run registered ComfyUI workflows through the fast comfyui-skill CLI, and use the official local Comfy MCP for live template, node, model, validation, and orchestration capabilities. Use this Skill when: (1) The user requests to "generate an image", "draw a picture", or "execute a ComfyUI workflow". (2) The user has…

HuangYuChuh/ComfyUI_Skills_OpenClaw · 125 tokens