Demonstrates the end-to-end collaboration between a business process workflow (TaskFlow-style workspace orchestration) and a digital asset management tool (ClawHub CLI) — from preparing a publishable artifact to ingesting it into the ClawHub resource center.
Coding
collab-workflow-ingest
Try it协作流程:业务流程梳理 → 数字资源入库。先用 workflow-structurer 逐步澄清流程,生成结构化步骤文档;再用 demo-asset-ingest 的打包规范将成果发布到 ClawHub 资源中心。适用场景:需要将模糊需求转化为可执行流程、并把最终产物沉淀到可检索仓库的工作。
What it does
协作流程:业务流程梳理 → 数字资源入库。先用 workflow-structurer 逐步澄清流程,生成结构化步骤文档;再用 demo-asset-ingest 的打包规范将成果发布到 ClawHub 资源中心。适用场景:需要将模糊需求转化为可执行流程、并把最终产物沉淀到可检索仓库的工作。
The skill document
协作流程:流程梳理 → 资源入库
概述
本技能封装了两个工具的串联协作模式:
| 阶段 | 工具 | 职责 |
|---|---|---|
| 上游:流程处理 | workflow-structurer | 通过渐进式澄清,把模糊需求拆解为含输入/输出/风险/校验/规则的结构化步骤 |
| 下游:资源入库 | demo-asset-ingest | 将上游产物按 ClawHub-skill 规范打包,通过 clawhub publish 发布到资源中心 |
完整执行步骤
Step 1: 用 workflow-structurer 梳理流程
- 调用 workflow-structurer,依次完成 5 个阶段:
- Phase 1 澄清目标(1-2 个问题)
- Phase 2 提取步骤骨架
- Phase 3 逐层钻取每个步骤(输入/输出/职责/风险/校验/规则)
- Phase 4 汇总确认
- Phase 5 生成 handoff 摘要
- 输出物:
workflow-handoff.md(含目标、步骤列表、关键规则、关键风险、校验总结)
Step 2: 按 demo-asset-ingest 规范打包
- 创建目录结构:
collab-asset/ ├── SKILL.md # 技能元数据 + 操作说明 └── references/ └── DESCRIPTION.md # 上游流程梳理产物(handoff 摘要) - 将 Step 1 产出的 handoff 摘要写入
references/DESCRIPTION.md - 验证:
ls -R collab-asset
Step 3: 发布到 ClawHub 资源中心
# 预览(dry-run)
clawhub publish collab-asset --slug collab-workflow-ingest --name "Collab Workflow Ingest" --tags "workflow,ingest,collab" --topics "workflow,ingest" --dry-run
# 正式发布
clawhub publish collab-asset --slug collab-workflow-ingest --name "Collab Workflow Ingest" --tags "workflow,ingest,collab" --topics "workflow,ingest"
Step 4: 验证入库
clawhub search collab-workflow-ingest
输入输出关系
| 从 | 到 | 数据 |
|---|---|---|
| 用户需求 | workflow-structurer | 自然语言描述(模糊需求) |
| workflow-structurer | DESCRIPTION.md | 结构化 handoff 摘要 |
| DESCRIPTION.md | clawhub publish | skill-shaped 文件夹 |
| clawhub publish | ClawHub 资源中心 | 可检索、可安装的 skill 条目 |
关键注意事项
- 不要跳步:必须先完成流程梳理再打包,DESCRIPTION.md 内容质量决定入库价值
- clawhub 登录:发布前确认
clawhub whoami有有效身份 - slug 唯一性:
--slug必须是 ClawHub 全局唯一名称 - dry-run 先行:正式发布前一定先跑
--dry-run验证结构和元数据 - 审批延迟:新发布的 skill 可能需要审核,搜索可能有短暂延迟
Related skills
Reference skill demonstrating TaskFlow + ClawHub tooling for publishing digital content to the resource hub.
OpenClaw 工作流快速入门指南 - 含业务流程处理(TaskFlow)与数字资源入库(ClawHub)的端到端实操步骤,适用于新用户在 30 分钟内完成从内容创作到资源发布的完整链路
Orchestrate a TaskFlow-managed ingestion job that validates, packages, and publishes an OpenClaw skill folder to the ClawHub registry, then verifies the published artifact. Use when a piece of digital content (an agent skill) must move through a durable multi-step flow and land in the ClawHub resource center in a reproducible way.
Use when the user wants OpenClaw or Codex to remember their way of working as reusable SOPs, workflows, queues, or "how I do things". Best for repeated multi...
A demonstration skill for content ingestion workflows. Checks a workspace folder for text/markdown assets, generates a simple inventory report, and prints a summary. Useful as a minimal example for pipeline-driven publishing.