[PR #14646] [CLOSED] feat: add skills commands and runtime support #14762

Closed
opened 2026-04-13 01:02:12 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/14646
Author: @googlarz
Created: 3/5/2026
Status: Closed

Base: mainHead: codex/skills-v18


📝 Commits (1)

  • fe9809e feat: add v0.18 skills commands and runtime support

📊 Changes

11 files changed (+1294 additions, -11 deletions)

View changed files

📝 app/ui/ui.go (+0 -1)
📝 cmd/cmd.go (+55 -0)
📝 cmd/interactive.go (+5 -0)
cmd/skills_cli.go (+149 -0)
cmd/skills_cli_test.go (+150 -0)
📝 docs/cli.mdx (+31 -0)
📝 go.mod (+1 -1)
📝 model/models/lfm2/cache.go (+0 -4)
📝 readline/errors.go (+5 -5)
skills/skills.go (+647 -0)
skills/skills_test.go (+251 -0)

📄 Description

Summary

  • add ollama skills CLI commands: list, install, enable, disable, and run
  • add skills runtime support with skill.toml parsing, validation, and permission enforcement
  • add in-chat visibility for active skills and documented CLI usage
  • add tests for skills package and CLI commands

Validation

  • go test ./...
  • golangci-lint run
  • npm ci && npm test (in app/ui/app)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/14646 **Author:** [@googlarz](https://github.com/googlarz) **Created:** 3/5/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `codex/skills-v18` --- ### 📝 Commits (1) - [`fe9809e`](https://github.com/ollama/ollama/commit/fe9809edc1bad26ef5baffee3490c42aea6938cf) feat: add v0.18 skills commands and runtime support ### 📊 Changes **11 files changed** (+1294 additions, -11 deletions) <details> <summary>View changed files</summary> 📝 `app/ui/ui.go` (+0 -1) 📝 `cmd/cmd.go` (+55 -0) 📝 `cmd/interactive.go` (+5 -0) ➕ `cmd/skills_cli.go` (+149 -0) ➕ `cmd/skills_cli_test.go` (+150 -0) 📝 `docs/cli.mdx` (+31 -0) 📝 `go.mod` (+1 -1) 📝 `model/models/lfm2/cache.go` (+0 -4) 📝 `readline/errors.go` (+5 -5) ➕ `skills/skills.go` (+647 -0) ➕ `skills/skills_test.go` (+251 -0) </details> ### 📄 Description ## Summary - add ollama skills CLI commands: list, install, enable, disable, and run - add skills runtime support with skill.toml parsing, validation, and permission enforcement - add in-chat visibility for active skills and documented CLI usage - add tests for skills package and CLI commands ## Validation - go test ./... - golangci-lint run - npm ci && npm test (in app/ui/app) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-13 01:02:12 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#14762