Generate stakeholder-specific communications and presentations for product updates
Generates stakeholder-specific communications and presentations for product updates and announcements.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSpecialized skill for generating stakeholder-specific communications and presentations. Enables product teams to create targeted communications that resonate with different audiences and maintain alignment.
This skill integrates with the following processes:
stakeholder-alignment.js - All stakeholder communicationsproduct-council-review.js - Review presentationsproduct-launch-gtm.js - Launch communicationsquarterly-roadmap.js - Roadmap presentations{
"type": "object",
"properties": {
"communicationType": {
"type": "string",
"enum": ["executive-summary", "board-update", "sales-brief", "customer-announcement", "internal-update", "status-report", "faq"],
"description": "Type of communication to generate"
},
"audience": {
"type": "string",
"enum": ["executive", "board", "sales", "customer", "engineering", "all-hands"],
"description": "Target audience"
},
"content": {
"type": "object",
"properties": {
"topic": { "type": "string" },
"keyPoints": { "type": "array", "items": { "type": "string" } },
"data": { "type": "object" },
"context": { "type": "string" }
}
},
"tone": {
"type": "string",
"enum": ["formal", "professional", "casual", "urgent"],
"default": "professional"
},
"format": {
"type": "string",
"enum": ["document", "presentation", "email", "slack"],
"default": "document"
}
},
"required": ["communicationType", "audience", "content"]
}
{
"type": "object",
"properties": {
"communication": {
"type": "object",
"properties": {
"title": { "type": "string" },
"summary": { "type": "string" },
"body": { "type": "string" },
"keyTakeaways": { "type": "array", "items": { "type": "string" } },
"callToAction": { "type": "string" }
}
},
"presentation": {
"type": "object",
"properties": {
"slides": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": { "type": "string" },
"content": { "type": "string" },
"speakerNotes": { "type": "string" }
}
}
},
"talkingPoints": { "type": "array", "items": { "type": "string" } }
}
},
"faq": {
"type": "array",
"items": {
"type": "object",
"properties": {
"question": { "type": "string" },
"answer": { "type": "string" },
"audience": { "type": "string" }
}
}
},
"metadata": {
"type": "object",
"properties": {
"recommendedChannels": { "type": "array", "items": { "type": "string" } },
"timing": { "type": "string" },
"followUp": { "type": "array", "items": { "type": "string" } }
}
}
}
}
const communication = await executeSkill('stakeholder-comms', {
communicationType: 'executive-summary',
audience: 'executive',
content: {
topic: 'Q1 Product Review',
keyPoints: [
'Launched 3 major features',
'NPS improved by 15 points',
'On track for ARR target'
],
data: {
featuresLaunched: 3,
npsChange: 15,
arrProgress: 0.85
}
},
tone: 'professional',
format: 'presentation'
});
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 asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.