Skip to content

skillshub link

The link command connects installed skills to a specific AI agent so the agent can discover and use them. Linking writes the necessary configuration into the agent’s config directory.

Terminal window
skillshub link <agent> [skill]
  • <agent> — The target AI agent to link skills to.
  • [skill] — An optional skill name. When omitted, all installed skills are linked to the agent.

The following AI agents are supported:

  • claude
  • codex
  • opencode
  • aider
  • cursor
  • continue
  • trae
OptionDescription
--unlinkRemove the link between a skill and the agent instead of creating one.
--forceOverwrite existing agent configuration for the skill if it already exists.

Link a specific skill to Claude:

Terminal window
skillshub link claude code-review
Linked code-review to claude.

Link all installed skills to Cursor:

Terminal window
skillshub link cursor
Linked code-review to cursor.
Linked commit-message to cursor.
Linked refactor-assist to cursor.
Linked test-generator to cursor.
4 skills linked to cursor.

Unlink a skill from an agent:

Terminal window
skillshub link claude code-review --unlink
Unlinked code-review from claude.

Force overwrite an existing link:

Terminal window
skillshub link codex code-review --force
Linked code-review to codex (overwritten).