mcpbeat

Install From Remote Library

moizibnyousaf/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.

530 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
1114
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/MoizIbnYousaf/Ai-Agent-Skills --skill install-from-remote-library

The instruction itself

6 sections, as written by the author

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 --collection when the library clearly exposes a starter pack or focused bundle.
  • Always run --dry-run before the real install.
  • 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 --collection starter-pack or 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 --collection and --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 / 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

How to use it

Copy the folder

Take moizibnyousaf/install-from-remote-library from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

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.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.