workflow

workflow is a skill for Claude Code, Codex from dcc-mcp/dcc-mcp-core. It costs 65 tokens per session (538 once invoked), scanned A, original, MIT.

A tool for running several MCP actions in sequence, passing results from earlier actions into later ones. MCP is a way for an agent to call connected tools, and DCC means digital content creation software.

In plain words
What is it for?
Use it for repeatable workflows such as listing objects, renaming them, checking their names, and exporting an FBX file.
Why use it?
It removes the need to coordinate each step manually and can stop when a required step fails while returning the partial results.

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/dcc-mcp/dcc-mcp-core/workflow
Any agent
npx skills add dcc-mcp/dcc-mcp-core --skill workflow
Clone the repo
git clone --depth 1 https://github.com/dcc-mcp/dcc-mcp-core

Made for: Claude Code, Codex.

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 workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/workflow.svg)](https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/workflow)
Your own site
<a href="https://agentmods.dev/skills/dcc-mcp/dcc-mcp-core/workflow"><img src="https://agentmods.dev/badge/skills/dcc-mcp/dcc-mcp-core/workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 538 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.00065 $0.00538
Opus 5 $0.00032 $0.00269
Sonnet 5 $0.00013 $0.00108
Haiku 4.5 $0.00006 $0.00054

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

Security

Grade A, and why

workflow 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/run_chain.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.

examples/skills/workflow/SKILL.md · 77 lines

What it actually says

Workflow Orchestration

Multi-step action chaining for DCC pipelines.

Overview

The workflow__run_chain tool lets an agent (or a human) execute a sequence of dcc-mcp-core actions in order. Results from earlier steps flow into later steps via context merging and {key} parameter interpolation.

Example: Select → Rename → Validate → Export

{
  "steps": [
    {
      "label": "List mesh objects",
      "action": "maya_scene__list_objects",
      "params": {"type": "mesh"}
    },
    {
      "label": "Rename with prefix",
      "action": "maya_scene__rename_objects",
      "params": {"prefix": "char_"}
    },
    {
      "label": "Validate naming",
      "action": "maya_pipeline__validate_naming",
      "params": {}
    },
    {
      "label": "Export FBX",
      "action": "maya_scene__export_fbx",
      "params": {"output": "/tmp/export.fbx"},
      "stop_on_failure": true
    }
  ]
}

Error Recovery

If a step fails and stop_on_failure is true, the chain halts immediately and returns the partial results so far, plus the error details. The agent can then use dcc_diagnostics__screenshot or dcc_diagnostics__audit_log to investigate before retrying.

Context Interpolation

Use {key} placeholders in params to inject values from the running context:

{"action": "export_fbx", "params": {"output": "{export_path}"}}

The context starts from the context input, then accumulates each step's context output.

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. 5d ago First seen · 77 lines · 65 tokens per session scan A 30a5d6436c8b

Subscribe to this mod's changes

workflow is a skill published in the GitHub repository dcc-mcp/dcc-mcp-core (42 stars, last pushed today), licensed MIT. It adds 65 tokens to every session and 538 once invoked, about $0.0003 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.

Related

Other skills, from other repositories

artclaw-tool-creator

ArtClaw Tool Creator - AI 引导创建自定义 DCC 工具。支持三种创建方式:包装 Skill、编写脚本、组合工具。.

IvanYangYangXi/artclaw_bridge · 41 tokens

houdini-simulation

Houdini 仿真工作流指南:Pyro/RBD/FLIP/Vellum 的标准搭建流程。 Use when AI needs to: (1) set up simulations, (2) configure DOPs, (3) build Pyro/RBD/FLIP/Vellum setups. Houdini only (runpython).

IvanYangYangXi/artclaw_bridge · 75 tokens

sd-node-ops

SD 节点创建、连接、参数设置指南。包含原子节点和库节点的正确使用方式。 Use when AI needs to: (1) create nodes, (2) connect nodes, (3) set parameters, (4) build material graphs. Substance Designer only (runpython).

IvanYangYangXi/artclaw_bridge · 67 tokens

houdini-node-ops

Houdini 节点创建、连接、参数设置的操作指南。 Use when AI needs to: (1) create nodes, (2) connect nodes, (3) set node parameters, (4) build node networks. Houdini only (runpython).

IvanYangYangXi/artclaw_bridge · 61 tokens

ue5-blueprint-workflow

UE5.6/UE5.7 Blueprint graph workflow for feature implementation, input events, node wiring, and graph validation. Use when requests involve adding Blueprint logic, keyboard input behavior, function chains, event graph edits, or pin-level connection guidance.

IvanYangYangXi/artclaw_bridge · 58 tokens

blender-context

查询 Blender 编辑器上下文:当前选择、场景信息、文件名、视口相机状态、集合结构。 Use when AI needs to: (1) get selected objects, (2) get scene overview, (3) check current file, (4) inspect viewport state, (5) get collection hierarchy. Blender only (runpython).

IvanYangYangXi/artclaw_bridge · 77 tokens