feat(skills): add skills.sh listing scaffold#31
Merged
Conversation
Adds six user-facing skills under /skills/ for invocation by Claude Code and other harnesses that follow the vercel-labs/skills discovery convention: - wavex-os-init — install + 5-pillar wizard - wavex-os-audit — doctor + audit diagnostics - wavex-os-provision-company — drive a 2nd company through the wizard - wavex-os-mission-control — read-only fleet inspector - wavex-os-debug-healing — walk the 3-layer self-heal flow - wavex-os-activate-and-ignite — activate signed manifest + ignite Each SKILL.md has YAML frontmatter (name + description) and references only CLI commands and HTTP routes that exist in this repo (verified against apps/installer/bin/init.js and packages/wavex-os-server/src/ routes/). No frozen paths touched. Co-Authored-By: Claude Opus 4.7 (1M context) <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
Adds six user-facing skills under
/skills/so this repo can be listed on skills.sh and installed via the vercel-labs/skills CLI (npx skills add aimerdoux/wavex-os).wavex-os-initwavex-os-auditdoctor+auditdiagnosticswavex-os-provision-companywavex-os-mission-controlwavex-os-debug-healingwavex-os-activate-and-igniteEach
SKILL.mdhas YAML frontmatter (name+description) and references only commands/routes that exist in this repo:init|doctor|audit|reset) verified againstapps/installer/bin/init.jspackages/wavex-os-server/src/routes/(mission-control, observability, activate, ignite, redundancy, system-health)No frozen paths touched. No runtime dependencies added.
Why a separate top-level
/skills/Two distinct skill systems coexist after this PR:
packages/onboarding-ui/public/agent-templates/_shared/andpackages/standard-skills/. Not user-invokable./skills/is the well-known discovery path fornpx skills.The new
skills/README.mdcross-links to the runtime skills so contributors don't conflate them.Listing on skills.sh
This PR makes the repo installable. To actually appear on the skills.sh leaderboard, a follow-up PR against
vercel-labs/skillsis needed once this lands (per skills.sh/contact).Test plan
name+descriptionpresent)npx skills add aimerdoux/wavex-osresolves and installs from this branchskills/README.mdon the GitHub web view — links resolvegit diff --stat origin/main...)🤖 Generated with Claude Code