Install
openclaw skills install @terrycarter1985/ingest-preflightBefore publishing to ClawHub, validate a skill-shaped folder (required files, frontmatter, size, auth, slug availability, and a dry-run publish) with one script. Use when authoring or packaging a skill and you want to catch structural problems before the real publish.
openclaw skills install @terrycarter1985/ingest-preflightA tiny, honest gatekeeper for the 数字资源入库 step. Run it on a packaged
skill folder before clawhub publish; it tells you exactly what is wrong so you
do not ship a broken asset.
ls / head inspection.clawhub CLI installed and on PATH.clawhub whoami returns a publisher handle.SKILL.md (frontmatter with name and
description). references/ is recommended.# from anywhere, point at the skill folder
bash scripts/preflight.sh /path/to/your-skill --slug your-unique-slug
What it checks (in order):
SKILL.md exists.--- and contains name and description.references/ directory is present (warns, does not fail).clawhub CLI is present and clawhub whoami succeeds.--slug is free (clawhub inspect).clawhub publish --dry-run actually accepts the
folder.Exit code 0 = safe to publish; 1 = fix the listed failures first.
bash scripts/preflight.sh . --slug ingest-preflight
The business-process tool packages the asset; clawhub is the tool that
ingests it. This script is the deterministic handoff check between them — it
keeps the "process" and "ingest" tools honest by refusing to continue until the
asset is structurally valid.