Moltis
Architecture

Tool Policy

Tool policies control which tools are available during a session. Before these name-based layers run, Moltis applies the registry’s host-owned audience ceiling. Guest, shared-room, and unknown-topology channel turns receive no tools. Webhooks receive no tools by default and can explicitly opt into tools registered for public use. Policies may narrow but never widen these ceilings.

Within the audience ceiling, policies use a layered system where each layer can restrict or widen access, and deny always wins — once a tool is denied at any layer, no later layer can re-allow it.

Layers

Six layers are evaluated in order. Later layers can replace the allow list, but deny entries accumulate across all of them.

#LayerConfig pathApplies to
1Global[tools.policy]All sessions
2Per-provider[providers.<name>.policy]Requests routed through that provider
3Per-agent preset[agents.presets.<id>.tools]Sub-agents spawned with that preset
4Per-channel chat type[channels.<type>.<account>.tools.groups.<chat_type>]Channel sessions matching that chat type
5Per-sender...groups.<chat_type>.by_sender.<sender_id>Messages from that sender in that chat type
6Sandbox[tools.exec.sandbox.tools_policy]Commands running inside a sandbox container

Web UI sessions see layers 1-3 (no channel context), plus layer 6 if sandboxed. Channel sessions can see all 6 layers.

Merge Semantics

Each layer produces an allow list and a deny list. When merging a higher-priority layer on top of a lower one:

  • Deny accumulates. Every deny entry from every layer is collected. If any layer denies a tool, it stays denied.
  • Allow replaces. A non-empty allow list from a later layer replaces the previous allow list entirely. An empty allow list is a no-op (keeps the previous allow list).
  • Empty allow = permit all. When the effective allow list is empty, everything not denied is allowed.

Glob Patterns

Both allow and deny entries support glob-style patterns:

  • "*" — matches every tool name
  • "browser*" — matches any tool whose name starts with browser
  • "exec" — matches only the exact tool name exec

Profiles

The global layer and per-sender overrides support a profile field that expands to a predefined allow list before the explicit allow/deny entries are applied.

ProfileAllow list
"minimal"exec
"coding"exec, browser, memory
"full"* (everything)

When a profile is set, its allow list is applied first, then the explicit allow/deny from the same layer are merged on top (deny accumulates, non-empty allow replaces).

Layer 1 — Global

The base policy for all sessions. Set in moltis.toml under [tools.policy]:

[tools.policy]
allow = []           # empty = permit all tools not denied
deny = ["browser"]   # deny browser in every session
# profile = "full"   # optional named profile

Layer 2 — Per-Provider

Each provider entry can carry its own policy. When a request is routed through that provider, the policy is merged on top of the global layer.

[providers.openai]
# ... api_key, models, etc.
policy.deny = ["exec"]

This denies exec whenever OpenAI is the active provider, regardless of what the global layer allows. Other providers are unaffected.

Layer 3 — Per-Agent Preset

Agent presets (used by spawn_agent) can restrict their sub-agent’s tools.

[agents.presets.researcher]
model = "anthropic/claude-haiku-3-5-20241022"
tools.allow = ["read_file", "glob", "grep", "web_search", "web_fetch"]
tools.deny  = ["exec", "write_file"]

When the researcher preset is active, only the five listed tools are allowed, and exec/write_file are explicitly denied. See Agent Presets for the full preset reference.

Note: Preset tool policies apply only to sub-agents spawned via spawn_agent. They do not affect the main agent session. Use the global [tools.policy] for the main session.

Layer 4 — Per-Channel Chat Type

Channel accounts can restrict tools by chat type (private, group, channel, etc.). Guest, shared-room, and unknown-topology turns already have a non-widenable deny-all policy. This layer is primarily useful for narrowing the tools available to an operator in a proven direct chat.

[channels.telegram.my-bot.tools.groups.private]
deny = ["exec", "browser"]

In this example, exec and browser are denied in Telegram direct chats handled by the my-bot account. Web UI sessions are unaffected.

Layer 5 — Per-Sender

Within a channel chat type, individual senders can receive name-policy overrides. Overrides cannot cross the deny-all ceiling applied to guests, shared rooms, and unknown chat kinds.

[channels.telegram.my-bot.tools.groups.private]
deny = ["exec", "browser"]

[channels.telegram.my-bot.tools.groups.private.by_sender."123456"]
allow = ["*"]

Sender 123456 gets allow = ["*"], which replaces the previous allow list. However, because deny always accumulates, the exec and browser denials from the chat-type layer still apply. The sender must also be a configured operator in a proven direct chat; a sender override alone never grants tools.

Layer 6 — Sandbox

When a session runs inside a sandbox container, this layer applies on top of all other layers. It lets you restrict tools for sandboxed execution without affecting non-sandboxed sessions.

[tools.exec.sandbox.tools_policy]
allow = ["exec"]         # only exec inside sandbox
deny = ["browser"]       # never allow browser in sandbox

This layer is skipped entirely when the session is not sandboxed.

Examples

Deny exec for a specific provider

[providers.openai]
policy.deny = ["exec"]

When using OpenAI, the agent cannot run shell commands. All other providers retain their normal tool access.

Restrict operator DMs on Telegram

[channels.telegram.my-bot.tools.groups.private]
deny = ["exec", "browser*"]

Operators in proven direct chats cannot use exec or any tool starting with browser. Guest and shared-room turns already receive no tools.

Narrow one operator in direct chats

[channels.telegram.my-bot.tools.groups.private]
allow = ["web_search", "web_fetch"]

[channels.telegram.my-bot.tools.groups.private.by_sender."123456"]
allow = ["web_search"]

Operator 123456 can only search in a proven direct chat. Other operators in direct chats can search and fetch. This configuration grants nothing to guests or shared-room participants.

Agent preset with limited tools

[agents.presets.researcher]
tools.allow = ["read_file", "glob", "grep"]
tools.deny  = ["exec"]

The researcher sub-agent can only read files and search. Even if a higher layer allows exec, it is denied here and the denial carries through.

Use a profile for the global policy

[tools.policy]
profile = "coding"
deny = ["web_fetch"]

The coding profile expands to allow = ["exec", "browser", "memory"]. Then web_fetch is denied. The effective policy allows exec, browser, and memory, and denies web_fetch. All other tools are not in the allow list and are therefore blocked.

Apply a profile to an operator DM

[channels.telegram.my-bot.tools.groups.private]
allow = ["web_search"]

[channels.telegram.my-bot.tools.groups.private.by_sender."123456"]
profile = "full"

Operator 123456 gets allow = ["*"] from the full profile, replacing the chat-type allow list in a proven direct chat. The same sender still receives no tools as a guest or in a shared or unknown chat.

Debugging

Enable debug logging to see which layers are applied at runtime:

policy: applied global profile 'coding'
policy: applied global layer
policy: applied provider layer    provider=openai
policy: applied agent preset layer agent_id=researcher
policy: applied group layer       channel=telegram account_id=my-bot group_id=group
policy: applied sender layer      channel=telegram group_id=group sender_id=123456
policy: applied sandbox layer

Each line indicates a layer was non-empty and merged into the effective policy. Missing lines mean that layer had no configuration or the runtime context did not match (e.g., no channel context for a web UI session).