redmine-issue
Read Redmine issues from any Redmine server via REST API with configurable URL and credentials. Use when you need to fetch a single issue, list/filter issues, or inspect issue fields for change planning; supports deployment to different Redmine instances via environment variables.
Why use this skill?
Integrate the redmine-issue skill with OpenClaw to automate project tracking, update ticket statuses, and query Redmine via REST API seamlessly.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/guoway/redmine-issueWhat This Skill Does
The redmine-issue skill for OpenClaw provides a robust interface for interacting with Redmine project management systems via their REST API. It empowers AI agents to seamlessly fetch, list, filter, and update project issues without requiring manual navigation of the Redmine web interface. By supporting configurable environment-based authentication and URL targeting, this skill enables teams to manage issues across multiple Redmine instances directly through natural language instructions. It outputs all API responses as structured JSON, making it ideal for programmatic integration and data-driven decision-making within your existing development workflows.
Installation
To integrate this skill into your environment, run the following command in your terminal:
clawhub install openclaw/skills/skills/guoway/redmine-issue
Ensure that you have set the necessary environment variables before execution. You must provide REDMINE_URL and choose between REDMINE_API_KEY (recommended for secure, automated service accounts) or the REDMINE_USERNAME/REDMINE_PASSWORD pair. Once configured, the skill becomes immediately available for your OpenClaw agent to utilize.
Use Cases
- Project Management Automation: Automatically update ticket statuses, assign developers to tasks, or adjust priority levels based on external events or periodic triggers.
- Status Reporting: Quickly query lists of 'open' or 'in-progress' issues to generate progress reports or stand-up summaries without leaving the terminal.
- Context Retrieval: Fetch specific ticket details including descriptions and custom fields to provide the AI agent with the context needed to solve a programming task or respond to a support query.
- Multi-Instance Syncing: Easily point your agent at staging, QA, or production Redmine servers by swapping environment variables, allowing for consistent issue lifecycle management across environments.
Example Prompts
- "Check the current status of issue 456 and let me know if there are any notes attached to it."
- "List all open issues assigned to me in the 'backend-api' project, sorted by the most recently updated."
- "Update issue 789: set the status to 'Resolved', change the done ratio to 100%, and add a note saying 'Fixed the memory leak in the parser'."
Tips & Limitations
- API Security: Always prioritize the use of
REDMINE_API_KEYrather than plaintext username and password credentials. This follows the principle of least privilege and simplifies credential rotation. - Performance: When listing issues, use the
--limitand--offsetflags to handle large datasets. Fetching thousands of issues in one call may hit your server's rate limits or timeout thresholds. - Data Integrity: Since this skill can perform write operations via the
updatecommand, ensure your agent has explicit, well-defined rules for when it is permitted to modify existing issue states. - Environment Consistency: Because URL and auth are handled via environment variables, ensure your shell environment is correctly sourced before the OpenClaw agent attempts to execute commands.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-guoway-redmine-issue": {
"enabled": true,
"auto_update": true
}
}
}Tags(AI)
Flags: network-access, external-api
Related Skills
jenkins
Interact with Jenkins CI/CD server via REST API. Use when you need to trigger builds, check build status, view console output, manage jobs, or monitor Jenkins nodes and queue. Supports deployment to different Jenkins instances via environment variables.
openclaw-avif2jpg
Convert `.avif` images to `.jpg` using a CLI workflow for one or more input paths. Use when the user asks to convert AVIF files, batch-convert a folder of AVIF images, or convert mixed file/folder path inputs while writing outputs next to the source location.