Generates customer-ready roadmap views and launch timelines from ProductPlan for Sales and Customer Success teams. Use when preparing for customer calls, sharing product direction, or answering "when will feature X ship?" questions.
Add this skill
npx mdskills install olgasafonova/productplan-customer-facingWell-structured customer-facing skill with clear Q&A patterns and presentation templates
1---2name: productplan-customer-facing3description: Generates customer-ready roadmap views and launch timelines from ProductPlan for Sales and Customer Success teams. Use when preparing for customer calls, sharing product direction, or answering "when will feature X ship?" questions.4version: "1.0.0"5license: MIT6compatibility: Requires productplan-mcp-server installed and PRODUCTPLAN_API_TOKEN configured7metadata:8 author: olgasafonova9 mcp-server: productplan-mcp-server10 mcp-protocol: "2024-11-05"11 mcp-transport: stdio12 homepage: https://github.com/olgasafonova/productplan-mcp-server13 persona: sales-customer-success14---1516# ProductPlan for Sales & Customer Success1718Customer-ready roadmap views and release timelines.1920## Quick Answers for Customer Calls2122### "What's coming soon?"23241. Call `list_launches` to see upcoming releases252. Filter for launches in the next 30-90 days263. Present as a timeline customers can understand2728### "When will feature X be available?"29301. Call `get_roadmap_complete` for the relevant product312. Search bars for the feature name323. Report the end_date as the expected availability3334### "What did you recently release?"35361. Call `list_launches`372. Filter for completed launches383. Summarize recent releases with key highlights3940### "What's on the roadmap for this year?"41421. Call `get_roadmap_complete` for the product432. Summarize features by quarter443. Present high-level themes, not granular details4546## Roadmap Views4748### Get product roadmap overview49501. Call `list_roadmaps` to find the right product512. Call `get_roadmap_complete` with roadmap_id523. Format as customer-friendly timeline5354### View by lane/category5556Lanes represent categories (e.g., "Platform", "Integrations", "UX"):571. Call `get_roadmap_lanes` to see categories582. Call `get_roadmap_bars` to get features593. Group features by lane for themed presentations6061### Key milestones6263Call `get_roadmap_milestones` to get major dates:64- Beta releases65- GA launches66- Conference announcements6768## Launch Information6970### Upcoming launches7172Call `list_launches` for all scheduled releases.7374Key fields for customers:75- Launch name76- Target date77- Status (on track, delayed)7879### Launch details8081Call `get_launch` with launch_id for:82- Full description83- Included features84- Release notes draft8586## Customer Feedback Loop8788### Check if idea exists89901. Call `list_ideas`912. Search for the customer's request923. If found, share current status and vote count9394### Log customer request9596Call `manage_idea` with action="create", title, description to capture:97- Feature requests from calls98- Enhancement suggestions99- Pain points mentioned100101### Add customer to existing idea102103If the idea already exists:1041. Get idea_id from `list_ideas`1052. Call `manage_idea_customer` with action="add", idea_id, customer_name, customer_email106107This increases vote count and links the customer for follow-up.108109## Presentation Patterns110111### Quarterly roadmap summary112113Template for customer presentations:1141. Call `get_roadmap_complete`1152. Group features by quarter1163. Format as:117 - **Q1**: [Feature A, Feature B] - Theme118 - **Q2**: [Feature C, Feature D] - Theme119120### Release calendar1211221. Call `list_launches`1232. Format as monthly calendar:124 - **January**: Launch X, Launch Y125 - **February**: Launch Z126127### Feature status check128129For specific customer questions:1301. Find the feature in `get_roadmap_bars`1312. Report: Feature name, Lane, Expected date, Current status132133## Tool Reference (Read-Focused)134135### Roadmap Discovery136- `list_roadmaps` - find the right product roadmap137- `get_roadmap` - basic roadmap info138- `get_roadmap_complete` - full roadmap in one call139140### Feature Information141- `get_roadmap_bars` - features on the roadmap142- `get_bar` - single feature details143- `get_roadmap_lanes` - feature categories144145### Timeline Data146- `get_roadmap_milestones` - key dates147- `list_launches` - upcoming releases148- `get_launch` - launch details149150### Customer Voice151- `list_ideas` - check for existing requests152- `get_idea` - idea details and votes153- `manage_idea` - log new request (action="create")154- `manage_idea_customer` - link customer to idea (action="add")155156### System157- `check_status` - verify access before customer call158159## Error Handling160161### Common errors162163| Error | Cause | Solution |164|-------|-------|----------|165| "Invalid API token" | Token expired | Contact admin |166| "Not found" | Roadmap changed | Refresh with list_roadmaps |167| "Rate limited" | Quota exceeded | Wait 60 seconds |168169### Timeout guidance170171- List operations: 1-3 seconds172- `get_roadmap_complete`: 3-5 seconds173- If slow before a call, run `health_check` first174175## Style Guidelines176177### DO178179- Use customer-friendly language (no internal jargon)180- Present dates as quarters or months ("Q2 2025", "March")181- Lead with what's most relevant to the customer182- Group features by theme or capability183- Include "subject to change" disclaimer for future dates184- Offer to log feedback if customer mentions a need185186### DON'T187188- Share internal IDs, lane names, or technical details189- Promise exact dates without PM confirmation190- Expose OKRs or internal strategic details191- Show features marked as confidential or internal192- List every minor enhancement; focus on customer value193- Output raw data structures194
Full transparency — inspect the skill content before installing.