Skip to content

Latest commit

 

History

History
111 lines (72 loc) · 3.88 KB

File metadata and controls

111 lines (72 loc) · 3.88 KB

Installation

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


Claude Code

Marketplace install (recommended)

/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:"

Local / development

git clone https://github.com/SystangoTechnologies/agent-skill-library.git
claude --plugin-dir /path/to/agent-skill-library

Slash commands use the sys: prefix (for example sys:spec, sys:build). See the README for the full command list.


Cursor

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.

One-line install

curl -fsSL https://raw.githubusercontent.com/SystangoTechnologies/agent-skill-library/main/scripts/install-cursor.sh | bash

From a local clone

git clone https://github.com/SystangoTechnologies/agent-skill-library.git
cd agent-skill-library && ./scripts/install-cursor.sh

The 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.

Uninstall

~/.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 checkout

Only symlinks that point back into the plugin are removed — any other skills, commands, or hooks you already have in ~/.cursor/ are left untouched.

More options


Gemini CLI

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 skills

From a local clone:

gemini skills install ./agent-skill-library/skills/

See docs/gemini-cli-setup.md for full setup and context options.


Other agents

Any agent that accepts Markdown instructions can load skills manually:

  1. Clone the repository.
  2. Copy a skills/<name>/SKILL.md into your system prompt, rules file, or conversation.
  3. Start with using-agent-skills for discovery.

See docs/getting-started.md and docs/copilot-setup.md.