Make skills package host-agnostic and portable#50
Merged
Conversation
Reposition Reaper as a host-agnostic skills package that works across
45+ AI coding agents (Cursor, Codex CLI, Cline, Continue, Gemini CLI,
Copilot, Windsurf, Claude Code, …) instead of a Claude-Code-only plugin.
- Standardize "Path Resolution Protocol" preamble in every skill that
uses path placeholders, listing per-host install paths and the
sibling-skill dependency
- Replace shell-fragile `<placeholder>` syntax with `{{SKILL_DIR}}`-style
template tokens that survive bash redirection
- Adopt the `/<skill>` typographic convention in user-facing docs;
preserve bare names in YAML frontmatter, JSON identifiers, and
path-substitution lists where tooling/paths require them
- Soften Claude-default framing in CLAUDE.md, README.md, ROADMAP.md,
evals.json, and the reaper orchestrator
- Add CI workflow with three jobs: required offline structure tests,
non-blocking live-API integration tests, and a strict npx-skills
install-and-discover check
- Strengthen structure tests: assert frontmatter `name` matches
`[a-z][a-z0-9-]*` and equals the directory name, every
`{{*SKILL_DIR}}` placeholder is defined locally, every skill using
placeholders declares a Path Resolution Protocol section, and no
skill invokes Python via `python skills/...` relative paths
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
SebastianElvis
added a commit
that referenced
this pull request
Apr 18, 2026
## Summary - Bump version to 0.3.9 in plugin.json and marketplace.json - Update pin syntax examples to v0.3.9 in README, CLAUDE.md, and ROADMAP ## Changes since v0.3.8 - Make skills package host-agnostic and portable (#50) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
SebastianElvis
added a commit
that referenced
this pull request
Apr 18, 2026
## Summary - Bump version to 0.3.9 in `plugin.json` and `marketplace.json` - Update pin syntax examples to `v0.3.9` in README, CLAUDE.md, and ROADMAP ## Changes since v0.3.8 - Make skills package host-agnostic and portable (#50) ## Test plan - [ ] Version strings match across `plugin.json` and `marketplace.json` - [ ] Pin syntax examples updated in README / CLAUDE.md / ROADMAP - [ ] After merge, tag `v0.3.9` on the merge commit with changes-since summary 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Reposition Reaper from a Claude-Code-only plugin into a host-agnostic
SKILL.mdpackage that runs across 45+ AI coding agents (Cursor, Codex CLI, Cline, Continue, Gemini CLI, Copilot, Windsurf, OpenCode, Warp, Goose, Replit, Claude Code, …).~/.claude/,~/.cursor/,~/.agents/,~/.continue/,~/.windsurf/,<repo-root>/) and the sibling-skill install assumption<placeholder>(which bash interprets as redirection) with{{SKILL_DIR}}-style template tokens/<skill>display convention — applied to all user-facing docs (README, CLAUDE.md, ROADMAP, SKILL.md body text); intentionally NOT applied to YAMLname:frontmatter, JSON identifier fields inevals.json, or path-substitution name lists where bare directory names are required by toolingnpx skillsinstall-and-discover check that asserts every expected skill, script, and reference file is present after installnamematches[a-z][a-z0-9-]*and equals the directory name, every{{*SKILL_DIR}}placeholder is defined locally, every skill using placeholders declares a Path Resolution Protocol section, no skill invokes Python viapython skills/...relative pathsVerified end-to-end across 4 rounds of Codex audits — Round 4 verdict: fully portable.
Test plan
pytest tests/test_skills_structure.py— 17/17 passing locally~/.agents/skills/🤖 Generated with Claude Code