jeremylongshore / twinmind-webhooks-events
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/twinmind-webhooks-events && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3844" && unzip -o skill.zip -d .claude/skills/twinmind-webhooks-events && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/twinmind-webhooks-events/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Handle TwinMind webhooks and events for real-time meeting notifications. Use when implementing webhook handlers, processing meeting events, or building real-time integrations. Trigger with phrases like "twinmind webhooks", "twinmind events", "twinmind notifications", "meeting webhook handler".
0 views
0 installs
Skill Content
---
name: twinmind-webhooks-events
description: |
Handle TwinMind meeting events including transcription completion, action item extraction, and calendar sync notifications.
Use when implementing webhooks events,
or managing TwinMind meeting AI operations.
Trigger with phrases like "twinmind webhooks events", "twinmind webhooks events".
allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(curl:*), Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
compatible-with: claude-code, codex, openclaw
tags: ['saas', 'twinmind', 'webhooks']
---
# TwinMind Webhooks & Events
## Overview
Handle TwinMind meeting events including transcription completion, action item extraction, and calendar sync notifications. TwinMind uses the Ear-3 speech model (5.26% WER, 3.8% DER) for transcription, with GPT-4, Claude, and Gemini for AI summarization.
## Prerequisites
- TwinMind account (Free, Pro $10/mo, or Enterprise)
- Chrome extension installed and authenticated
- Understanding of TwinMind workflow
## Instructions
### Step 1: Setup
TwinMind operates as a Chrome extension and mobile app with optional API access for Pro/Enterprise users.
```javascript
// TwinMind configuration
const config = {
apiKey: process.env.TWINMIND_API_KEY,
model: "ear-3", // Transcription model
aiModels: ["gpt-4", "claude", "gemini"], // Summary models
};
```
### Step 2: Implementation
```javascript
// TwinMind Webhooks & Events implementation
// Core TwinMind integration
const twinmind = {
transcriptionModel: "ear-3",
languages: ["en", "es", "ko", "ja", "fr"],
features: ["transcription", "summary", "action-items"],
privacyMode: "on-device", // Audio never stored
};
// Check transcription capabilities
async function verify() {
const health = await fetch("https://api.twinmind.com/v1/health");
console.log("TwinMind status:", await health.json());
}
```
### Step 3: Verification
```bash
# Verify TwinMind integration
curl -H "Authorization: Bearer $TWINMIND_API_KEY" https://api.twinmind.com/v1/health | jq .
```
## Key TwinMind Specifications
| Feature | Specification |
|---------|--------------|
| Transcription model | Ear-3 (5.26% WER) |
| Speaker diarization | 3.8% DER |
| Languages | 140+ supported |
| Audio processing | On-device (no recordings stored) |
| AI models | GPT-4, Claude, Gemini (auto-routed) |
| Platforms | Chrome extension, iOS, Android |
| Pricing | Free / Pro $10/mo / Enterprise custom |
## Output
- TwinMind Webhooks & Events configured and verified
- TwinMind integration operational
- Meeting transcription workflow ready
## Error Handling
| Error | Cause | Solution |
|-------|-------|----------|
| Microphone access denied | Browser permissions not granted | Enable in Chrome settings |
| Transcription not starting | Audio source not detected | Check microphone selection |
| API key invalid | Incorrect or expired key | Regenerate in TwinMind dashboard |
| Sync failed | Network interruption | Check connection, retry |
| Calendar disconnect | OAuth token expired | Re-authorize in Settings |
## Resources
- [TwinMind Website](https://twinmind.com)
- [Chrome Extension](https://chromewebstore.google.com/detail/twinmind/agpbjhhcmoanaljagpoheldgjhclepdj)
- [Ear-3 Model](https://www.marktechpost.com/2025/09/11/twinmind-introduces-ear-3-model/)
- [iOS App](https://apps.apple.com/us/app/twinmind-ai-notes-memory/id6504585781)
## Next Steps
See `twinmind-prod-checklist` for production readiness.
## Examples
**Basic**: Configure webhooks events with default TwinMind settings for standard meeting workflows.
**Enterprise**: Customize for high-volume meeting transcription with monitoring and alerting.