By Oz-Networks
Control Claude Code sessions remotely from your phone via text and voice through Mirra Messenger, with spoken output of responses and notifications.
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.
Matches all tools
Hooks run on every tool call, not just specific ones
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub oz-networks/mirra-sdk --plugin mirra-cc-bridgePermanent coding companion for Claude Code — survives any update. MCP-based terminal pet with ASCII art, stats, reactions, and personality.
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Persistent file-based planning for AI coding agents. Crash-proof markdown plans (task_plan.md, findings.md, progress.md) that survive context loss and /clear, with an opt-in completion gate and multi-agent shared state. Manus-style. Works with Claude Code, Codex CLI, Cursor, Kiro, OpenCode and 60+ agents via the SKILL.md standard. Includes Arabic, German, Spanish, and Chinese (Simplified and Traditional).