skills/stakeholder-communication/SKILL.md
Manage stakeholder expectations and engagement through targeted communication, regular updates, and relationship building. Tailor messaging for different stakeholder groups and priorities.
npx skillsauth add aj-geddes/useful-ai-prompts stakeholder-communicationInstall 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.
Effective stakeholder communication ensures alignment, manages expectations, builds trust, and keeps projects on track by addressing concerns proactively.
Minimal working example:
# Stakeholder identification and engagement planning
class StakeholderAnalysis:
ENGAGEMENT_LEVELS = {
'Unaware': 'Provide basic information',
'Resistant': 'Address concerns, build trust',
'Neutral': 'Keep informed, demonstrate value',
'Supportive': 'Engage as advocates',
'Champion': 'Leverage for change leadership'
}
def __init__(self, project_name):
self.project_name = project_name
self.stakeholders = []
def identify_stakeholders(self):
"""Common stakeholder categories"""
return {
'Executive Sponsors': {
'interests': ['ROI', 'Strategic alignment', 'Timeline'],
'communication': 'Monthly executive summary',
'influence': 'High',
'impact': 'High'
},
'Project Team': {
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents | |---|---| | Stakeholder Analysis | Stakeholder Analysis | | Communication Planning | Communication Planning | | Status Communication Templates | Status Communication Templates | | Difficult Conversations | Difficult Conversations |
development
Implement Zero Trust security model with identity verification, microsegmentation, least privilege access, and continuous monitoring. Use when building secure cloud-native applications.
development
Prevent Cross-Site Scripting (XSS) attacks through input sanitization, output encoding, and Content Security Policy. Use when handling user-generated content in web applications.
tools
Create wireframes and interactive prototypes to visualize user interfaces and gather feedback early. Use tools and techniques to communicate design ideas before development.
development
Implement real-time bidirectional communication with WebSockets including connection management, message routing, and scaling. Use when building real-time features, chat systems, live notifications, or collaborative applications.