{
  "markdown": "<p align=\"center\">\n  <img src=\"https://img.shields.io/badge/claude--code-plugin-8A2BE2\" alt=\"Claude Code Plugin\" />\n  <img src=\"https://img.shields.io/badge/skills-4-blue\" alt=\"4 Skills\" />\n  <img src=\"https://img.shields.io/badge/agents-2-green\" alt=\"2 Agents\" />\n  <img src=\"https://img.shields.io/badge/license-MIT-green\" alt=\"MIT License\" />\n</p>\n\n# Memoriant Ops Bot Skill\n\nA Claude Code plugin for managing remote AI agents via MOPS (Memoriant Ops Bot System). Control Claude Code, OpenAI Codex CLI, and Google Gemini CLI from any device through Telegram or Matrix. Multi-provider, multi-session, background tasks, and agent health monitoring.\n\n**No servers. No Docker. Just install and use.**\n\n## Install\n\n```bash\n/install NathanMaine/memoriant-ops-bot-skill\n```\n\n## Cross-Platform Support\n\n### Claude Code (Primary)\n```bash\n/install NathanMaine/memoriant-ops-bot-skill\n```\n\n### OpenAI Codex CLI\n```bash\ngit clone https://github.com/NathanMaine/memoriant-ops-bot-skill.git ~/.codex/skills/ops-bot\ncodex --enable skills\n```\n\n### Gemini CLI\n```bash\ngemini extensions install https://github.com/NathanMaine/memoriant-ops-bot-skill.git --consent\n```\n\n## Skills\n\n| Skill | Command | What It Does |\n|-------|---------|-------------|\n| **Manage Agents** | `/manage-agents` | List, add, remove, configure sub-agents and provider assignments |\n| **Send Remote Command** | `/send-remote-command` | Route prompts to any agent — sync, session, or background mode |\n| **Check Status** | `/check-status` | Daemon health, agent status, task queue, sessions, diagnostics |\n| **Manage Sessions** | `/manage-sessions` | Create, resume, suspend, and close named conversation sessions |\n\n## Agents\n\n| Agent | Best Model | Specialty |\n|-------|-----------|-----------|\n| **Ops Coordinator** | Sonnet 4.6 | Agent routing, registry management, health monitoring |\n| **Task Dispatcher** | Sonnet 4.6 | Background task queuing, tracking, and result delivery |\n\n## Quick Start\n\n```bash\n# Check what's running\n/check-status\n\n# List and manage your agents\n/manage-agents\n\n# Send a command to the default agent\n/send-remote-command\n\n# Start a named session for a specific project\n/manage-sessions\n```\n\n## Multi-Provider Support\n\n| Provider | CLI | Install |\n|----------|-----|---------|\n| Claude Code | `claude` | `npm install -g @anthropic-ai/claude-code` |\n| OpenAI Codex | `codex` | `npm install -g @openai/codex` |\n| Google Gemini | `gemini` | `npm install -g @google/gemini-cli` |\n\n## Status Dashboard\n\n```\nMOPS Daemon: RUNNING (PID 42819)\n\nAgent Health:\n  main           claude   RUNNING   ✓\n  codex-agent    codex    IDLE      ✓\n  research       gemini   STOPPED   ✓\n\nBackground Tasks:\n  RUNNING (1): task-1711369921  main  \"Research competitors...\"\n  QUEUED  (2): task-1711370001, task-1711370042\n```\n\n## Session Modes\n\n| Mode | Use Case |\n|------|----------|\n| Sync | Interactive tasks — response streamed in real time |\n| Session | Ongoing project — named context that persists across calls |\n| Background | Long-running research or generation — results delivered when done |\n\n## MOPS Architecture\n\nThis plugin manages the local MOPS workspace at `~/.mops/`. MOPS itself wraps official CLI binaries as subprocesses — no API key spoofing, no SDK patching. Your subscriptions, your machine, your data.\n\nSee [NathanMaine/memoriant-ops-bot](https://github.com/NathanMaine/memoriant-ops-bot) for the full MOPS system.\n\n## Use Cases\n\n- Control your DGX Spark or remote GPU rig from your phone\n- Run parallel AI agents on different providers for the same project\n- Delegate long research tasks while continuing other work\n- Maintain isolated conversation contexts for different projects\n- Monitor agent health across a multi-machine setup\n\n## Using the Actual Tool\n\nThe full source code for MOPS (the working Telegram/Matrix bot) from [NathanMaine/memoriant-ops-bot](https://github.com/NathanMaine/memoriant-ops-bot) is bundled in `src/`. The bot is a production Python package (v0.15.1) published to PyPI.\n\n### Install\n\nThe easiest install path is via pipx (recommended):\n\n```bash\npipx install memoriant-ops-bot\n```\n\nOr install from the bundled source:\n\n```bash\ncd src\npip install -e .\n```\n\n### Set Up a Telegram Bot\n\n1. Message [@BotFather](https://t.me/BotFather) on Telegram\n2. Run `/newbot` and follow the prompts\n3. Copy the bot token BotFather gives you\n\n### Configure MOPS\n\n```bash\ncp src/config.example.json ~/.mops/config.json\n# Edit ~/.mops/config.json and add your Telegram bot token\n```\n\nOr just run `mops` and the onboarding wizard will walk you through it interactively.\n\n### Run\n\n```bash\nmops\n```\n\nThe onboarding wizard configures:\n- Transport: Telegram (token) or Matrix (homeserver + credentials)\n- Timezone\n- Optional Docker sandbox for code execution\n- Background service installation (launchd on macOS, systemd on Linux)\n\n### Install an AI CLI to Control\n\n```bash\n# Pick one or more providers:\nnpm install -g @anthropic-ai/claude-code && claude auth     # Claude Code\nnpm install -g @openai/codex && codex auth                  # OpenAI Codex\nnpm install -g @google/gemini-cli                           # Google Gemini\n```\n\n### What the Bot Does\n\nOnce running, MOPS bridges your Telegram/Matrix messages to whichever AI CLI you have installed. You send a message from your phone — MOPS passes it to `claude`, `codex`, or `gemini` as a subprocess and streams the response back. No API spoofing. No SDK patches. Your subscriptions, your machine, your data.\n\n- **This Claude Code skill** teaches the AI how to manage MOPS agents programmatically\n- **The bot in `src/`** is the actual daemon that runs on your machine and handles real Telegram messages\n\nWorks with Claude Code, OpenAI Codex CLI, and Google Gemini CLI.\n\n### Tests\n\n```bash\ncd src\npip install -e \".[test]\"\npytest\n```\n\n### Full Documentation\n\nSee the [memoriant-ops-bot repo](https://github.com/NathanMaine/memoriant-ops-bot) for the complete setup guide, architecture docs, Dockerfile, Matrix setup, and more.\n\n## Source Repository\n\nBuilt from [NathanMaine/memoriant-ops-bot](https://github.com/NathanMaine/memoriant-ops-bot).\n\n## License\n\nMIT — see [LICENSE](LICENSE) for details.\n",
  "bytes": 6145,
  "sha": "1541574c3e791eacaba50865bb7d593d653bb8c4ced24d88c1098f53edce7325",
  "repo_slug": "nathanmaine/memoriant-ops-bot-skill",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_nathanmaine_memoriant_ops_bot_skill_memo_536f8da2/readme"
}