moizibnyousaf/share-a-library
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 skills add https://github.com/MoizIbnYousaf/Ai-Agent-Skills --skill share-a-library
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:
Take moizibnyousaf/share-a-library from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.