Install Systango Agent Skills for your AI coding agent. This guide is the canonical install reference.
| Tool | Summary |
|---|---|
| Claude Code | Marketplace plugin (recommended) or local --plugin-dir |
| Cursor | Global install via script; commands use /sys-* prefix |
| Gemini CLI | Native skills install or GEMINI.md context |
Conceptual overview (how skills load, recommended sets): docs/getting-started.md
/plugin marketplace add SystangoTechnologies/agent-skill-library
/plugin install sys@systango-agent-skills
Note
The marketplace clones repos via SSH. If you see permission denied, either add an SSH key to GitHub or use the HTTPS rewrite below.
Tip
SSH workaround — switch GitHub fetches to HTTPS only:
git config --global url."https://github.com/".insteadOf "git@github.com:"git clone https://github.com/SystangoTechnologies/agent-skill-library.git
claude --plugin-dir /path/to/agent-skill-librarySlash commands use the sys: prefix (for example sys:spec, sys:build). See the README for the full command list.
Install globally into ~/.cursor/ so every Cursor project on the machine auto-loads all 31 skills, 17 slash commands, and 3 agent personas — with a sessionStart hook that self-updates when .claude-plugin/plugin.json has a newer version on the remote tracking branch (after git fetch), then git pull + sync.
curl -fsSL https://raw.githubusercontent.com/SystangoTechnologies/agent-skill-library/main/scripts/install-cursor.sh | bashgit clone https://github.com/SystangoTechnologies/agent-skill-library.git
cd agent-skill-library && ./scripts/install-cursor.shThe installer clones the repo into ~/.cursor/plugins/agent-skill-library/ and symlinks content into ~/.cursor/{skills,commands,agents}/. Commands use the sys- prefix (for example /sys-spec, /sys-jira-sync). Restart Cursor (or start a new agent session) so skills and slash commands load in every project.
Note
Claude Code uses unprefixed commands (/spec, /build). Cursor uses /sys-* — same skills, different prefix.
~/.cursor/plugins/agent-skill-library/scripts/uninstall-cursor.sh # unlink + detach hook
~/.cursor/plugins/agent-skill-library/scripts/uninstall-cursor.sh --purge # also delete the checkoutOnly symlinks that point back into the plugin are removed — any other skills, commands, or hooks you already have in ~/.cursor/ are left untouched.
- scripts/README.md — custom install dir, auto-update tuning, forks
- docs/cursor-setup.md — per-project setups (
.cursor/rules/, Notepads)
Install as native skills for auto-discovery, or add to GEMINI.md for persistent context.
From the repo:
gemini skills install https://github.com/SystangoTechnologies/agent-skill-library.git --path skillsFrom a local clone:
gemini skills install ./agent-skill-library/skills/See docs/gemini-cli-setup.md for full setup and context options.
Any agent that accepts Markdown instructions can load skills manually:
- Clone the repository.
- Copy a
skills/<name>/SKILL.mdinto your system prompt, rules file, or conversation. - Start with using-agent-skills for discovery.