From 95ee108b1fd2770026181fe319ba838543178228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aaron=20D=C3=B6ppner?= <58708656+aarondpn@users.noreply.github.com> Date: Sat, 20 Jun 2026 01:23:43 +0200 Subject: [PATCH] docs(skill): list roles, custom-fields, my-account commands The agent skill's command table was missing three top-level commands that already ship in the CLI: roles (#92), custom-fields (#97), and my-account (#104). Because the skill instructs agents that "only these top-level commands exist", agents would refuse to use those commands even though the MCP server already exposes them. Adds the missing rows so the table matches `redmine --help` 1:1. --- skills/redmine-cli/SKILL.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/skills/redmine-cli/SKILL.md b/skills/redmine-cli/SKILL.md index 9296a5c..20bb41f 100644 --- a/skills/redmine-cli/SKILL.md +++ b/skills/redmine-cli/SKILL.md @@ -22,10 +22,13 @@ Only these top-level commands exist. Do NOT invent subcommands that aren't liste | `files` | List and upload project-level files (release artifacts) | | `memberships` | List, get, create, update, delete project memberships | | `users` | List, get, create, update, delete users | +| `my-account` | Get and update your own Redmine account (works without admin) | | `groups` | List, get, create, update, delete groups; add/remove users | +| `roles` | List and get roles, including their permissions | | `categories` | List issue categories | -| `trackers` | List trackers | +| `trackers` | List and get trackers | | `statuses` | List issue statuses | +| `custom-fields` | List and get custom field definitions (admin-only endpoint) | | `search` | Search issues, wiki, news, messages, or browse results | | `auth` | Login, logout, list, switch, and check status of authentication profiles | | `wiki` | List, get, create, update, delete wiki pages |