name: team-ops
description: "Audit team performance using the Elon Algorithm (identify A/B/C players) and extract action items from meeting transcripts. Use when asked to "audit team performance", "review my team", "extract meeting actions", "meeting notes to tasks", "team efficiency audit", or "identify underperformers"."
description_zh: "ๅข้็ปฉๆๅฎก่ฎกไธไผ่ฎฎ่กๅจ้กนๆๅ๏ผ่ฏๅซ A/B/C ๅๅทฅ"
description_en: "Team performance audit and meeting action extraction, identify A/B/C players"
version: 1.0.0
homepage: https://github.com/ericosiu/ai-marketing-skills
AI Team Ops
Preamble (runs on skill start)
python3 telemetry/version_check.py 2>/dev/null || true
python3 telemetry/telemetry_init.py 2>/dev/null || true
Privacy: This skill logs usage locally to ~/.ai-marketing-skills/analytics/. Remote telemetry is opt-in only. No code, file paths, or repo content is ever collected. See telemetry/README.md.
AI-powered team performance analysis and meeting intelligence: ruthless performance audits using the "Elon Algorithm" + automatic extraction of action items, decisions, and follow-ups from meeting transcripts.
When to Use
Use this skill when:
- Evaluating team performance against OKRs/KPIs with a structured framework
- Stack ranking team members to identify A/B/C players
- Finding redundant roles, bottlenecks, and automation opportunities in your org
- Extracting action items and decisions from meeting transcripts
- Processing batch meeting notes into structured follow-up lists
- Pushing meeting action items to CRM (HubSpot) as tasks
Tools
Team Performance
| Script | Purpose | Key Command |
|---|
team_performance_audit.py | Elon Algorithm: 5-step team audit + stack rank + scorecards | python3 team_performance_audit.py --input team_data.json --output report.md |
Meeting Intelligence
| Script | Purpose | Key Command |
|---|
meeting_action_extractor.py | Extract decisions, actions, follow-ups from transcripts | python3 meeting_action_extractor.py --transcript meeting.txt --format markdown |
Configuration
All scripts use environment variables for LLM API access. Copy .env.example to .env and fill in your values.
Required Environment Variables
ANTHROPIC_API_KEY โ Anthropic API key (Claude for analysis)
OPENAI_API_KEY โ OpenAI API key (alternative LLM provider)
Optional Environment Variables
HUBSPOT_API_KEY โ HubSpot private app token (for pushing meeting action items as tasks)
LLM_PROVIDER โ anthropic (default) or openai
LLM_MODEL โ Model name override (default: claude-sonnet-4-20250514 or gpt-4o)
Data Flow
Role Descriptions + OKRs + Output Data (CSV/JSON)
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ team_performance_audit.py โ
โ 5-Step Elon Algorithm: โ
โ 1. Question requirements โ
โ 2. Delete redundancies โ
โ 3. Simplify workflows โ
โ 4. Accelerate bottlenecks โ
โ 5. Automate what's possible โ
โ โ
โ + Score: velocity, quality, โ
โ independence, initiative โ
โ + Stack rank: A/B/C players โ
โ + Actions: promote/coach/exit โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
Executive Summary + Individual Scorecards + Org Recommendations
Meeting Transcripts (text files or stdin)
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ meeting_action_extractor.py โ
โ Extract: โ
โ โข Decisions (who + context) โ
โ โข Action items (owner + โ
โ deadline + priority) โ
โ โข Open questions โ
โ โข Key insights / quotes โ
โ โข Follow-up meetings needed โ
โ โข Implicit commitments โ
โ + Confidence scores โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
Structured JSON / Markdown + Optional CRM Push
Dependencies
- Python 3.9+
anthropic or openai (for LLM-powered analysis)
requests (for optional HubSpot integration)