From twinmind-pack
Migrate from other meeting AI tools (Otter. Use when implementing migration deep dive, or managing TwinMind meeting AI operations. Trigger with phrases like "twinmind migration deep dive", "twinmind migration deep dive".
npx claudepluginhub flight505/skill-forge --plugin twinmind-packThis skill is limited to using the following tools:
Migrate from other meeting AI tools (Otter.ai, Fireflies, Grain) to TwinMind with transcript import and workflow adaptation. TwinMind uses the Ear-3 speech model (5.26% WER, 3.8% DER) for transcription, with GPT-4, Claude, and Gemini for AI summarization.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Migrate from other meeting AI tools (Otter.ai, Fireflies, Grain) to TwinMind with transcript import and workflow adaptation. TwinMind uses the Ear-3 speech model (5.26% WER, 3.8% DER) for transcription, with GPT-4, Claude, and Gemini for AI summarization.
TwinMind Enterprise supports on-premise deployment, custom AI models, and unlimited context tokens.
// TwinMind configuration
const config = {
apiKey: process.env.TWINMIND_API_KEY,
model: "ear-3", // Transcription model
aiModels: ["gpt-4", "claude", "gemini"], // Summary models
};
// TwinMind Migration Deep Dive implementation
// Enterprise tier features
const twinmind = {
ssoProvider: "okta",
teamSharing: true,
customModels: ["gpt-4-turbo"],
onPremise: true,
};
// Configure team access
async function configureTeam() {
const team = await twinmind.createTeam({ name: "Engineering", members: ["user1", "user2"] });
console.log("Team configured:", team.id);
}
# Verify TwinMind enterprise setup
curl -H "Authorization: Bearer $TWINMIND_API_KEY" https://api.twinmind.com/v1/team/members | jq .
| 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 |
| 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 |
See twinmind-observability for monitoring setup.
Basic: Configure migration deep dive with default TwinMind settings for standard meeting workflows.
Enterprise: Deploy on-premise with custom AI models and SSO for team-wide meeting intelligence.