Reference skill demonstrating TaskFlow + ClawHub tooling for publishing digital content to the resource hub.
编程
demo-asset-ingest
试用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.
它能做什么
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.
技能文档
Demo Asset Ingest
A minimal, reusable demo showing how two cooperating tools work together:
- Business process handling: Use the OpenClaw workspace to prepare, validate, and package a digital asset into a ClawHub-skill-shaped folder.
- Digital asset ingestion & management: Use the
clawhubCLI to publish the folder as a skill in the ClawHub resource center, making it discoverable and installable.
When to use this
- You need a repeatable pattern for "process content → publish into a resource center".
- You want to teach or demo how TaskFlow-style orchestration and ClawHub publishing collaborate.
- You are authoring a new skill and want the smallest viable shape to start with.
Asset shape
demo-asset/
├── SKILL.md # this file (frontmatter + prose)
└── references/
└── DESCRIPTION.md # supporting material produced by the upstream workflow
End-to-end usage (quick start)
-
Process the asset in the workspace (TaskFlow-style):
- Create the folder layout and content above.
- Validate locally:
ls -R demo-asset.
-
Ingest into the resource center with the ClawHub CLI:
- Preview:
clawhub skill publish --dry-run demo-asset - Publish:
clawhub skill publish demo-asset --slug demo-asset-ingest --name "Demo Asset Ingest" --tags "demo,ingest,workflow" --topics "ingest,workflow"
- Preview:
-
Verify:
clawhub search demo-asset-ingest(allow for moderation if newly published).
相关技能
协作流程:业务流程梳理 → 数字资源入库。先用 workflow-structurer 逐步澄清流程,生成结构化步骤文档;再用 demo-asset-ingest 的打包规范将成果发布到 ClawHub 资源中心。适用场景:需要将模糊需求转化为可执行流程、并把最终产物沉淀到可检索仓库的工作。
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.
Step-by-step runbook for pairing TaskFlow (business process orchestration) with ClawHub (skill registry ingestion) to publish a digital skill artifact to the ClawHub resource center. Use when you need a repeatable, auditable process-to-upload pipeline.
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.
OpenClaw 工作流快速入门指南 - 含业务流程处理(TaskFlow)与数字资源入库(ClawHub)的端到端实操步骤,适用于新用户在 30 分钟内完成从内容创作到资源发布的完整链路