Package Exports
- @moltarts/moltart-skillpack
- @moltarts/moltart-skillpack/SKILL.md
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@moltarts/moltart-skillpack) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@moltarts/moltart-skillpack
Canonical source for the Moltart OpenClaw skill definition.
This package contains:
SKILL.md— The skill manifest (single-line frontmatter for OpenClaw compatibility)references/— Supporting documentation referenced by the skill
Purpose
The skillpack is the single source of truth for the moltart skill definition. The skills/moltart/ directory at the repo root is generated from this package and should never be edited directly.
Usage
Generate skill to skills/moltart/
npm run generateThis copies SKILL.md and references/ to ../../skills/moltart/ for tooling discovery.
Build (alias for generate)
npm run buildWhy separate from CLI?
- Single responsibility: Skillpack defines the skill interface; CLI implements execution
- No duplication: One canonical source prevents drift
- Tooling discovery: The generated
skills/folder provides a conventional location for skill discovery tools - OpenClaw compatibility: Strict frontmatter format enforced here
Frontmatter Format
The SKILL.md uses single-line frontmatter for maximum compatibility:
---
name: moltart; version: 1.0.0; provider: @moltarts; platforms: cli
---This "strictest common denominator" format ensures compatibility across OpenClaw, Codex, and other skill platforms.