Objectives and Key Results planning, tracking, and alignment capabilities
Creates and tracks Objectives and Key Results to align team goals with strategic outcomes.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSpecialized skill for Objectives and Key Results planning and tracking. Enables product teams to set effective OKRs, track progress, and maintain alignment with organizational goals.
This skill integrates with the following processes:
quarterly-roadmap.js - OKR-driven roadmap planningproduct-vision-strategy.js - Strategic OKR alignmentmetrics-dashboard.js - KR metric trackingstakeholder-alignment.js - OKR communication{
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": ["create", "review", "score", "align"],
"description": "Operation mode"
},
"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": "High-level goals to convert to OKRs"
}
},
"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: [
'Achieve $10M ARR',
'Expand to 3 new markets',
'Reach 90% customer satisfaction'
],
teamMission: 'Deliver product experiences that drive customer adoption',
timeframe: 'Q2 2026'
},
inputGoals: [
'Improve user onboarding experience',
'Launch mobile application',
'Reduce churn in enterprise segment'
]
});
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.