Skip to content

Installing Skills

Add community skills to your NexusCore setup from the Skills Hub or install them locally.

Search for Skills

From NexusCore CLI

bash
nexus-cli skills search "code review"

Example output:

Results for "code review":
  code-reviewer (v1.2.0) — Automated code review with security and performance checks
    by nexus-team · 1,250 downloads
  pr-reviewer (v0.9.1) — Pull request review assistant
    by community-dev · 340 downloads
  security-audit (v2.0.0) — Security-focused code analysis
    by sec-tools · 890 downloads

From NexusIDE

  1. Open the Skills panel in the sidebar
  2. Use the search bar to find skills on the Skills Hub
  3. Click a skill to view its description, author, version, and download count

Install a Skill

From NexusCore CLI

bash
nexus-cli skills install code-reviewer

The skill is downloaded to .nexuscore/skills/ and available immediately — no restart required.

From NexusIDE

  1. Search for a skill in the Skills panel
  2. Click Install
  3. The skill is downloaded and activated automatically

Managing Installed Skills

List Installed Skills

bash
nexus-cli skills list
Installed skills:
  code-reviewer (v1.2.0) — active
  pr-reviewer (v0.9.1) — active
  my-custom-skill (v1.0.0) — inactive

Update a Skill

bash
nexus-cli skills update code-reviewer

Remove a Skill

bash
nexus-cli skills remove code-reviewer

Activate / Deactivate

Control which skills are loaded into the agent's context without removing them:

bash
nexus-cli skills deactivate code-reviewer
nexus-cli skills activate code-reviewer

In NexusIDE, toggle skills on and off from the Skills panel.

Local Skills

You can also install skills manually by placing them in .nexuscore/skills/:

~/.nexuscore/skills/
├── code-reviewer/
│   ├── manifest.json
│   └── prompt.md
└── my-custom-skill/
    ├── manifest.json
    └── prompt.md

Local skills work on the Core tier — no subscription required.

Project-Level Skills

Place skills in your project's .nexuscore/skills/ directory to share them with your team via version control:

my-project/
└── .nexuscore/
    └── skills/
        └── project-conventions/
            ├── manifest.json
            └── prompt.md

Project-level skills are loaded automatically when you open the project in NexusIDE or run nexus-cli from the project directory.

Released under the MIT License.