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 downloadsFrom NexusIDE
- Open the Skills panel in the sidebar
- Use the search bar to find skills on the Skills Hub
- Click a skill to view its description, author, version, and download count
Install a Skill
From NexusCore CLI
bash
nexus-cli skills install code-reviewerThe skill is downloaded to .nexuscore/skills/ and available immediately — no restart required.
From NexusIDE
- Search for a skill in the Skills panel
- Click Install
- The skill is downloaded and activated automatically
Managing Installed Skills
List Installed Skills
bash
nexus-cli skills listInstalled skills:
code-reviewer (v1.2.0) — active
pr-reviewer (v0.9.1) — active
my-custom-skill (v1.0.0) — inactiveUpdate a Skill
bash
nexus-cli skills update code-reviewerRemove a Skill
bash
nexus-cli skills remove code-reviewerActivate / 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-reviewerIn 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.mdLocal 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.mdProject-level skills are loaded automatically when you open the project in NexusIDE or run nexus-cli from the project directory.