library/specializations/product-management/skills/gtm-strategy/SKILL.md
Go-to-market planning and execution capabilities for product launches
npx skillsauth add a5c-ai/babysitter GTM StrategyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Specialized 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'
});
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.