Overview
Skills are user-facing commands that add new functionality to ntrp. They’re distinct from tools — skills are invoked with/skill-name in chat and can orchestrate multiple tool calls.
Builtin skills
| Skill | Description |
|---|---|
/add-model | Register a custom LLM endpoint interactively |
/add-tool | Install a user-defined tool |
/init | Initialize memory by scanning connected sources |
Skill locations
Skills are discovered from three locations (in order):skills/— builtin skills (shipped with ntrp).skills/— project-level skills (per-directory)~/.ntrp/skills/— global user skills
Installing skills
Install a skill from GitHub:Creating a skill
A skill is a directory containing at minimum aSKILL.md file:
SKILL.md tells the agent what the skill does and how to execute it. The agent follows these instructions when the user invokes /my-skill.
Managing skills
| Command | Description |
|---|---|
GET /skills | List installed skills |
DELETE /skills/{name} | Uninstall a skill |