workflow-skill-creator

workflow-skill-creator is a skill for Claude Code from SummerSec/SumSec-Skills. It costs 129 tokens per session (1,405 once invoked), scanned A, original, Apache-2.0.

A guide for creating skills that coordinate several dependent steps, preserve progress, and produce consistent results. A skill is a reusable set of instructions for a coding agent.

In plain words
What is it for?
Use it to design workflow, pipeline, analysis, audit, or other multi-step skills with progress files, helper scripts, and checks.
Why use it?
It helps prevent skipped steps, lost information between steps, inconsistent outputs, and oversized instruction files.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter. Also seen: reads .claude/ paths.

Part of the agents-dev plugin — 6 skills, 3 agents, 1 plugin 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/summersec/sumsec-skills/workflow-skill-creator
Any agent
npx skills add SummerSec/SumSec-Skills --skill workflow-skill-creator
Clone the repo
git clone --depth 1 https://github.com/SummerSec/SumSec-Skills

Made for: Claude Code.

Or install agents-dev, the plugin that ships this one along with the rest of its 6 skills, 3 agents, 1 plugin.

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-skill-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/summersec/sumsec-skills/workflow-skill-creator.svg)](https://agentmods.dev/skills/summersec/sumsec-skills/workflow-skill-creator)
Your own site
<a href="https://agentmods.dev/skills/summersec/sumsec-skills/workflow-skill-creator"><img src="https://agentmods.dev/badge/skills/summersec/sumsec-skills/workflow-skill-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,405 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.1 $0.00129 $0.01405
Opus 5 $0.00064 $0.00702
Sonnet 5 $0.00026 $0.00281
Haiku 4.5 $0.00013 $0.00140

Measured 6d ago against content hash ccf5d7ac5c35, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

workflow-skill-creator 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 6d ago.

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

agents-dev/skills/workflow-skill-creator/SKILL.md · 99 lines

How it starts

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

Workflow Skill Creator

核心角色

将多步骤、有状态、需跨步骤传递数据的复杂任务转化为结构化的流程编排 Skill。

适用场景

以下信号使用本 skill(≥3 个即适用):

  • 任务需要 ≥3 个顺序步骤,步骤间有依赖关系
  • 步骤间需传递和累积状态数据(中间分析结果)
  • 需要确定性脚本辅助重复操作(路径生成、数据匹配、格式转换)
  • 有明确判定规则和领域知识需引用
  • 输出需标准化格式(报告模板、JSON 结构)
  • 需强制执行顺序,跳步导致分析不完整

不适用场景 — 使用普通 skill-creator:

  • 单步操作(格式转换、代码生成)
  • 无状态传递的简单指导
  • 纯知识检索

六大架构模式

详细原理与反模式见 架构模式参考

模式 核心思想 解决的问题
1. 进度文件驱动 一个 Markdown 文件贯穿全流程,追加不覆盖 跨步骤状态丢失
2. 步骤框架分离 SKILL.md <200行,每步详细框架独立文件 SKILL.md 膨胀
3. 三阶段执行 每步:前置校验 → 执行记录 → 后置校验 跳步、结果不验证
4. 脚本自动化 确定性任务提取为独立脚本 输出不一致
5. 资源分层 元数据→主体→框架→参考 四级加载 上下文浪费
6. 路径一致性 {progress_file_path} 占位符全程传递 路径断裂

创建流程(6 步)

详细操作指南见 创建流程详细指南

Step A: 需求梳理与步骤分解

先收集具体示例(用户原句写法、典型场景、期望输出),再确认任务画像(输入/输出/步骤数)。将任务分解为 3-8 个有明确依赖关系的顺序步骤,识别需跨步骤传递的状态数据。

Step B: 目录结构设计

使用脚手架脚本一键生成标准目录:

python3 ~/.claude/skills/workflow-skill-creator/scripts/scaffold_workflow_skill.py \
  --name {skill-name} \
  --steps {n} \
  --step-names "步骤1,步骤2,..." \
  --output ~/.claude/skills/{skill-name}/

脚本生成:SKILL.md 骨架、步骤框架文件、路径生成脚本、进度文件规范、模板文件。生成后逐文件填写具体内容。

Step C: 撰写 SKILL.md

遵循 Skill 模板,保持主体 <200 行。核心区块:角色 → 场景 → 架构模式 → 步骤概要 → 资源索引。用祈使语气,解释"为什么"而非仅仅"必须"。

Step D: 撰写步骤框架文件

每个 references/step_frameworks/stepN_xxx.md 遵循 Step 框架模板。必须包含:校验规则(前置+后置 checklist)、核心执行流程(可复制执行的命令)、完成标准与验收。开头必须有 ⚠️ 路径一致性要求 警告块。

Step E: 撰写脚本和模板

必建:路径生成脚本 — 根据输入参数生成确定性进度文件路径。可选:数据匹配脚本、格式转换脚本、校验脚本。模板:进度文件结构模板 + 最终输出模板。

Step F: 迭代优化

创建完成后,用真实场景测试 skill,根据执行表现调整步骤粒度、校验规则和模板。详细方法见 创建流程详细指南 Step F。


参考资源

方法论文档

Read the full file on GitHub · 99 lines

Files

What ships with it

8 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. 6d ago First seen · 99 lines · 129 tokens per session scan A ccf5d7ac5c35

Subscribe to this mod's changes

workflow-skill-creator is a skill published in the GitHub repository SummerSec/SumSec-Skills (8 stars, last pushed 22d ago), licensed Apache-2.0. It adds 129 tokens to every session and 1,405 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-31.

Related

Other skills, from other repositories

dsh-web-pre-push-checks

Use before pushing, opening or updating a pull request, or claiming dsh-web checks pass. Selects the required repository gates and diff-specific generation, build, and GUI evidence.

zhu1090093659/dsh-web · 45 tokens

dsh-web-documentation

Use when adding or editing dsh-web README files, docs, AGENTS.md instructions, user-facing configuration text, or bilingual documentation pairs.

zhu1090093659/dsh-web · 34 tokens

dsh-sdk-upgrade

Safely select and install a compatible official @deepseek-ai SDK release for dsh plugin projects (dsh-web, dsh-trading, and similar monorepos) from npm using an isolated worktree, explicit cohort review, CI-equivalent validation, and controlled rollout — including syncing the project's declared DSH host-version floor…

zhu1090093659/dsh-web · 176 tokens

dsh-web-sdk-compatibility

Adapt and repair dsh-web after an approved official @deepseek-ai SDK/runtime cohort is selected or installed. Compare public API, type, service-injection, module-table, protocol, and behavior changes; map every change to repository consumers; implement the smallest fixes and durable compatibility contracts; handle…

zhu1090093659/dsh-web · 107 tokens

ov-experience-memory

Retrieve and apply OpenViking Experience memories through the Agent runtime's generic OpenViking search and read tools. Use before or during executable, multi-step, or tool-based work such as coding, file or data changes, configuration, deployment, workflow execution, and failure recovery when prior operational…

volcengine/OpenViking · 78 tokens

audit-playbook

代码审计模式作战手册:审计前置识别、Fortify 规则体系与 OWASP Agentic Top 10 (2026) 标准参考、危险 sink 优先策略、供应链与配置部署审计、确证闭环流程、交叉复核规范、调用链引用规范、动态证据留痕与报告模板、同型命中横扫纪律(三层放大)、场景化审计卡(LLM Agent/供应链/配置部署/反编译四卡)、动态验证线(环境登记/调试纪律/payload 打点)、框架专项路由、机器可读工件 sinks.csv·scan-reconcile.csv、经验召回。.

SeaOf0/dsh-redteam-model · 155 tokens