Jump to related tools in the same category or review the original source on GitHub.

Git & GitHub @guoway Updated 7/10/2026 1,122 downloads 0 stars Security: Pass

Redmine Issue OpenClaw Plugin & Skill | ClawHub

Looking to integrate Redmine Issue into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate git & github tasks instantly, without having to write custom tools from scratch.

What this skill does

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.

Install

ClawHub CLI
openclaw skills install @guoway/redmine-issue
Node.js (npx)
npx clawhub@latest install redmine-issue

Full SKILL.md

Open original
Metadata table.
namedescription
redmine-issueRead 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.

SKILL.md content below is scrollable.

Redmine Issue

Read Redmine issues through REST API.

Required environment variables

  • REDMINE_URL (example: https://redmine.sylksoft.com)
  • One auth mode:
    • REDMINE_API_KEY, or
    • REDMINE_USERNAME + REDMINE_PASSWORD

Get one issue

node {baseDir}/scripts/issues.mjs get --id 123

List issues

node {baseDir}/scripts/issues.mjs list
node {baseDir}/scripts/issues.mjs list --project-id my-project --status-id open --limit 20 --offset 0
node {baseDir}/scripts/issues.mjs list --assigned-to-id me --sort "updated_on:desc"

Update one issue

node {baseDir}/scripts/issues.mjs update --id 123 --status-id 2 --notes "開始處理"
node {baseDir}/scripts/issues.mjs update --id 123 --assigned-to-id 6 --priority-id 3
node {baseDir}/scripts/issues.mjs update --id 123 --done-ratio 50 --notes "完成一半"

Notes

  • URL and auth are variables by design for cross-environment deployment.
  • API responses are output as JSON.
  • For automation, prefer REDMINE_API_KEY over username/password.
ClawHub Registry URL: https://clawhub.ai/guoway/skills/redmine-issue

Related skills

If this matches your use case, these are close alternatives in the same category.