refactor(*): remove CLI, convert to pure skills collection#6
Merged
Conversation
The Vercel Skills CLI (`npx skills`) now handles installation, removal, and management of agent skills. This repo no longer needs its own CLI, build system, or npm package. - Remove src/, tests/, dist/, node_modules/, and all build tooling - Remove skills/skill-creator (available via Vercel skills repo) - Remove release workflow and semantic-release config - Replace package.json with minimal metadata (private, no deps) - Add standalone scripts/validate.js (no dependencies) - Simplify CI to just run validation on skills/ changes - Rewrite README as a skills collection with `npx skills` commands
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
Remove the custom CLI (
@txnlab/skills) and all supporting build infrastructure. The Vercel Skills CLI (npx skills) now handles installation, removal, and management of agent skills across 35+ agents. This repo becomes a pure skills collection.Changes
Deleted
src/— all CLI source code (12 files)tests/— all CLI tests (4 files)skills/skill-creator/— Anthropic's meta-skill (available via Vercel skills repo)tsconfig.json,eslint.config.ts,.releaserc.js,bun.lock— build/release tooling.vscode/,.prettierignore,CHANGELOG.md— CLI development artifacts.github/workflows/release.yml— npm publishing workflowAdded
scripts/validate.js— standalone Node.js validation script (no dependencies), validates SKILL.md frontmatterSimplified
package.json— stripped to metadata + validate script, markedprivate: true.github/workflows/ci.yml— runsnode scripts/validate.json PRs touchingskills/.gitignore— removed CLI-specific entriesRewritten
README.md— skills collection README withnpx skills add txnlab/skillscommandsCLAUDE.md/AGENTS.md— updated for skills-only repo structureSkills directory is untouched
The three TxnLab skills (
nfd,use-wallet,haystack-router) are completely unchanged.Install commands (new)