用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tutti-os/dynamic-workflows --skill workflow-authoring命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | workflow-authoring |
| description | 根据业务请求和现有 Blueprint 模式创建独立的 tutti.flow.v1 Bundle。 |
在 draft.flow/ 中创建完整 Flow Bundle。Bundle 是编写阶段的模版产物,运行时必须
完全独立;绝不能从 Blueprint 继承代码。
编写前阅读 dsl-reference.md、patterns.md 和 blueprint-guide.md。
将请求转换为一个持久化 Cycle:根节点、等待点、终态结果以及下一个 Cycle。
按能力搜索一次 Blueprint,并使用 blueprints get --include-script 检查结构最接近
的完整 Bundle。
判断哪些工作是确定性的(script)、外部写操作(effect)、外部状态观察
(gate)、智能工作(agent)或产品原生决策(human)。
编写 draft.flow/flow.js 以及 scripts/ 下引用的文件。仅在声明 Memory 时添加
memory.template.md。
在不执行任何 Bundle 代码的情况下验证:
tutti --json dynamic-workflows authoring validate --job-id <job-id> --directory draft.flow --review-mode agent
修复每个错误,等待独立审查,并处理所有发现:
tutti --json dynamic-workflows authoring review wait --job-id <job-id>
将审查后的 Bundle 作为不可变 Draft 提交:
tutti --json dynamic-workflows authoring submit --job-id <job-id> --directory draft.flow
只有响应包含 accepted: true 和 versionStatus: "draft" 时才算完成交付。Publish
和 Activate 由用户决定;不要执行这两项操作。
flow.js 是声明式文件,不得包含 import 或运行时执行。apply() 和 reconcile()。waiting;不得 sleep 或轮询。completeCycle 或 cancelCycle。secrets: ["NAME"] 明确列出它们的 Code 节点。不得插入 Agent 提示词,也不得
出现在节点输出中。meta.requiresCwd 为 true,调用方必须在激活前配置项目 cwd。