名称: productboard-release
描述: 管理 ProductBoard 版本发布与路线图规划
user-invocable: false
主页: https://github.com/robertoamoreno/openclaw-productboard
元数据: {"openclaw":{"emoji":"🚀"}}
通过组织功能、跟踪进度和更新 ProductBoard 中的状态,来规划和管理产品版本发布。
pb_feature_create - 为发布创建新功能pb_feature_update - 更新功能状态和详细信息pb_feature_list - 按状态或产品列出功能pb_feature_get - 获取功能的详细信息pb_product_list - 列出产品pb_product_hierarchy - 查看产品结构pb_user_list - 查找用户以分配为负责人1. pb_product_hierarchy - 了解工作空间结构
2. pb_feature_list 状态为 "candidate" - 审查候选功能
3. pb_feature_list 状态为 "in-progress" - 检查进行中的工作
审查候选功能并更新其状态:
pb_feature_update:
- id: "feature-id"
- status: "in-progress" // 移至活跃开发阶段
查找用户并分配功能所有权:
1. pb_user_list - 获取可用的团队成员
2. pb_feature_update:
- id: "feature-id"
- ownerEmail: "developer@company.com"
为功能添加计划日期:
pb_feature_update:
- id: "feature-id"
- startDate: "2024-01-15"
- endDate: "2024-02-15"
监控功能状态:
pb_feature_list 状态为 "in-progress" - 活跃开发中的功能
pb_feature_list 状态为 "shipped" - 已完成的功能
| 状态 | 描述 |
|---|---|
new |
刚创建,尚未评估 |
candidate |
正在考虑纳入开发 |
in-progress |
正在积极开发中 |
shipped |
已发布给客户 |
postponed |
已推迟至未来规划 |
archived |
不再相关 |
pb_feature_list 并筛选状态为 "candidate"pb_feature_get 获取详细信息pb_feature_updatepb_feature_update 并指定 ownerEmailpb_feature_update 并指定 startDate/endDatepb_feature_list 并筛选状态为 "shipped"pb_feature_update 将状态更新为 "archived"pb_product_hierarchypb_feature_createpb_feature_create:
- name: "功能名称"
- productId: "产品-id"
- status: "candidate"
pb_feature_create:
- name: "功能名称"
- componentId: "组件-id"
- status: "candidate"
pb_feature_create:
- name: "子功能名称"
- parentFeatureId: "父功能-id"