Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

455 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mirra SDK

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

📦 Packages

TypeScript/JavaScript SDK

Python SDK

🎨 Templates

Pre-built templates for common use cases:

🔌 Claude Code Plugin

The team work-ledger, pages teammates can comment on, and every Mirra integration as a skill — namespaced as /mirra:ledger, /mirra:google-gmail, and so on.

claude plugin marketplace add Oz-Networks/mirra-sdk
claude plugin install mirra@mirra
  • Location: plugins/mirra/
  • Updates arrive on their own — Claude Code refreshes the marketplace at session start
  • Upgrading from the old loose skills? curl -fsSL https://raw.githubusercontent.com/Oz-Networks/mirra-sdk/main/skills/install.sh | bash

📚 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

6 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages