TransportationDocumentedScanned
productboard-release
Manage ProductBoard releases and roadmap planning
Share:
Installation
npx clawhub@latest install productboard-releaseView the full skill documentation and source below.
Documentation
ProductBoard Release Planning Skill
Plan and manage product releases by organizing features, tracking progress, and updating statuses in ProductBoard.
Available Tools
pb_feature_create- Create new features for releasespb_feature_update- Update feature status and detailspb_feature_list- List features by status or productpb_feature_get- Get detailed feature informationpb_product_list- List productspb_product_hierarchy- View product structurepb_user_list- Find users to assign as owners
Release Planning Workflow
1. Review Current State
1. pb_product_hierarchy - Understand workspace structure
2. pb_feature_list with status "candidate" - Review feature candidates
3. pb_feature_list with status "in-progress" - Check ongoing work
2. Prioritize Features
Review candidates and update their status:
pb_feature_update:
- id: "feature-id"
- status: "in-progress" // Move to active development
3. Assign Owners
Find users and assign feature ownership:
1. pb_user_list - Get available team members
2. pb_feature_update:
- id: "feature-id"
- ownerEmail: "developer@company.com"
4. Set Timeframes
Add planning dates to features:
pb_feature_update:
- id: "feature-id"
- startDate: "2024-01-15"
- endDate: "2024-02-15"
5. Track Progress
Monitor feature statuses:
pb_feature_list with status "in-progress" - Active development
pb_feature_list with status "shipped" - Completed features
Feature Status Lifecycle
| Status | Description |
new | Just created, not yet evaluated |
candidate | Being considered for development |
in-progress | Actively being developed |
shipped | Released to customers |
postponed | Deferred to future planning |
archived | No longer relevant |
Planning Scenarios
Sprint Planning
pb_feature_list with status "candidate"pb_feature_get for detailspb_feature_updatepb_feature_update with ownerEmailpb_feature_update with startDate/endDateRelease Retrospective
pb_feature_list with status "shipped"pb_feature_update with status "archived"Quarterly Planning
pb_product_hierarchypb_feature_createOrganizing Features
By Product
pb_feature_create:
- name: "Feature name"
- productId: "product-id"
- status: "candidate"
By Component
pb_feature_create:
- name: "Feature name"
- componentId: "component-id"
- status: "candidate"
As Sub-feature
pb_feature_create:
- name: "Sub-feature name"
- parentFeatureId: "parent-feature-id"