Claude-code-plugins twinmind-reference-architecture

install
source · Clone the upstream repo
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/saas-packs/twinmind-pack/skills/twinmind-reference-architecture" ~/.claude/skills/jeremylongshore-claude-code-plugins-twinmind-reference-architecture && rm -rf "$T"
manifest: plugins/saas-packs/twinmind-pack/skills/twinmind-reference-architecture/SKILL.md
source content

TwinMind Reference Architecture

Overview

Production architecture for meeting AI systems using TwinMind: transcription pipeline, memory vault, action item workflow, and calendar integration. 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.

// 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

// TwinMind Reference Architecture 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

# Verify TwinMind integration
curl -H "Authorization: Bearer $TWINMIND_API_KEY" https://api.twinmind.com/v1/health | jq .

Key TwinMind Specifications

FeatureSpecification
Transcription modelEar-3 (5.26% WER)
Speaker diarization3.8% DER
Languages140+ supported
Audio processingOn-device (no recordings stored)
AI modelsGPT-4, Claude, Gemini (auto-routed)
PlatformsChrome extension, iOS, Android
PricingFree / Pro $10/mo / Enterprise custom

Output

  • TwinMind Reference Architecture configured and verified
  • TwinMind integration operational
  • Meeting transcription workflow ready

Error Handling

ErrorCauseSolution
Microphone access deniedBrowser permissions not grantedEnable in Chrome settings
Transcription not startingAudio source not detectedCheck microphone selection
API key invalidIncorrect or expired keyRegenerate in TwinMind dashboard
Sync failedNetwork interruptionCheck connection, retry
Calendar disconnectOAuth token expiredRe-authorize in Settings

Resources

Next Steps

See

twinmind-prod-checklist
for production readiness.

Examples

Basic: Configure reference architecture with default TwinMind settings for standard meeting workflows.

Enterprise: Customize for high-volume meeting transcription with monitoring and alerting.