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.
npx skills add NobuoTsukamoto/redmine-local-mcp --skill redmine-workflowsgit clone --depth 1 https://github.com/NobuoTsukamoto/redmine-local-mcpWrote 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.
[](https://agentmods.dev/skills/nobuotsukamoto/redmine-local-mcp/redmine-workflows)<a href="https://agentmods.dev/skills/nobuotsukamoto/redmine-local-mcp/redmine-workflows"><img src="https://agentmods.dev/badge/skills/nobuotsukamoto/redmine-local-mcp/redmine-workflows/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/nobuotsukamoto/redmine-local-mcp/redmine-workflows"><img src="https://agentmods.dev/badge/skills/nobuotsukamoto/redmine-local-mcp/redmine-workflows.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00069 | $0.01112 |
| Opus 5 | $0.00034 | $0.00556 |
| Sonnet 5 | $0.00014 | $0.00222 |
| Haiku 4.5 | $0.00007 | $0.00111 |
Grade A, and why
redmine-workflows scanned grade A with 0 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 10d ago.
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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 86 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Redmine Workflows
このスキルは、redmine-local-mcp MCP サーバーを使って Redmine のチケットを確認、検索、作成、更新するときに使います。
使える MCP ツール
Redmine MCP サーバーのツールは次のように使い分けます。
get_my_issues: 設定された Redmine API ユーザーに割り当てられたチケットを取得する。search_issues: project、assignee、status、tracker、priority、query、sort、text、limit、offset でチケットを検索する。get_issue: id を指定してチケット詳細を取得する。必要に応じて journals、attachments、relations、children、watchers を含める。list_projects: API ユーザーから見えるプロジェクト一覧を取得する。create_issue: チケットを作成する。REDMINE_ENABLE_WRITE=trueが必要。add_issue_note: チケットにコメントを追加する。REDMINE_ENABLE_WRITE=trueが必要。
安全ルール
create_issueとadd_issue_noteは書き込み操作として扱う。- 書き込みツールを使う前に、実行内容を要約してユーザーに確認する。
- 書き込み時に project id、issue id、tracker id、status id、priority id、assignee id が不明な場合は推測しない。ユーザーに聞くか、検索して確認する。
- チケット本文やコメントに API キー、非公開 Redmine URL、ローカル MCP クライアント設定を書かない。
- 書き込みが無効な場合は、
REDMINE_ENABLE_WRITE=trueが必要であることを説明し、再実行せずに止める。
担当チケット確認
ユーザーが現在の作業、担当チケット、自分の Redmine チケットについて聞いた場合:
- 指定がなければ
get_my_issuesをstatus_id: "open"、sort: "updated_on:desc"で呼ぶ。 - status や priority が取れる場合は、それらで整理して要約する。
- 返却情報から判断できる範囲で、ブロック中または最近更新されたチケットを目立たせる。
- 詳細確認用に issue id を示す。ただし必要がなければ全件に対して
get_issueは呼ばない。
チケット検索
ユーザーがチケットを探したい場合:
- ユーザーが指定した条件をできるだけ具体的に
search_issuesへ渡す。 textは subject / description の軽い絞り込みとして使う。- 結果が多い場合は候補を要約し、どのチケットを詳しく見るか確認する。
- 詳細、履歴、添付、関連、子チケットに依存する判断をする前に
get_issueを使う。
チケット作成
ユーザーが Redmine チケット作成を依頼した場合:
project_idとsubjectを確認する。- context が足りない場合は
descriptionを質問するか、下書きを作る。 - optional fields は、ユーザーが指定したもの、またはプロジェクト運用上明確なものだけ入れる。
- 作成前に最終 payload の要点を簡潔に示す。
- ユーザーの確認を得てから
create_issueを呼ぶ。
説明文の推奨形:
## 概要
## 手順 / 背景
## 期待結果
## 実際の結果
## 補足
コメント追加
ユーザーがチケットへのコメント追加を依頼した場合:
- 対象 issue id を確認する。
- 短く事実ベースのコメント案を作る。
- 追加するコメント本文をそのまま表示する。
- ユーザーの確認を得てから
add_issue_noteを呼ぶ。
回答スタイル
- 要約は短く、次の行動につながる形にする。
- 可能な範囲で issue id、subject、status、assignee、priority、updated date を含める。
- Redmine から返った事実と、推測や提案を分けて書く。
- ユーザーが日本語で聞いた場合は日本語で答える。
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.
- 10d ago First seen · 86 lines · 69 tokens per session scan A d8508ce1005f
redmine-workflows is a skill published in the GitHub repository NobuoTsukamoto/redmine-local-mcp (0 stars, last pushed 2mo ago), licensed MIT. It adds 69 tokens to every session and 1,112 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.
Other skills, from other repositories
recipe-create-meet-space
Create a Google Meet meeting space and share the join link.
workthreads
SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…
atmos-config
Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.
story-readiness
Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…
autotask-creator
Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.
projects
List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.