LaunchKit · 2026
Back to Skills

redmine-issue

Read Redmine issues from any Redmine server via REST API with configurable URL and credentials.

0
367 downloads
by @guoway

Setup & Installation

openclaw skills install @guoway/redmine-issue

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install redmine-issue

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.

INPUT

User asks: list all open issues assigned to me, sorted by last updated

AGENT
  1. 1Read REDMINE_URL and REDMINE_API_KEY from environment
  2. 2Run issues.mjs list with --assigned-to-id me --status-id open --sort updated_on:desc
  3. 3Parse the JSON response
  4. 4Return the issue list with IDs, subjects, and statuses
OUTPUT

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.

REDMINE_URL environment variableREDMINE_API_KEY environment variable, or REDMINE_USERNAME and REDMINE_PASSWORD environment variablesAccess to a Redmine server instance