05b6d799f0
Three more learnings from alirezarezvani/claude-skills, applied: 1. SkillCheck validator (scripts/skillcheck.mjs) — validates every SKILL.md against the authoring standard (frontmatter, name/folder match, trigger + produces clauses, required headings) plus tier referential integrity. Errors fail CI; --strict fails on warnings too. New skillcheck.yml workflow and a SkillCheck status badge in the README. Current: 0 errors / 14 advisory warnings across 172 skills. 2. Cursor export platform — build-exports.mjs now generates exports/cursor/<bundle>/<skill>/<skill>.mdc rule files. The PLATFORMS registry now supports per-skill filenames (file as a function). 3. Per-agent installers — scripts/install.sh unifies install for claude/hermes/codex/openclaw/cursor (--link, --target, --dry-run, --list). Curl-able one-liners codex-install.sh, openclaw-install.sh, and cursor-install.sh clone the library and install in a single command. README documents the one-line installs and Cursor exports; CHANGELOG and the authoring standard updated. Claude-Session: https://claude.ai/code/session_016JWn5jRD5tcEFKrubjQ6Px Co-authored-by: Claude <noreply@anthropic.com>
19 lines
627 B
Markdown
19 lines
627 B
Markdown
# Multi-Platform Exports
|
|
|
|
These folders are **generated** from the canonical `skills/*/SKILL.md` files —
|
|
the skill body is the single source of truth. Do not edit anything in `exports/`
|
|
by hand; edit the source skill and run:
|
|
|
|
```bash
|
|
node scripts/build-exports.mjs
|
|
```
|
|
|
|
Currently exporting **172 skills** to:
|
|
|
|
- **ChatGPT — Custom GPT instructions** → `exports/chatgpt/`
|
|
- **Google Gemini — Gem instructions** → `exports/gemini/`
|
|
- **Cursor — project rule (.mdc)** → `exports/cursor/`
|
|
|
|
Adding a new platform is a few lines in the `PLATFORMS` registry of
|
|
`scripts/build-exports.mjs` — no content is duplicated.
|