skills/share-a-library/SKILL.md
Use when a managed library is ready to publish to GitHub and hand to teammates as an install command. Run the GitHub publishing steps, then return the exact shareable install command.
npx skillsauth add skillcreatorai/ai-agent-skills share-a-libraryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Turn a finished local library into a real shared artifact with a repo URL and an install command another agent can use.
npx ai-agent-skills build-docs has already run, or you run it now before publishing.npx ai-agent-skills build-docs
git init
git add .
git commit -m "Initialize skills library"
gh repo create <owner>/<repo> --public --source=. --remote=origin --push
If the library has a starter-pack collection:
npx ai-agent-skills install <owner>/<repo> --collection starter-pack -p
Otherwise:
npx ai-agent-skills install <owner>/<repo> -p
git init. A shared library is not shared until the repo exists and the install command is ready.Return:
testing
Use when syncing or updating previously installed skills to their latest version. Always dry-run updates before applying, and check for breaking changes.
development
Use when evaluating whether a skill belongs in a library. Preview content, check frontmatter, validate structure, and decide whether to keep, curate, or remove.
development
Use when moving skills between library workspaces or upgrading from a personal library to a team library. Export from one workspace, import into another.
tools
Building applications with Large Language Models - prompt engineering, RAG patterns, and LLM integration. Use for AI-powered features, chatbots, or LLM-based automation.