Ai-Agent-Skills install-from-remote-library
Use when installing skills from a shared ai-agent-skills library repo. Inspect with `--list` first, prefer `--collection`, and preview with `--dry-run` before installing.
install
source · Clone the upstream repo
git clone https://github.com/MoizIbnYousaf/Ai-Agent-Skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/MoizIbnYousaf/Ai-Agent-Skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/install-from-remote-library" ~/.claude/skills/moizibnyousaf-ai-agent-skills-install-from-remote-library && rm -rf "$T"
manifest:
skills/install-from-remote-library/SKILL.mdsource content
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
when the library clearly exposes a starter pack or focused bundle.--collection - Always run
before the real install.--dry-run - Keep the install small. Do not pull a whole library when the user only needs a narrow slice.
Workflow
- Inspect the source library.
npx ai-agent-skills install <owner>/<repo> --list
- Choose the smallest fitting target.
- Prefer
or another named collection when it matches the user's need.--collection starter-pack - Use
only when the user needs one specific skill or the library has no useful collection.--skill <name> - Do not combine
and--collection
.--skill
- Preview the install plan before mutating anything.
npx ai-agent-skills install <owner>/<repo> --collection starter-pack --dry-run -p
or
npx ai-agent-skills install <owner>/<repo> --skill <skill-name> --dry-run -p
- If the plan looks right, run the real install with the same scope.
npx ai-agent-skills install <owner>/<repo> --collection starter-pack -p
Decision 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
, surface that verbatim and follow the hint before retrying.HINT - 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