agentsclimarketplace

Twinmind security basics

Skill jeremylongshore/claude-code-plugins-plus-skills/skills/.curated/twinmind-security-basics

425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill twinmind-security-basics

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

'Security best practices for TwinMind: on-device audio processing, encrypted cloud backups, microphone permissions, and data privacy controls.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.7 KB, as published. Nobody here has run it

TwinMind Security Basics

Overview

Security best practices for TwinMind: on-device audio processing, encrypted cloud backups, microphone permissions, and data privacy controls. 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 Security Basics 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 Security Basics 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 security basics with default TwinMind settings for standard meeting workflows.

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

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.