docs: migrate Agent Skills to dedicated PatterAI/skills repo#116
Merged
Conversation
Move the five SKILL.md files (and references) out of the SDK monorepo into a dedicated repository at https://github.com/PatterAI/skills, matching the industry pattern: - elevenlabs/skills - VapiAI/skills - cartesia-ai/skills - anthropics/skills - coinbase/agentic-wallet-skills This commit does two things: 1. Removes skills/ from the SDK repo (1697 LOC) — content has been copied verbatim to PatterAI/skills with one improvement: setup-patter now includes a concierge step that walks the user through every provider/carrier console with the exact URL + UI steps, and validates each API key with a cheap HTTP request before writing .env. 2. Rewrites the README's "Skills for Coding Agents" section to point at the new repo (skills.sh/patterai/skills, npx skills add patterai/skills, table linking to each skill's tree URL on the PatterAI/skills repo). The previous install path 'npx skills add patterai/patter' no longer resolves. Users should switch to 'npx skills add patterai/skills'. No SDK runtime change.
…icated-repo # Conflicts: # README.md
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
elevenlabs/skills(announced today),VapiAI/skills,cartesia-ai/skills,anthropics/skills,coinbase/agentic-wallet-skills.Implementation
git rm -r skills/removes the 5 SKILL.md + 5 references (1697 LOC) from this repo. Content has been copied verbatim toPatterAI/skills, with one improvement:setup-pattergained a "concierge" step that walks the user through every provider/carrier dashboard (OpenAI, Twilio, Telnyx, ElevenLabs, Deepgram, Cerebras, Anthropic, Google, Groq) with exact URL + UI steps + a cheapcurlvalidation before writing.env.npx skills add patterai/skills(waspatterai/patter)github.com/PatterAI/skills/tree/main/<skill-name>(absolute URLs to the new repo)skills.shlink points to/patterai/skillspatterai/skills#v0.6.2)## Unreleased### Added(README banner) and### Changed(migration explanation).Breaking change?
Yes, but minor:
npx skills add patterai/patterno longer resolves (noskills/folder in this repo anymore).npx skills add patterai/skills.The change has zero impact on the SDK runtime —
pip install getpatterandnpm install getpatterare unaffected. Only the skills distribution channel moved.Test plan
npx skills add patterai/skills --skill build-voice-agentsucceeds (smoke-tested locally).PatterAI/skillsrepo live and contains all 5 skills + references + README banner + LICENSE.npx skills add patterai/patterfails cleanly (no skill found at that path).mainrenders correctly; all skill links resolve togithub.com/PatterAI/skills/tree/main/<skill-name>.Docs updates
README.md— Skills section links updated to point atPatterAI/skills.CHANGELOG.md— Unreleased entries describing the migration.Related
patterai/patter).