Go-to-market planning and execution capabilities for product launches
Creates comprehensive go-to-market strategies for product launches including messaging, channel plans, and sales enablement.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdSpecialized skill for go-to-market planning and execution capabilities. Enables product teams to plan effective launches, develop messaging, and coordinate cross-functional GTM activities.
This skill integrates with the following processes:
product-launch-gtm.js - Primary GTM planning and executioncompetitive-analysis.js - Competitive positioning for launchesbeta-program.js - Beta-to-GA transition planningstakeholder-alignment.js - Launch communication coordination{
"type": "object",
"properties": {
"product": {
"type": "object",
"properties": {
"name": { "type": "string" },
"description": { "type": "string" },
"targetAudience": { "type": "array", "items": { "type": "string" } },
"valueProposition": { "type": "string" },
"keyFeatures": { "type": "array", "items": { "type": "string" } }
}
},
"launchType": {
"type": "string",
"enum": ["new-product", "major-release", "feature-launch", "market-expansion"],
"description": "Type of launch"
},
"launchTier": {
"type": "string",
"enum": ["T1", "T2", "T3"],
"description": "Launch tier (T1=major, T2=medium, T3=minor)"
},
"targetDate": {
"type": "string",
"format": "date",
"description": "Target launch date"
},
"competitiveContext": {
"type": "object",
"description": "Competitive landscape information"
}
},
"required": ["product", "launchType"]
}
{
"type": "object",
"properties": {
"launchPlan": {
"type": "object",
"properties": {
"tier": { "type": "string" },
"timeline": { "type": "array", "items": { "type": "object" } },
"milestones": { "type": "array", "items": { "type": "object" } },
"checklist": { "type": "array", "items": { "type": "string" } }
}
},
"messaging": {
"type": "object",
"properties": {
"positioning": { "type": "string" },
"valueProposition": { "type": "string" },
"keyMessages": { "type": "array", "items": { "type": "string" } },
"audienceVariants": { "type": "object" }
}
},
"channelStrategy": {
"type": "object",
"properties": {
"primaryChannels": { "type": "array", "items": { "type": "string" } },
"contentPlan": { "type": "object" },
"metrics": { "type": "object" }
}
},
"salesEnablement": {
"type": "object",
"properties": {
"battlecard": { "type": "object" },
"objectionHandling": { "type": "array", "items": { "type": "object" } },
"talkTracks": { "type": "array", "items": { "type": "object" } }
}
},
"successMetrics": {
"type": "array",
"items": {
"type": "object",
"properties": {
"metric": { "type": "string" },
"target": { "type": "string" },
"timeframe": { "type": "string" }
}
}
}
}
}
const gtmPlan = await executeSkill('gtm-strategy', {
product: {
name: 'Advanced Analytics Suite',
description: 'Enterprise analytics platform with AI-powered insights',
targetAudience: ['Data Analysts', 'Business Intelligence Teams', 'C-Suite'],
valueProposition: 'Get actionable insights 10x faster with AI-powered analytics',
keyFeatures: ['Natural language queries', 'Automated insights', 'Real-time dashboards']
},
launchType: 'major-release',
launchTier: 'T1',
targetDate: '2026-03-15'
});
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.