docs(skill): list roles, custom-fields, my-account commands#125
Merged
Conversation
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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 Add roles commands and membership role resolution #92)custom-fields(added in feat(custom-fields): add command group for admin field discovery #97)my-account(added in feat(users): expand admin coverage and add my-account command #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 --help1:1 (verified by diff). No code changes.