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