ProductPlan for Sales & Customer Success
Customer-ready roadmap views and release timelines.
Quick Answers for Customer Calls
"What's coming soon?"
- Call
list_launchesto see upcoming releases - Filter for launches in the next 30-90 days
- Present as a timeline customers can understand
"When will feature X be available?"
- Call
get_roadmap_completefor the relevant product - Search bars for the feature name
- Report the end_date as the expected availability
"What did you recently release?"
- Call
list_launches - Filter for completed launches
- Summarize recent releases with key highlights
"What's on the roadmap for this year?"
- Call
get_roadmap_completefor the product - Summarize features by quarter
- Present high-level themes, not granular details
Roadmap Views
Get product roadmap overview
- Call
list_roadmapsto find the right product - Call
get_roadmap_completewith roadmap_id - Format as customer-friendly timeline
View by lane/category
Lanes represent categories (e.g., "Platform", "Integrations", "UX"):
- Call
get_roadmap_lanesto see categories - Call
get_roadmap_barsto get features - Group features by lane for themed presentations
Key milestones
Call get_roadmap_milestones to get major dates:
- Beta releases
- GA launches
- Conference announcements
Launch Information
Upcoming launches
Call list_launches for all scheduled releases.
Key fields for customers:
- Launch name
- Target date
- Status (on track, delayed)
Launch details
Call get_launch with launch_id for:
- Full description
- Included features
- Release notes draft
Customer Feedback Loop
Check if idea exists
- Call
list_ideas - Search for the customer's request
- If found, share current status and vote count
Log customer request
Call manage_idea with action="create", title, description to capture:
- Feature requests from calls
- Enhancement suggestions
- Pain points mentioned
Add customer to existing idea
If the idea already exists:
- Get idea_id from
list_ideas - Call
manage_idea_customerwith action="add", idea_id, customer_name, customer_email
This increases vote count and links the customer for follow-up.
Presentation Patterns
Quarterly roadmap summary
Template for customer presentations:
- Call
get_roadmap_complete - Group features by quarter
- Format as:
- Q1: [Feature A, Feature B] - Theme
- Q2: [Feature C, Feature D] - Theme
Release calendar
- Call
list_launches - Format as monthly calendar:
- January: Launch X, Launch Y
- February: Launch Z
Feature status check
For specific customer questions:
- Find the feature in
get_roadmap_bars - Report: Feature name, Lane, Expected date, Current status
Tool Reference (Read-Focused)
Roadmap Discovery
list_roadmaps- find the right product roadmapget_roadmap- basic roadmap infoget_roadmap_complete- full roadmap in one call
Feature Information
get_roadmap_bars- features on the roadmapget_bar- single feature detailsget_roadmap_lanes- feature categories
Timeline Data
get_roadmap_milestones- key dateslist_launches- upcoming releasesget_launch- launch details
Customer Voice
list_ideas- check for existing requestsget_idea- idea details and votesmanage_idea- log new request (action="create")manage_idea_customer- link customer to idea (action="add")
System
check_status- verify access before customer call
Error Handling
Common errors
| Error | Cause | Solution |
|---|---|---|
| "Invalid API token" | Token expired | Contact admin |
| "Not found" | Roadmap changed | Refresh with list_roadmaps |
| "Rate limited" | Quota exceeded | Wait 60 seconds |
Timeout guidance
- List operations: 1-3 seconds
get_roadmap_complete: 3-5 seconds- If slow before a call, run
health_checkfirst
Style Guidelines
DO
- Use customer-friendly language (no internal jargon)
- Present dates as quarters or months ("Q2 2025", "March")
- Lead with what's most relevant to the customer
- Group features by theme or capability
- Include "subject to change" disclaimer for future dates
- Offer to log feedback if customer mentions a need
DON'T
- Share internal IDs, lane names, or technical details
- Promise exact dates without PM confirmation
- Expose OKRs or internal strategic details
- Show features marked as confidential or internal
- List every minor enhancement; focus on customer value
- Output raw data structures