Demo skill created to test the workflow of content ingestion from creation to publication. Use when learning how skills are structured and published.
Documents
Content Ingestion Demo
Try itDemo 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...
What it does
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 metadata (title, source path, size, sha256), copies the file under references/, and produces a ready-to-publish .skill package. Used for demonstrating a full ingest-and-publish pipeline.
The skill document
Content Ingestion Demo
Transform a single raw content file into a skill package suitable for publishing.
Quick start
content-ingest.sh
Example:
content-ingest.sh ./article.md ./skills/article-note
What it produces
SKILL.mdwith name/description populated from the input filename and an auto-computed summary.references/article.mdcopy of the input (kept readable for human consumers).assets/metadata.jsonwith size, sha256, created_at, source_path.
When to use it
- Turn a downloaded article, spec, or note into a reusable asset.
- Feed the resulting folder into
clawhub publishto land it in the resource center. - Demos / pipelines where "file in, skill package out" is the unit of work.
Scripts
scripts/content-ingest.sh — the actual converter. Reads $1, writes a skill tree under $2.
Related skills
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.
Convert a book, paper, document, documentation site, or code repository into a structured, on-demand agent skill. Use when the user wants to turn a PDF, EPUB, DOCX, a URL, a docs site, or a GitHub repo into a skill they can load later — "make a skill from this book", "turn this paper into a skill", "turn these docs into a skill", "I want an agent that knows this library".
Distills technical long-form content (engineering notes, papers, project docs) into agent-callable skills with evidence indexing and temporal tracking. Use when the user wants to convert a technical article, paper, or project documentation into reusable skills that preserve engineering detail and tr
Generate a beautiful, deployable HTML introduction page for any AgentSkill. Reads USAGE.md (preferred) or SKILL.md, parses name, description, and feature sec...
Use when the user wants to turn a script, repeated workflow, runbook, or hard-won procedure into a reusable agent skill, or asks "make this a skill", "extrac...