orc Master is a chat-facing runtime that sits between a user and a local backend Codex agent process.
The backend agent is OpenAI Codex.
It provides two transport variants:
TelegramSlack
- provides a chat control plane for directories and Codex agents;
- accepts user messages from Telegram or Slack;
- starts and manages a local backend agent command;
- forwards user requests to that backend;
- streams back:
- reasoning statuses;
- final replies;
- approval requests;
- regex-based auto-approval where configured;
- keeps runtime state on disk so the runtime can be restarted cleanly.
The runtime uses two agent roles:
- master agent
- starts and stops worker agents;
- manages directory bindings and session context;
- maps a specific directory to a specific channel;
- worker agent
- has no predefined task prompt;
- behaves like a regular Codex coding agent.
The master runtime itself:
- does not open public listening ports;
- does not require inbound webhooks;
- does not depend on external services other than Telegram or Slack for transport.
Recommended setup:
- use private chats, private channels
- Set up the bot and launch the runtime.
- Send any message in the chat, channel, or DM where the bot is present.
- In a free-form dialog, connect a directory to that chat, channel, or DM and start either a new or an existing Codex session for it.
- Continue working with that session as usual.
The same control-plane commands are available in Telegram and Slack:
/help- show the built-in command help
/where- show what this chat, channel, or DM is currently connected to
/status- show the current bot state and current Codex session details
/stop- stop the current Codex session while keeping the chat, channel, or DM connected
/start- start the current Codex session again
/reset- disconnect the current chat, channel, or DM and clear its local state
Slack note:
- Slack slash commands are not implemented in the runtime yet.
- Send the same commands as ordinary messages.
- If Slack tries to treat
/...as a slash command, prefix it with a leading space. - See
SETUP.slack.md.
