Official Mirra plugins for Claude Code
npx claudepluginhub oz-networks/mirra-sdkBridge Claude Code to Mirra Messenger - control coding sessions from your phone via text and voice
Official SDKs, templates, and tools for building on the Mirra platform.
packages/mirra-sdk-js/@mirra-messenger/sdknpm install @mirra-messenger/sdkpackages/mirra-sdk-python/mirra-sdkpip install mirra-sdkpackages/mirra-cc-bridge/claude plugin install . (see README)Pre-built templates for common use cases:
templates/skills/.claude/skills/ to teach Claude Code how to use that Mirra integrationcp -r skills/mirra-google-gmail ~/.claude/skills/import { MirraSDK } from '@mirra-messenger/sdk';
const mirra = new MirraSDK({ apiKey: 'your_api_key' });
// Create a memory
const memory = await mirra.memory.create({
content: 'Important information',
type: 'note'
});
// Chat with AI
const response = await mirra.ai.chat({
messages: [{ role: 'user', content: 'Hello!' }]
});
from mirra import MirraSDK
mirra = MirraSDK(api_key='your_api_key')
# Create a memory
memory = mirra.memory.create({
'content': 'Important information',
'type': 'note'
})
# Chat with AI
response = mirra.ai.chat({
'messages': [{'role': 'user', 'content': 'Hello!'}]
})
MIT License - see individual package LICENSE files for details.
This repository is automatically synced from our main monorepo. For contributions:
Note: This repository is automatically synced from our private monorepo. Direct commits here will be overwritten.
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations