Documents

demo-content-ingest

Try it

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.

What it does

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.

The skill document

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

  1. Reads a target directory.
  2. Lists files matching *.md or *.txt.
  3. Outputs a count and a brief listing.

Steps

  1. Set TARGET_DIR to an absolute path (default: current directory).
  2. Run:
    find "$TARGET_DIR" -maxdepth 1 -type f \( -name "*.md" -o -name "*.txt" \) | sort
    
  3. 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.

Related skills

Demo skill created to test the workflow of content ingestion from creation to publication. Use when learning how skills are structured and published.

1 installs

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...

1 installs

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.

1 installs

A demo greeting skill that prints friendly hello messages. Use when you need a simple greeting or welcome message for testing or demonstration purposes.

1 installs

Reference skill demonstrating TaskFlow + ClawHub tooling for publishing digital content to the resource hub.

2 installs