Documentation Index
Fetch the complete documentation index at: https://docs.ntrp.io/llms.txt
Use this file to discover all available pages before exploring further.
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-skill | Create or remove a user skill |
/add-tool | Create a user-defined tool |
/obsidian | Work with Obsidian vaults through the official obsidian CLI or an external MCP server |
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.
Restart the server after creating a skill manually so the registry rescans skills/, .skills/, and ~/.ntrp/skills/. Skills installed through the API are reloaded automatically.
Managing skills
| Command | Description |
|---|---|
GET /skills | List installed skills |
DELETE /skills/{name} | Uninstall a skill |