productplan-workflows — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited productplan-workflows (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
This skill teaches you how to work effectively with ProductPlan through the MCP server.
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 |
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 dataAlways start with a list tool to get IDs before calling detail tools.
list_roadmaps to see available roadmaps and get IDsget_roadmap_complete with the roadmap_id for full data in one calllist_roadmapsget_roadmap_lanes (pick the right category)manage_bar with action="create", roadmap_id, lane_id, name, start_date, end_dateget_roadmap_barsget_roadmap_lanesmanage_bar with action="update", bar_id, lane_idget_roadmap_barsmanage_bar_connection with action="create", bar_id (source), target_bar_idCall manage_milestone with action="create", roadmap_id, name, date (YYYY-MM-DD format)
list_objectives to see all objectives with progress percentagesget_objective with objective_id to see key resultsCall manage_objective with action="create", name, description, time_frame (e.g., "Q1 2025")
get_objective or list_key_resultsmanage_key_result with action="update", objective_id, key_result_id, current_valuelist_ideas to see all ideas with vote counts and statusget_idea for full detailsget_idea_customers to see who requested itCall manage_idea with action="create", title, description
list_ideasmanage_idea_tag with action="add", idea_id, name (creates tag if new)manage_opportunity action="create", problem_statement| Error | Cause | Solution |
|---|---|---|
| "Invalid API token" | Token expired or incorrect | Verify token at ProductPlan Settings → API |
| "Not found" | ID no longer exists | Re-run list tool to get fresh IDs |
| "Rate limited" | Request quota exceeded | Wait 60 seconds, then retry |
| "Permission denied" | No access to this resource | Check your ProductPlan role permissions |
get_roadmap_complete: may take 3-5 seconds for large roadmapshealth_check with deep=true to diagnose API issuescheck_status to verify authenticationget_roadmap_complete instead of multiple calls; it fetches in parallelhealth_check with deep=true to verify API connectivitycheck_status to verify authentication before complex operationsAll write operations use manage_* tools with an action parameter:
| Action | Purpose | Required Fields |
|---|---|---|
| create | Add new item | Varies by type |
| update | Modify existing | item_id + fields to change |
| delete | Remove item | item_id |
All dates use YYYY-MM-DD format: "2025-03-15"
Roadmaps: list_roadmaps, get_roadmap, get_roadmap_bars, get_roadmap_lanes, get_roadmap_milestones, get_roadmap_complete
Bars: get_bar, get_bar_children, get_bar_comments, get_bar_connections, get_bar_links
OKRs: list_objectives, get_objective, list_key_results
Ideas: list_ideas, get_idea, get_idea_customers, get_idea_tags, list_opportunities, get_opportunity, list_idea_forms, get_idea_form
Launches: list_launches, get_launch
Utility: check_status, health_check
Roadmaps: manage_bar, manage_lane, manage_milestone
Bar relationships: manage_bar_comment, manage_bar_connection, manage_bar_link
OKRs: manage_objective, manage_key_result
Ideas: manage_idea, manage_idea_customer, manage_idea_tag, manage_opportunity
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.