workflow-framework-generator

workflow-framework-generator is a skill for Claude Code, Codex from lync-cyber/CataForge. It costs 97 tokens per session (3,640 once invoked), scanned A, original, MIT.

A generator for complete CataForge-style AI-agent workflows adapted to a chosen workflow type and AI coding platform. It can produce agents, skills, workflows, rules, configuration, schemas, and documentation structure.

In plain words
What is it for?
Use it to generate a framework for software development, content work, e-commerce, research, or another domain targeting Claude Code, Cursor, Codex, or OpenCode.
Why use it?
It removes the need to assemble a new multi-part agent workflow framework by hand and records the design decisions behind it.

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/lync-cyber/cataforge/workflow-framework-generator
Any agent
npx skills add lync-cyber/CataForge --skill workflow-framework-generator
Clone the repo
git clone --depth 1 https://github.com/lync-cyber/CataForge

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-framework-generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/lync-cyber/cataforge/workflow-framework-generator.svg)](https://agentmods.dev/skills/lync-cyber/cataforge/workflow-framework-generator)
Your own site
<a href="https://agentmods.dev/skills/lync-cyber/cataforge/workflow-framework-generator"><img src="https://agentmods.dev/badge/skills/lync-cyber/cataforge/workflow-framework-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 97 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,640 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.00097 $0.03640
Opus 5 $0.00048 $0.01820
Sonnet 5 $0.00019 $0.00728
Haiku 4.5 $0.00010 $0.00364

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

Security

Grade A, and why

workflow-framework-generator 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 3d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/__init__.py, scripts/scaffold.py, scripts/validate_framework.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.

.cataforge/skills/workflow-framework-generator/SKILL.md · 330 lines

How it starts

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

工作流框架生成器 (workflow-framework-generator)

能力边界

  • 能做: 根据工作流类型+目标平台,生成完整的CataForge兼容框架(agents/skills/workflows/configs)
  • 不做: 执行生成的工作流、替代领域专家做业务决策、硬编码特定工作流逻辑

输入规范

  • 必填: workflow_type 工作流类型(自由文本,如"公众号写作")+ target_ide 目标平台(枚举: claude-code | cursor | codex | opencode)
  • 可选: multi_agent / tool_calls / structured_output / output_format / project_name / output_dir 约束字段(详见 Phase 1.1)
  • 上游知识源: references/domain-patterns.md(领域模式库)+ references/platform-capabilities.md(平台能力矩阵)

输出规范

  • 输出目录: <output_dir>/(默认 ./generated-frameworks/<project_name>/
  • 完整产出: .cataforge/{framework.json, PROJECT-STATE.md, agents/, skills/, workflows/, hooks/hooks.yaml, rules/, platforms/, schemas/} + 根目录 README.md + docs/ 空目录
  • 设计决策记录: 控制台输出 §设计决策输出 段定义的四节内容
  • 不写入: 用户项目源码、CI 配置、运行时数据

执行流程

本 Skill 按三个阶段执行:解析 → 规划 → 生成。每个阶段有明确的输入输出契约。


Phase 1: 输入解析与需求澄清

1.1 解析用户输入

从用户消息中提取以下字段:

workflow_type: <string>        # 工作流类型 (必填)
target_ide: <string>           # 目标平台 (必填,枚举: claude-code | cursor | codex | opencode)
constraints:
  multi_agent: <bool>          # 是否需要多智能体协作 (默认: true)
  tool_calls: <bool>           # 是否需要工具调用 (默认: true)
  structured_output: <bool>    # 是否需要结构化产出 (默认: true)
  output_format: <string>      # 产出格式 (默认: markdown)
project_name: <string>         # 项目名称 (可选,默认从 workflow_type 派生)
output_dir: <string>           # 输出目录 (可选,默认: ./generated-frameworks/<project_name>)
1.2 输入验证
  • target_ide 必须是已知平台之一。若用户输入模糊(如"vscode"),映射到最接近的平台并确认
  • workflow_type 为自由文本,但需确认其属于可识别的领域类别
1.3 需求澄清(条件触发)

当以下条件满足时,必须向用户提出澄清问题(每批 ≤ MAX_QUESTIONS_PER_BATCH):

条件 澄清问题方向
workflow_type 含糊(如仅"写作") 具体写作类型、目标平台/渠道、产出格式
领域不熟悉 核心业务流程、关键产出物、质量标准
multi_agent 未指定 工作流复杂度是否需要多角色协作
涉及外部系统 需要集成的API/服务/数据源

澄清问题格式:

为了生成最适合的工作流框架,我需要确认以下信息:
1. [具体问题]
2. [具体问题]
3. [具体问题]
1.4 领域调研增强(条件触发)

当用户需求涉及你不熟悉的领域知识时:

  1. 读取 references/domain-patterns.md 查找是否有匹配的领域模式
  2. 若无匹配,使用 web_search 检索该领域的标准工作流程和最佳实践
  3. 将调研结果结构化为:关键角色、核心流程、产出物清单、质量标准
  4. 将结构化结果融入后续的架构设计

Read the full file on GitHub · 330 lines

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. 3d ago First seen · 330 lines · 97 tokens per session scan A 11b9b70452e0

Subscribe to this mod's changes

workflow-framework-generator is a skill published in the GitHub repository lync-cyber/CataForge (128 stars, last pushed 1mo ago), licensed MIT. It adds 97 tokens to every session and 3,640 once invoked, about $0.0005 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

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens