Examples

Slack agent

Configure the adapter:

SLACK_BOT_TOKEN=xoxb-...
SLACK_SIGNING_SECRET=...
SLACK_BOT_USER_ID=U...
SLACK_TEAM_ID=T...
SLACK_AGENT_KEY=support

Then set reply behavior and write for chat:

# axl-config/agents/support/agent.toml
[channel]
reply_mode = "thread_isolated"
response_format = [
  "Lead with the answer",
  "Keep replies short enough to read on a phone",
  "Return long output as an artifact rather than pasting it",
]

thread_isolated gives each thread its own agent session. Without it, everyone in a busy channel shares one history and the agent answers one person using another person's context.

Next

On this page