
Install From Remote Library
- 129 installs
- 1.1k repo stars
- Updated May 5, 2026
- skillcreatorai/ai-agent-skills
Install and register agent skills from a remote library so coding agents gain vetted capabilities without hand-copying SKILL.md files across projects.
About
Install-from-remote-library skill automates pulling agent skills from curated remote catalogs into a local workspace. It handles discovery, download, placement, and basic validation so Claude Code and similar agents can adopt shared capabilities quickly, keeping teams aligned on the same skill versions for CLI and agent-driven development workflows.
- Resolves remote skill metadata and dependencies
- Installs SKILL.md bundles into workspace paths
- Validates compatibility with host agent runtime
- Supports repeatable setup across teammates
- Reduces manual copy-paste of skill assets
Install From Remote Library by the numbers
- 129 all-time installs (skills.sh)
- +2 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #225 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/skillcreatorai/ai-agent-skills --skill install-from-remote-libraryAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 129 |
|---|---|
| repo stars | ★ 1.1k |
| Last updated | May 5, 2026 |
| Repository | skillcreatorai/ai-agent-skills ↗ |
What it does
Install and register agent skills from a remote library so coding agents gain vetted capabilities without hand-copying SKILL.md files across projects.
Files
Install From Remote Library
Goal
Install from a shared library repo without guessing, over-installing, or skipping the preview step.
Invariants
- Always inspect the remote library first with
install <source> --list. - Prefer
--collectionwhen the library clearly exposes a starter pack or focused bundle. - Always run
--dry-runbefore the real install. - Keep the install small. Do not pull a whole library when the user only needs a narrow slice.
Workflow
1. Inspect the source library.
npx ai-agent-skills install <owner>/<repo> --list2. Choose the smallest fitting target.
- Prefer
--collection starter-packor another named collection when it matches the user's need. - Use
--skill <name>only when the user needs one specific skill or the library has no useful collection. - Do not combine
--collectionand--skill.
3. Preview the install plan before mutating anything.
npx ai-agent-skills install <owner>/<repo> --collection starter-pack --dry-run -por
npx ai-agent-skills install <owner>/<repo> --skill <skill-name> --dry-run -p4. If the plan looks right, run the real install with the same scope.
npx ai-agent-skills install <owner>/<repo> --collection starter-pack -pDecision Rules
- If the library has a curated collection that already matches the user's stack, use it.
- If the remote library is empty or the list output is unclear, stop and report that instead of guessing.
- If the install path throws an
ERROR/HINT, surface that verbatim and follow the hint before retrying. - If the user is exploring a large library, keep them in browse mode first rather than installing immediately.
Done
Return:
- what source library you inspected
- which collection or skill you chose
- the dry-run result
- the exact final install command you used