Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
What This Skill Does
Reads, lists, and updates Redmine issues via the REST API. Connects to any Redmine instance using configurable URL and credentials set through environment variables. API responses are returned as JSON.
Supports multiple Redmine instances via environment variables, making it reusable across projects without code changes.
When to use it
- Fetch a single issue before writing a fix
- List all open issues assigned to you
- Filter project issues by status or priority
- Update issue progress or reassign during standup
- Automate status changes in a CI/CD pipeline
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: list all open issues assigned to me, sorted by last updated
- 1Read REDMINE_URL and REDMINE_API_KEY from environment
- 2Run issues.mjs list with --assigned-to-id me --status-id open --sort updated_on:desc
- 3Parse the JSON response
- 4Return the issue list with IDs, subjects, and statuses
A JSON array of open issues assigned to the current user, ordered by most recently updated
Requirements
Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.