Install
openclaw skills install @terrycarter1985/hub-ingest-runbookA minimal, reproducible runbook for chaining a business-process tool (TaskFlow-style workspace orchestration) with the ClawHub CLI to turn processed digital content into a discoverable, installable resource-center entry.
openclaw skills install @terrycarter1985/hub-ingest-runbookDemonstrates the collaboration between two tools:
clawhub CLI: package the handoff as a ClawHub-skill-shaped folder and publish it to the ClawHub resource center.clawhub-ingest-runbook/
├── SKILL.md
└── references/
└── DESCRIPTION.md # upstream handoff summary
# 1) Local process: structure the flow (use the TaskFlow-style tool), then verify the package
ls -R clawhub-ingest-runbook
# 2) Preview (dry-run) before publishing
clawhub skill publish --dry-run clawhub-ingest-runbook \
--slug clawhub-ingest-runbook \
--name "ClawHub Ingest Runbook" \
--tags "ingest,workflow,runbook" \
--topics "ingest,workflow"
# 3) Publish for real
clawhub skill publish clawhub-ingest-runbook \
--slug clawhub-ingest-runbook \
--name "ClawHub Ingest Runbook" \
--tags "ingest,workflow,runbook" \
--topics "ingest,workflow"
# 4) Verify ingestion
clawhub search clawhub-ingest-runbook
clawhub whoami.--slug; verify with clawhub inspect <slug>.--dry-run before the real publish.See references/DESCRIPTION.md for the upstream process handoff summary.