redmine

redmine is a skill for Claude Code, Codex from intentic/intentic. It costs 34 tokens per session (437 once invoked), scanned B, original, MIT.

A connection to Redmine, a project-tracking service for managing work items and software projects. It can read projects and issues and create or update issue details through Redmine's web API.

In plain words
What is it for?
Use it to list projects, review open issues, inspect an issue, create new issues, and add notes or change issue status.
Why use it?
It avoids switching to Redmine or manually constructing API requests to check and maintain project tickets.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to list projects, review open issues, inspect an issue, create new issues, and add notes or change issue status.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/intentic/intentic/redmine
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add intentic/intentic --skill redmine
Clone the repo
git clone --depth 1 https://github.com/intentic/intentic

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for redmine

README.md
[![agentmods](https://agentmods.dev/badge/skills/intentic/intentic/redmine.svg)](https://agentmods.dev/skills/intentic/intentic/redmine)
Your own site
<a href="https://agentmods.dev/skills/intentic/intentic/redmine"><img src="https://agentmods.dev/badge/skills/intentic/intentic/redmine.svg" alt="Measured on agentmods" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 437 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00034 $0.00437
Opus 5 $0.00017 $0.00218
Sonnet 5 $0.00007 $0.00087
Haiku 4.5 $0.00003 $0.00044

Measured today against content hash a61b076ad922, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

redmine scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

- Create an issue: `curl -s -X POST -H "X-Redmine-API-Key: $REDMINE_API_KEY" -H "Content-Type: application/json" -d '{"issue":{"project_id":<PID>,"subject":"...","description":"..."}}' "$REDMINE_URL/issues.json"`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

Instance in `$REDMINE_URL`, API key in `$REDMINE_API_KEY`. Talk to `$REDMINE_URL` with `curl`.
_extensions/connectors/skills/redmine/SKILL.md · 17 lines

What it actually says

Redmine (connected)

Instance in $REDMINE_URL, API key in $REDMINE_API_KEY. Talk to $REDMINE_URL with curl. Header: -H "X-Redmine-API-Key: $REDMINE_API_KEY".

  • Who am I: curl -s -H "X-Redmine-API-Key: $REDMINE_API_KEY" "$REDMINE_URL/users/current.json" | jq '.user | {id, login}'
  • Projects: curl -s -H "X-Redmine-API-Key: $REDMINE_API_KEY" "$REDMINE_URL/projects.json" | jq '.projects[] | {id, identifier, name}'
  • Open issues: curl -s -H "X-Redmine-API-Key: $REDMINE_API_KEY" "$REDMINE_URL/issues.json?status_id=open&limit=50" | jq '.issues[] | {id, subject, status: .status.name}'
  • One issue: curl -s -H "X-Redmine-API-Key: $REDMINE_API_KEY" "$REDMINE_URL/issues/<ID>.json" | jq '.issue | {id, subject, description}'
  • Create an issue: curl -s -X POST -H "X-Redmine-API-Key: $REDMINE_API_KEY" -H "Content-Type: application/json" -d '{"issue":{"project_id":<PID>,"subject":"...","description":"..."}}' "$REDMINE_URL/issues.json"
  • Update an issue: curl -s -X PUT -H "X-Redmine-API-Key: $REDMINE_API_KEY" -H "Content-Type: application/json" -d '{"issue":{"notes":"...","status_id":<SID>}}' "$REDMINE_URL/issues/<ID>.json"
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today First seen · 17 lines · 34 tokens per session scan B a61b076ad922

Subscribe to this mod's changes

redmine is a skill published in the GitHub repository intentic/intentic (32 stars, last pushed today), licensed MIT. It adds 34 tokens to every session and 437 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-06.