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-workflowsgit 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-workflows)<a href="https://agentmods.dev/skills/olgasafonova/productplan-mcp-server/productplan-workflows"><img src="https://agentmods.dev/badge/skills/olgasafonova/productplan-mcp-server/productplan-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/olgasafonova/productplan-mcp-server/productplan-workflows"><img src="https://agentmods.dev/badge/skills/olgasafonova/productplan-mcp-server/productplan-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.00049 | $0.01639 |
| Opus 5 | $0.00024 | $0.00820 |
| Sonnet 5 | $0.00010 | $0.00328 |
| Haiku 4.5 | $0.00005 | $0.00164 |
Grade A, and why
productplan-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 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 — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ProductPlan Workflows
This skill teaches you how to work effectively with ProductPlan through the MCP server.
Core Concepts
ProductPlan organizes product work into five areas:
| Area | Purpose | Start With |
|---|---|---|
| Roadmaps | Visual timeline of planned features | list_roadmaps |
| OKRs | Strategic objectives and key results | list_objectives |
| Ideas | Customer feedback and feature requests | list_ideas |
| Opportunities | Validated problems worth solving | list_opportunities |
| Launches | Release coordination and checklists | list_launches |
The ID Chain Pattern
ProductPlan tools follow a consistent pattern: 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
Always start with a list tool to get IDs before calling detail tools.
Roadmap Workflows
View roadmap contents
- Call
list_roadmapsto see available roadmaps and get IDs - Call
get_roadmap_completewith the roadmap_id for full data in one call- This is faster than calling bars/lanes/milestones separately
Add a feature to the roadmap
- Get roadmap_id from
list_roadmaps - Get lane_id from
get_roadmap_lanes(pick the right category) - Call
manage_barwith action="create", roadmap_id, lane_id, name, start_date, end_date
Move a feature to a different lane
- Get bar_id from
get_roadmap_bars - Get new lane_id from
get_roadmap_lanes - Call
manage_barwith action="update", bar_id, lane_id
Create dependencies between features
- Get both bar IDs from
get_roadmap_bars - Call
manage_bar_connectionwith action="create", bar_id (source), target_bar_id
Add a milestone
Call manage_milestone with action="create", roadmap_id, name, date (YYYY-MM-DD format)
OKR Workflows
Review OKR progress
- Call
list_objectivesto see all objectives with progress percentages - For details, call
get_objectivewith objective_id to see key results
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 · 200 lines · 49 tokens per session scan A b1cd8c53fc1e
productplan-workflows is a skill published in the GitHub repository olgasafonova/productplan-mcp-server (3 stars, last pushed 3d ago), licensed MIT. It adds 49 tokens to every session and 1,639 once invoked, about $0.0002 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.