create-workflow-python

create-workflow-python is a skill for Claude Code, Codex from diagrid-labs/dapr-skills. It costs 47 tokens per session (1,548 once invoked), scanned A, original, MIT.

A guided setup for creating a Dapr Workflow application in Python. Dapr Workflow helps coordinate steps in a long-running application.

In plain words
What is it for?
Use it to create a Python workflow project, verify that it builds, and produce a README explaining how to run and test it.
Why use it?
It gives the project a defined setup and verification process, so the required files and build checks are not missed.

Skill for Claude CodeCodex

Part of the dapr-skills plugin — 18 skills shipped together

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/diagrid-labs/dapr-skills/create-workflow-python
Any agent
npx skills add diagrid-labs/dapr-skills --skill create-workflow-python
Clone the repo
git clone --depth 1 https://github.com/diagrid-labs/dapr-skills

Made for: Claude Code, Codex.

Or install dapr-skills, the plugin that ships this one along with the rest of its 18 skills.

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 create-workflow-python

README.md
[![agentmods](https://agentmods.dev/badge/skills/diagrid-labs/dapr-skills/create-workflow-python.svg)](https://agentmods.dev/skills/diagrid-labs/dapr-skills/create-workflow-python)
Your own site
<a href="https://agentmods.dev/skills/diagrid-labs/dapr-skills/create-workflow-python"><img src="https://agentmods.dev/badge/skills/diagrid-labs/dapr-skills/create-workflow-python.svg" alt="Measured on agentmods" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,548 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00047 $0.01548
Opus 5 $0.00023 $0.00774
Sonnet 5 $0.00009 $0.00310
Haiku 4.5 $0.00005 $0.00155

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

Security

Grade A, and why

create-workflow-python scanned grade A with 1 finding 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 4d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

5. List the available endpoints in the main.py file and provide examples how to call these using curl. Also include a link to the `local.http` file.
skills/create-workflow-python/SKILL.md · 147 lines

How it starts

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

Create Dapr Workflow Python Application

Overview

This skill describes how to create a Dapr Workflow application using Python.

Execution Order

You MUST follow these phases in strict order:

  1. Check specification - Check if the user specified what needs to be built.
  2. Project Setup — Create all files and folders.
  3. Verify — Verify that the project builds.
  4. Create README.md — Create a readme that summarizes what is built and how to run & test the application. Do not provide instructions at the end of this phase.
  5. Show final message - Your LAST output MUST be EXACTLY the message defined in the ## Show final message section. Do NOT add any other text, summary, or commentary after it.

Check specification

If you don't have enough context what to build, ask the user the following clarifying questions one by one using an interview style:

  1. What is the purpose of the workflow application?
  2. Describe how workflow should work. Which patterns should be used?
  3. Specify the input and output objects of the workflow.
  4. What's the name of this project? This will be used as the folder name. Don't use any spaces in this name.

Prerequisites

The following must be installed by the user before this skill can run:

Additional runtime dependencies (handled during project setup):

  • Python package: dapr-ext-workflow version 1.18.0 (pulls in dapr 1.18.0)
  • Start the Diagrid Dev Dashboard: docker run -p 8080:8080 ghcr.io/diagridio/diagrid-dashboard:latest

Project Setup

Create the project root folder inside the current location where the terminal is open:

Read the full file on GitHub · 147 lines

Files

What ships with it

1 file 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. 4d ago First seen · 147 lines · 47 tokens per session scan A ef9567bbd993

Subscribe to this mod's changes

create-workflow-python is a skill published in the GitHub repository diagrid-labs/dapr-skills (12 stars, last pushed 12d ago), licensed MIT. It adds 47 tokens to every session and 1,548 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

langgraph

LangGraph 1.x (LTS) Python workflow patterns for state management, delta channels, resilience (node timeouts, error handlers, graceful drain), routing, parallel execution, supervisor-worker, tool calling, checkpointing, human-in-loop, streaming (v2 format), subgraphs, and functional API. Use when building LangGraph…

yonatangross/orchestkit · 80 tokens

opengis-all

Use when navigating end-to-end GIS workflows — discover the full toolchain from GDAL data processing through GeoServer publishing to CesiumJS/OpenLayers visualization. One-stop index covering the complete open-source GIS data pipeline.

znlgis/opengis-skills · 48 tokens

star-env-builder

Create or rebuild the conda env or venv, install dependencies, verify the environment — so plan execution has a working interpreter. Reads .env: a valid CONDAHOME creates conda env ENVNAME (argument, default CODENAME); otherwise a .venv in the root. An existing environment is never deleted — after confirmation it is…

wanghao9610/STAR · 199 tokens

codexer

Python research assistant with Context7 MCP. Use for Python library research, evaluating packages, enforcing strict Python coding standards, or fetching up-to-date library docs via Context7.

PracticalSwan/agent-skills · 38 tokens

freecad-scripts

Expert skill for writing FreeCAD Python scripts, macros, and automation. Use when asked to create FreeCAD models, parametric objects, Part/Mesh/Sketcher scripts, workbench tools, GUI dialogs with PySide, Coin3D scenegraph manipulation, or any FreeCAD Python API task. Covers FreeCAD scripting basics, geometry creation…

boshi-xixixi/TraeSkill · 85 tokens

arize-annotation

INVOKE THIS SKILL when creating, managing, or using annotation configs or annotation queues on Arize (categorical, continuous, freeform), or applying human annotations to project spans via the Python SDK. Configs are the label schema for human feedback; queues are review workflows that route records to annotators.…

boshi-xixixi/TraeSkill · 97 tokens