Skip to content

Oz-Networks/mirra-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

158 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mirra SDK

Official SDKs, templates, and tools for building on the Mirra platform.

📦 Packages

TypeScript/JavaScript SDK

Python SDK

Claude Code Bridge (Plugin)

  • Location: packages/mirra-cc-bridge/
  • Install: Clone, build, then claude plugin install . (see README)
  • Control Claude Code sessions from your phone via Mirra

🎨 Templates

Pre-built templates for common use cases:

📚 Documentation

🚀 Quick Start

TypeScript

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!' }]
});

Python

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!'}]
})

🔗 Links

📄 License

MIT License - see individual package LICENSE files for details.

🤝 Contributing

This repository is automatically synced from our main monorepo. For contributions:

  1. Visit https://docs.getmirra.app
  2. Open an issue or discussion
  3. Contact: support@getmirra.app

Note: This repository is automatically synced from our private monorepo. Direct commits here will be overwritten.

About

Build on the Internet of You

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 5