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 olgasafonova/productplan-mcp-server --skill productplan-pmgit clone --depth 1 https://github.com/olgasafonova/productplan-mcp-serverWrote 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/olgasafonova/productplan-mcp-server/productplan-pm)<a href="https://agentmods.dev/skills/olgasafonova/productplan-mcp-server/productplan-pm"><img src="https://agentmods.dev/badge/skills/olgasafonova/productplan-mcp-server/productplan-pm/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/olgasafonova/productplan-mcp-server/productplan-pm"><img src="https://agentmods.dev/badge/skills/olgasafonova/productplan-mcp-server/productplan-pm.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.00051 | $0.01674 |
| Opus 5 | $0.00026 | $0.00837 |
| Sonnet 5 | $0.00010 | $0.00335 |
| Haiku 4.5 | $0.00005 | $0.00167 |
Grade A, and why
productplan-pm 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 11d 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 — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ProductPlan for Product Managers
Complete toolkit for day-to-day product management in ProductPlan.
The ID Chain Pattern
ProductPlan tools require IDs. Always list first, then drill down:
list_roadmaps → roadmap_id → get_roadmap_bars → bar_id → get_bar
list_objectives → objective_id → get_objective → key_result data
list_ideas → idea_id → get_idea → customer/tag data
Roadmap Management
View your roadmap
- Call
list_roadmapsto get roadmap IDs - Call
get_roadmap_completewith roadmap_id for all data in one call- Returns bars, lanes, and milestones together
- Faster than separate calls
Add a new feature
- Get roadmap_id from
list_roadmaps - Get lane_id from
get_roadmap_lanes(pick the category) - Call
manage_barwith:- action="create"
- roadmap_id, lane_id
- name, start_date, end_date (YYYY-MM-DD)
Reschedule a feature
- Get bar_id from
get_roadmap_bars - Call
manage_barwith action="update", bar_id, new start_date and end_date
Move feature to different lane
- Get bar_id from
get_roadmap_bars - Get target lane_id from
get_roadmap_lanes - Call
manage_barwith action="update", bar_id, lane_id
Create feature dependencies
- Get both bar IDs from
get_roadmap_bars - Call
manage_bar_connectionwith action="create", bar_id (source), target_bar_id
Add comments to features
- Get bar_id from
get_roadmap_bars - Call
manage_bar_commentwith action="create", bar_id, content
Link external resources
Call manage_bar_link with action="create", bar_id, url, title
Manage lanes
- Create:
manage_lanewith action="create", roadmap_id, name, color - Reorder:
manage_lanewith action="update", lane_id, position - Delete:
manage_lanewith action="delete", lane_id
Add milestones
Call manage_milestone with action="create", roadmap_id, name, date
OKR Workflows
Review quarterly objectives
- Call
list_objectivesto see all objectives with progress percentages - For details, call
get_objectivewith objective_id
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.
- 11d ago First seen · 226 lines · 51 tokens per session scan A 2f93334bd01b
productplan-pm is a skill published in the GitHub repository olgasafonova/productplan-mcp-server (3 stars, last pushed 2d ago), licensed MIT. It adds 51 tokens to every session and 1,674 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-08-31.
Other skills, from other repositories
miro-workflow
Compose Miro boards from natural-language requests by combining tools from miro-mcp-server. Use when the user asks to set up a sprint board, retrospective, brainstorming session, user story map, kanban, or any structured Miro layout. Do NOT use for single-tool calls (create one sticky), questions about Miro the…
miro-boards
Create and manage Miro board content including stickies, shapes, connectors, diagrams, and mindmaps. Use for whiteboard collaboration, sprint planning, retrospectives, and brainstorming.
go-expert
Expert-level Go development with Go 1.22+ features, concurrency, standard library, and production-grade best practices. Use when the user mentions concurrency, microservices, or backend, or when the task involves idiomatic Go, goroutines and channels, context-based cancellation, or writing an HTTP server.
code-review
Structured code review prompt with language and focus area.
explain-error
Explain an error message with optional context.
wiki-publish
Convert a markdown file to wikitext and publish it to a MediaWiki wiki using the wiki CLI. Use when user says "publish to wiki", "push this to the wiki", "wiki publish", or asks to publish a markdown file as a wiki page.