名称: OKR规划 描述: 目标与关键成果规划、跟踪与对齐能力 允许工具:
- 读取
- 写入
- 全局搜索
- 文本搜索
- Bash
OKR规划技能
概述
专用于目标与关键成果规划与跟踪的技能。使产品团队能够设定有效的OKR,跟踪进度,并保持与组织目标的一致性。
能力
OKR创建
- 根据战略目标生成OKR
- 验证关键成果的可衡量性和具体性
- 确保目标具有启发性和挑战性
- 创建嵌套/级联的OKR结构
- 定义评分标准(0.0-1.0)
对齐
- 将团队OKR与公司OKR对齐
- 映射团队OKR之间的依赖关系
- 识别目标覆盖范围的空白
- 确保纵向和横向对齐
- 创建OKR级联可视化
跟踪与报告
- 计算OKR进度和分数
- 生成OKR审查报告
- 识别存在风险的目标
- 跟踪随时间变化的信心水平
- 创建每周/每月检查模板
目标流程
此技能与以下流程集成:
quarterly-roadmap.js- OKR驱动的路线图规划product-vision-strategy.js- 战略OKR对齐metrics-dashboard.js- 关键成果指标跟踪stakeholder-alignment.js- OKR沟通
输入模式
{
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": ["create", "review", "score", "align"],
"description": "操作模式"
},
"strategicContext": {
"type": "object",
"properties": {
"companyObjectives": { "type": "array", "items": { "type": "string" } },
"teamMission": { "type": "string" },
"timeframe": { "type": "string" }
}
},
"existingOKRs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"objective": { "type": "string" },
"keyResults": {
"type": "array",
"items": {
"type": "object",
"properties": {
"kr": { "type": "string" },
"target": { "type": "string" },
"current": { "type": "string" },
"confidence": { "type": "number" }
}
}
}
}
}
},
"inputGoals": {
"type": "array",
"items": { "type": "string" },
"description": "待转换为OKR的高层目标"
}
},
"required": ["mode"]
}
输出模式
{
"type": "object",
"properties": {
"okrs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"objective": { "type": "string" },
"rationale": { "type": "string" },
"keyResults": {
"type": "array",
"items": {
"type": "object",
"properties": {
"kr": { "type": "string" },
"metric": { "type": "string" },
"baseline": { "type": "string" },
"target": { "type": "string" },
"stretch": { "type": "string" },
"measurable": { "type": "boolean" }
}
}
},
"alignedTo": { "type": "array", "items": { "type": "string" } }
}
}
},
"alignment": {
"type": "object",
"properties": {
"coverageScore": { "type": "number" },
"gaps": { "type": "array", "items": { "type": "string" } },
"dependencies": { "type": "array", "items": { "type": "object" } }
}
},
"scorecard": {
"type": "object",
"properties": {
"overallScore": { "type": "number" },
"byObjective": { "type": "array", "items": { "type": "object" } },
"atRisk": { "type": "array", "items": { "type": "string" } },
"onTrack": { "type": "array", "items": { "type": "string" } }
}
},
"recommendations": {
"type": "array",
"items": { "type": "string" }
}
}
}
使用示例
const okrs = await executeSkill('okr-planning', {
mode: 'create',
strategicContext: {
companyObjectives: [
'实现1000万美元年度经常性收入',
'拓展至3个新市场',
'达到90%客户满意度'
],
teamMission: '提供推动客户采用的产品体验',
timeframe: '2026年第二季度'
},
inputGoals: [
'改善用户入门体验',
'发布移动应用程序',
'降低企业细分市场的流失率'
]
});
依赖项
- OKR框架和最佳实践
- 评分算法