Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docs/content/features/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,25 @@ All agent endpoints are grouped under `/api/agents/`:
| `GET` | `/api/agents/skills/export/*` | Export a skill |
| `POST` | `/api/agents/skills/import` | Import a skill |

### Git Skill Repositories

Skills can be sourced from external git repositories that follow the [SKILL.md](https://agentskills.io) standard. LocalAI clones and syncs the repository, making all included skills available to agents.

| Method | Path | Description |
|--------|------|-------------|
| `GET` | `/api/agents/git-repos` | List configured git repos |
| `POST` | `/api/agents/git-repos` | Add a git repo |
| `PUT` | `/api/agents/git-repos/:id` | Update a git repo |
| `DELETE` | `/api/agents/git-repos/:id` | Delete a git repo |
| `POST` | `/api/agents/git-repos/:id/sync` | Sync a git repo |
| `POST` | `/api/agents/git-repos/:id/toggle` | Toggle a git repo |

**Community skill repositories:**

| Skill | Description | Repository |
|-------|-------------|------------|
| mmx-cli | Generate text, images, video, speech, and music via MiniMax AI | [MiniMax-AI/cli](https://github.com/MiniMax-AI/cli) |

### Collections (Knowledge Base)

| Method | Path | Description |
Expand Down