Skip to content

Commit 98abb78

Browse files
authored
docs(skill): list roles, custom-fields, my-account commands (#125)
## Summary While verifying the AI integrations, I found the agent skill's command table (`skills/redmine-cli/SKILL.md`) was missing three top-level commands that already ship in the CLI: - `roles` (added in #92) - `custom-fields` (added in #97) - `my-account` (added in #104) All three predate the skill's last edit (#121), so they were simply overlooked. ## Why it matters The skill explicitly tells agents: *"Only these top-level commands exist. Do NOT invent... commands not listed here."* So a Claude/Cursor agent following the skill would have **refused to use** these commands, even though the MCP server already exposes them (`list_roles`, `get_custom_field`, `get_my_account`, etc.). ## Change Adds the three missing rows. The table now matches `redmine --help` 1:1 (verified by diff). No code changes.
1 parent 47f6330 commit 98abb78

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

skills/redmine-cli/SKILL.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,13 @@ Only these top-level commands exist. Do NOT invent subcommands that aren't liste
2222
| `files` | List and upload project-level files (release artifacts) |
2323
| `memberships` | List, get, create, update, delete project memberships |
2424
| `users` | List, get, create, update, delete users |
25+
| `my-account` | Get and update your own Redmine account (works without admin) |
2526
| `groups` | List, get, create, update, delete groups; add/remove users |
27+
| `roles` | List and get roles, including their permissions |
2628
| `categories` | List issue categories |
27-
| `trackers` | List trackers |
29+
| `trackers` | List and get trackers |
2830
| `statuses` | List issue statuses |
31+
| `custom-fields` | List and get custom field definitions (admin-only endpoint) |
2932
| `search` | Search issues, wiki, news, messages, or browse results |
3033
| `auth` | Login, logout, list, switch, and check status of authentication profiles |
3134
| `wiki` | List, get, create, update, delete wiki pages |

0 commit comments

Comments
 (0)