Demo skill created to test the workflow of content ingestion from creation to publication. Use when learning how skills are structured and published.
文档
demo-content-ingest
试用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.
它能做什么
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.
技能文档
Demo Content Ingest
A minimal demonstration skill that scans a workspace folder and produces an inventory of text assets.
When to Use
- You need a trivial skill to test a content pipeline or CI/CD publishing flow.
- You want a concrete example folder structure for ClawHub ingestion.
What It Does
- Reads a target directory.
- Lists files matching
*.mdor*.txt. - Outputs a count and a brief listing.
Steps
- Set
TARGET_DIRto an absolute path (default: current directory). - Run:
find "$TARGET_DIR" -maxdepth 1 -type f \( -name "*.md" -o -name "*.txt" \) | sort - Count results and print a one-line summary.
Notes
- This skill is intentionally lightweight to serve as a publishing demo.
- For production use, extend with logging, error handling, and metadata extraction.
相关技能
Demo skill that turns a raw digital-content file (e.g. a markdown note) into a reusable skill package. Given a source file, it builds a SKILL.md, extracts me...
A simple demo skill that performs a ping/pong business workflow for testing resource ingestion pipelines.
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.
A demo greeting skill that prints friendly hello messages. Use when you need a simple greeting or welcome message for testing or demonstration purposes.
Reference skill demonstrating TaskFlow + ClawHub tooling for publishing digital content to the resource hub.