From twinmind-pack
Configures TwinMind Enterprise RBAC with on-premise deployment, custom AI models, SSO integration like Okta, and team-wide transcript sharing for meeting AI ops.
How this skill is triggered — by the user, by Claude, or both
Slash command
/twinmind-pack:twinmind-enterprise-rbacThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Configure TwinMind Enterprise with on-premise deployment, custom AI models, SSO integration, and team-wide transcript sharing. TwinMind uses the Ear-3 speech model (5.26% WER, 3.8% DER) for transcription, with GPT-4, Claude, and Gemini for AI summarization.
Configure TwinMind Enterprise with on-premise deployment, custom AI models, SSO integration, and team-wide transcript sharing. 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 Enterprise RBAC 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 enterprise rbac with default TwinMind settings for standard meeting workflows.
Enterprise: Deploy on-premise with custom AI models and SSO for team-wide meeting intelligence.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin twinmind-packConfigures TwinMind meeting AI across dev, staging, and prod environments with separate accounts, API keys, and enterprise features like team SSO.
Implements RBAC for Deepgram enterprise setups: maps roles to API scopes, provisions/rotates keys via SDK and Management API, adds Express middleware.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.