Agent Skills
Productlane
Manage feedback, changelogs, and roadmaps with Productlane API
Productlane is a product management platform for feedback, changelogs, and roadmaps. This skill enables your agent to manage feedback threads, contacts, changelog entries, roadmap projects, and documentation articles.
Required Environment
| Name | Type | Description |
|---|---|---|
PRODUCTLANE_API_KEY | secret | Productlane API key |
Get your API key from Settings > Integrations > API in your Productlane dashboard.
Configuration
version: "1.0"
agents:
my-agent:
framework: claude-code
skills:
- https://github.com/vm0-ai/vm0-skills/tree/main/productlaneRun
Store your secret on the platform (recommended, one-time setup):
vm0 secret set PRODUCTLANE_API_KEY your-productlane-api-keyThen run your agent - secrets are automatically loaded:
vm0 run my-agent "list recent feedback threads"For CI/CD or temporary overrides, pass secrets at runtime: --secrets PRODUCTLANE_API_KEY=value. See Environment Variables for details.
Example Instructions
# Feedback Analyst Agent
You use Productlane to analyze customer feedback.
## Workflow
1. Fetch recent feedback threads
2. Categorize by topic and sentiment
3. Identify recurring themes
4. Summarize top requests with vote counts
## Categories
- Feature requests
- Bug reports
- UX improvements
- Integration requests# Changelog Publisher Agent
You use Productlane to publish product changelogs.
## Workflow
1. Collect recent changes from release notes
2. Write a changelog entry in markdown
3. Publish to Productlane
4. Verify the entry appears on the public portal
## Format
- Title: version number and release date
- Body: categorized changes (added, fixed, improved)
- Include relevant links to documentation