stakeholder-management-expert
You are an expert in stakeholder consultation analysis, feedback summarization, sentiment analysis, and response strategy development for infrastructure and real estate projects.
Stakeholder Management Expert Skill
Expert in stakeholder consultation analysis, feedback summarization, sentiment analysis, and response strategy development for infrastructure and real estate projects.
When to Use This Skill
Use this skill when you need to:
- Summarize stakeholder feedback from public meetings, open houses, or consultations
- Analyze sentiment (support, opposition, neutral, mixed) across comments
- Categorize themes and identify key concerns from unstructured feedback
- Generate response strategies for addressing stakeholder concerns
- Track commitments made during consultation processes
- Prepare briefing notes for senior management on consultation outcomes
- Develop communication plans for stakeholder engagement
Key Capabilities
1. Feedback Analysis
- Theme categorization using keyword matching
- Frequency weighting to identify top concerns
- Sentiment analysis (support/opposition/neutral/mixed)
- Multi-category comment identification
- Question vs. statement classification
2. Strategic Response
- Response strategy generation by priority
- Tactical recommendations for each theme
- Commitment extraction and tracking
- Risk identification and mitigation
3. Reporting
- Executive summaries for decision-makers
- Detailed theme breakdowns with sample quotes
- Sentiment analysis visualization
- Commitments tracking matrix
- Response strategy recommendations
Tools Available
Consultation Summarizer (consultation_summarizer.py)
Analyzes stakeholder feedback and generates comprehensive summary with response strategy.
Purpose: Summarize public meeting feedback and develop response strategy
Input: JSON file with meeting info, comments, and theme categories
Output: Markdown or JSON report with:
- Meeting attendance and demographics
- Key themes and concerns (categorized, frequency-weighted)
- Sentiment analysis (support, opposition, neutral)
- Response strategy recommendations
- Commitments tracking matrix
Usage:
# Basic usage (auto-generates output in Reports/)
python consultation_summarizer.py samples/sample_1_station_public_meeting.json
# Specify output file
python consultation_summarizer.py input.json --output report.md
# JSON output format
python consultation_summarizer.py input.json --format json --output results.json
# Verbose mode
python consultation_summarizer.py input.json --verbose
Input Schema: See consultation_input_schema.json
Input Format
Basic Structure
{
"meeting_info": {
"meeting_date": "2025-10-15",
"meeting_type": "public_meeting",
"attendance": 85,
"location": "Community Center, 123 Main Street",
"project_name": "North Transit Station Project",
"phase": "preliminary_design"
},
"comments": [
"Concerned about traffic congestion during construction",
"Property values will decline",
"Support this project! We need better transit.",
...
],
"theme_categories": {
"Traffic": ["traffic", "congestion", "parking", "road"],
"Property Values": ["property value", "assessment", "market"],
"Noise": ["noise", "sound", "quiet", "loud"],
...
},
"priorities": {
"Traffic": 1,
"Property Values": 2,
"Noise": 3
}
}
Theme Categories
Define categories and keyword patterns for classification:
{
"Traffic": ["traffic", "congestion", "parking", "road"],
"Property Values": ["property value", "market", "taxes"],
"Business Impact": ["business", "customer", "sales", "revenue"],
"Safety": ["safety", "crime", "security", "emergency"],
"Accessibility": ["access", "wheelchair", "bike", "pedestrian"],
"Environmental": ["dust", "air quality", "pollution", "trees"],
"Compensation": ["compensation", "damages", "payment"],
"Communication": ["information", "notice", "update"]
}
Priorities
Assign priority levels (1=highest, 5=lowest) for response strategy:
{
"Traffic": 1,
"Construction Impact": 1,
"Business Impact": 2,
"Property Values": 2,
"Noise": 3,
"Accessibility": 3
}
Optional Demographics
{
"demographics": {
"residents": 52,
"business_owners": 18,
"property_owners": 10,
"elected_officials": 2,
"advocacy_groups": 3
}
}
Output Options
{
"output_options": {
"include_quotes": true,
"max_quotes_per_sentiment": 5,
"include_commitments": true,
"output_format": "markdown"
}
}
Output Format
Markdown Report Structure
# Stakeholder Consultation Summary
## North Transit Station Project
**Meeting Type:** Public Meeting
**Meeting Date:** 2025-10-15
**Location:** Community Center, 123 Main Street
**Project Phase:** Preliminary Design
## Attendance
**Total Attendance:** 85 people
### Demographic Breakdown
- Residents: 52 (61.2%)
- Business Owners: 18 (21.2%)
- Property Owners: 10 (11.8%)
...
## Overview Statistics
**Total Comments Received:** 85
**Categorized Comments:** 82 (96.5%)
**Themes Identified:** 10
### Sentiment Overview
**Overall Sentiment:** Moderate Opposition
- Support: 15
- Opposition: 42
- Neutral: 18
- Mixed: 10
## Key Themes and Concerns
| Rank | Theme | Comments | Percentage |
|------|-------|----------|------------|
| 1 | Traffic | 28 | 32.9% |
| 2 | Construction Impact | 22 | 25.9% |
| 3 | Business Impact | 15 | 17.6% |
...
### Top 3 Themes (Detailed)
#### Traffic (28 comments)
- "Very concerned about traffic congestion during construction..."
- "Traffic on Oak Avenue is already terrible..."
- "Traffic study is incomplete..."
## Response Strategy Recommendations
### High Priority
#### Traffic (28 comments)
**Strategy:** Prepare detailed traffic management plan and commit to mitigation measures
**Tactics:**
- Present traffic study with before/after analysis
- Commit to construction traffic routing away from residential streets
- Provide timeline for peak construction activities
- Establish complaint hotline for traffic issues
## Commitments Tracking Matrix
| Theme | Commitment | Responsible | Deadline | Status |
|-------|-----------|-------------|----------|--------|
| Traffic | No construction traffic on Main St | Project Team | Before construction | Pending |
...
## Recommended Next Steps
1. Circulate Summary
2. Implement High Priority Responses
3. Track Commitments
4. Follow-up Communication
5. Schedule Next Consultation
Shared Utilities Used
This skill uses the following shared utility functions:
From Shared_Utils/stakeholder_utils.py:
categorize_themes()- Categorize feedback into themessentiment_analysis()- Analyze sentiment (support/opposition/neutral)frequency_weighting()- Weight themes by frequencygenerate_response_strategy()- Generate response strategiescommitments_matrix()- Extract and track commitmentsextract_key_quotes()- Extract representative quotes
From Shared_Utils/report_utils.py:
format_markdown_table()- Format data as markdown tableseastern_timestamp()- Generate Eastern Time timestamps
Module Structure
stakeholder-management-expert/
├── SKILL.md # This file
├── consultation_summarizer.py # Main calculator
├── consultation_input_schema.json # JSON Schema validation
├── modules/
│ ├── validators.py # Input validation
│ ├── nlp_processing.py # Natural language processing
│ └── output_formatters.py # Report formatting
└── samples/
└── sample_1_station_public_meeting.json # Sample input
Examples
Example 1: Transit Station Public Meeting
Scenario: Transit authority holds public meeting for new station. 85 attendees provide feedback.
Input:
{
"meeting_info": {
"meeting_date": "2025-10-15",
"attendance": 85,
"project_name": "North Transit Station Project"
},
"comments": [
"Concerned about traffic congestion during construction",
"Support this project! We need better transit.",
...
],
"theme_categories": {
"Traffic": ["traffic", "congestion", "parking"],
"Property Values": ["property value", "market"],
...
}
}
Analysis Results:
- Overall Sentiment: Moderate Opposition
- Top Theme: Traffic (32.9% of comments)
- Support vs. Opposition: 15 support, 42 opposition
- Response Strategies: 10 strategies generated (prioritized)
- Commitments Tracked: 8 commitments identified
Example 2: Infrastructure Project Workshop
Scenario: Highway expansion project holds workshop. Focus on business impacts.
Key Findings:
- Business Impact is top concern (45% of comments)
- Strong opposition (60% opposition, 20% support)
- Compensation questions dominate
- High priority response: Business liaison program
Key Terms and Concepts
Sentiment Categories
- Support: Positive sentiment toward project
- Opposition: Negative sentiment, concerns, objections
- Neutral: Questions, requests for information
- Mixed: Both positive and negative elements
Priority Levels (1-5)
- 1 (Critical): Immediate response required, high impact
- 2 (High): Important concerns, significant stakeholder impact
- 3 (Medium): Standard concerns, moderate impact
- 4 (Low): Minor concerns, limited impact
- 5 (Very Low): Informational, minimal response needed
Response Strategy Components
- Strategy: High-level approach to addressing concern
- Tactics: Specific actions to implement strategy
- Priority: Urgency and importance level
- Responsible Party: Who will implement response
Best Practices
Theme Category Design
- Use clear, distinct categories - Avoid overlap between themes
- Include comprehensive keywords - Cover synonyms and variations
- Limit to 10-15 themes - Too many dilutes analysis
- Test and refine - Iterate based on uncategorized comments
Priority Assignment
- Consider impact - Frequency + severity
- Assess urgency - Timeline constraints
- Evaluate resources - Feasibility of response
- Align with project goals - Strategic importance
Commitment Tracking
- Document all commitments - Even informal ones
- Assign responsibility - Clear ownership
- Set deadlines - Realistic timelines
- Track status - Regular updates
- Communicate fulfillment - Close the loop with stakeholders
Response Strategy
- Acknowledge concerns - Validate stakeholder input
- Provide factual information - Counter misinformation
- Commit to specific actions - Concrete steps
- Establish feedback mechanisms - Ongoing communication
- Follow through - Deliver on commitments
Integration with Other Skills
This skill works well with:
- Transit Station Site Acquisition Strategy - Stakeholder feedback informs site selection
- Expropriation Timeline Expert - Consultation requirements and timelines
- Briefing Note Expert - Convert consultation summary to executive briefing
- Agricultural Easement Negotiation - Stakeholder concerns in rural areas
Limitations
- Keyword-based categorization - May miss nuanced comments not matching keywords
- Simple sentiment analysis - No deep learning or context understanding
- Manual priority assignment - Requires human judgment for priorities
- English language only - No support for multilingual feedback
- Text-only input - Cannot analyze verbal feedback or body language
Future Enhancements
Potential improvements:
- Machine learning-based theme classification
- Advanced sentiment analysis using NLP models
- Automatic priority assignment based on impact assessment
- Multilingual support
- Integration with survey platforms
- Trend analysis across multiple consultations
- Stakeholder segmentation analysis
- Geographic clustering of concerns
References
- Ontario Environmental Assessment Act - Public Consultation Requirements
- IAP2 Public Participation Spectrum
- Best Practices in Stakeholder Engagement (Infrastructure Ontario)
- Transit Project Assessment Process (Metrolinx)
Last Updated: 2025-11-17
Version: 1.0
Author: Reggie Chan, CFA, FRICS - VP Leasing & Asset Management
More from reggiechan74/vp-real-estate
commercial-lease-expert
Expert in commercial real estate lease agreements for industrial and office properties. Use when reviewing lease terms, negotiating base rent/operating expenses, analyzing tenant improvements and free rent, structuring net lease vs gross lease deals, evaluating renewal options, or advising on landlord/tenant rights. Key terms include base rent, operating expenses, proportionate share, TI allowance, net lease, triple net, lease economics, rent escalation, use clause, assignment restrictions, default remedies, Schedule G
31negotiation-expert
Expert in commercial lease negotiation strategy using evidence-based persuasion techniques. Use when crafting responses to tenant objections, defending rent and lease terms, structuring counter-offers, negotiating with difficult parties, overcoming deadlocks, responding to competitive pressure, or formulating calibrated questions that shift burden of proof. Expert in evidence-based anchoring, tactical empathy, uncovering hidden constraints, and value-creating solutions. Key terms include calibrated questions, accusation audit, labeling, tactical empathy, evidence-based anchoring, market comparables, burden of proof, negotiation tactics
22lease-abstraction-specialist
Expert in lease abstraction and critical terms extraction. Use when abstracting lease agreements, extracting key dates, identifying critical provisions, or creating lease summaries. Key terms include lease abstraction, critical dates, rent schedule, operating costs, renewal options, termination rights, default provisions, use clause, assignment clause, Schedule G special provisions
17title-expert
Title searches and registration analysis. Identifies encumbrances (easements, covenants, liens), analyzes marketability impact, validates registration compliance, calculates discount for encumbrances. Use for title review, due diligence, acquisition risk
16environmental-due-diligence-expert
Environmental assessments (Phase I/II ESA), contamination risk evaluation, cleanup cost estimation, regulatory pathway analysis, liability allocation. Use for site acquisitions, contaminated properties, environmental due diligence
16telecom-licensing-expert
Expert in telecommunications licensing agreements that grant telecom carriers (phone, internet, cable companies) access to install equipment in commercial buildings. Use when building owner is negotiating with telecom providers, reviewing carrier access rights, structuring equipment room licenses, analyzing riser and conduit rights, evaluating CRTC (Canadian Radio-television and Telecommunications Commission) compliance requirements, negotiating license fees and revenue sharing, or managing multiple competing carriers in one building. Key terms include telecommunications license, carrier access, equipment installation, riser rights, conduit rights, CRTC compliance, co-location, license vs lease, non-exclusive license, main distribution frame, telecom service provider
15