Redmine Admin

Automate Redmine issue management, time logging, and report generation.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/avxkim/personal-marketplace --skill redmine-admin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Redmine Admin
Source: https://github.com/avxkim/personal-marketplace/tree/main/plugin/skills/redmine-admin
Command: npx skills add https://github.com/avxkim/personal-marketplace --skill redmine-admin

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Manually managing Redmine tasks (issues, time entries, reports) is time-consuming and prone to errors. This skill automates these repetitive administrative tasks, freeing up your time to focus on more critical work.

Core Features & Use Cases

  • Comprehensive Issue Management: Create, update, list, and retrieve detailed information for Redmine issues.
  • Effortless Time Logging & Reporting: Log time entries against tasks and generate detailed time reports for projects or users.
  • Wiki & Project Oversight: Read wiki page content and list project details, providing quick access to critical information.
  • Use Case: A project manager needs to quickly create 10 new tasks, assign them, and then generate a weekly time report for their team. This skill automates all these steps, ensuring accuracy and saving hours.

Quick Start

Locate tool

REDMINE_TOOL=$(for path in $(jq -r 'to_entries[] | .value.installLocation + "/plugin/skills/redmine-admin/redmine-tool.sh"' ~/.claude/plugins/known_marketplaces.json); do [ -f "$path" ] && echo "$path" && break; done)

Create issue

cat <<'EOF' | "$REDMINE_TOOL" create-issue - { "project_id": 1, "subject": "Fix authentication bug", "description": "Users unable to login with email", "priority_id": 3, "tracker_id": 1 } EOF