Skip to main content

Overview

Hooks let you run a shell command or send an HTTP request when something happens inside EnConvo, such as an agent starting, completing, failing, or using a tool. They are configured with a JSON file, so you can add notifications, logs, local automation, or integrations without building an extension.
Hooks are fire-and-forget. They run in the background and do not block EnConvo.

Config File

Create your hooks config at:
EnConvo also reads the legacy file at ~/.config/enconvo/hooks.json when the new file does not exist. If both files exist, ~/.enconvo/hooks.json wins. The file is checked again whenever an event fires, so you can edit hooks while EnConvo is running. No restart is required.

Manage Hooks in Settings

Open Settings → Hooks to inspect hooks from ~/.enconvo/hooks.json. The settings panel groups entries by event, lets you toggle an entry on or off, and can open the JSON file for editing. Toggling writes enabled: false or enabled: true on that hook entry without changing the command or webhook definition.

Quick Start

1

Create the hooks folder

2

Create ~/.enconvo/hooks.json

3

Trigger an agent

Start any agent or chat command. When its status changes, EnConvo runs the configured command and appends a line to /tmp/enconvo-hooks.log.

How Hooks Work

When an event fires, EnConvo:
  1. Loads ~/.enconvo/hooks.json.
  2. Falls back to ~/.config/enconvo/hooks.json only if the new file is absent.
  3. Finds entries inside the top-level hooks object whose key matches the event name.
  4. Applies the optional matcher regex.
  5. Skips entries where enabled is false.
  6. Runs every configured hook concurrently.
Hook event names follow the Codex lifecycle set: SessionStart, UserPromptSubmit, PreToolUse, PermissionRequest, PostToolUse, and Stop. The old EnConvo event names and old flat JSON shape are still readable for existing installs, but new writes use the wrapped Codex-style format.

Configuration Reference

Command Hook

A command hook runs a shell command. EnConvo writes the event payload to the command’s stdin as JSON.

HTTP Hook

An HTTP hook sends the event payload as the JSON request body.

Event Payload

Command hooks receive this JSON on stdin. HTTP hooks receive the same JSON as the request body.

Available Events

Legacy EnConvo names such as run_status_changed and agent_tool_step_changed still work, so existing hook files do not need to be migrated immediately.

Recipes

macOS Notification on Agent Failure

Log Agent Status Changes

Log Agent Tool Calls

Send to Slack

Custom Script

Create a script that reads the event payload from stdin:
Reference it from ~/.enconvo/hooks.json:
Make the script executable:

Troubleshooting

Confirm that ~/.enconvo/hooks.json is valid JSON, the top-level key matches the event name, and the command works when run manually. If you still have ~/.config/enconvo/hooks.json, remember that it is ignored when the new file exists.
Pipe a sample payload into the script:
No. Hooks are fire-and-forget. If a hook fails or times out, EnConvo logs the failure and continues processing the original event.
Prefer absolute paths for scripts and binaries. Shell ~ expansion works when the command is executed through a shell, but absolute paths are easier to debug.

Agents

Learn about EnConvo agents and custom bots

Extension API Reference

Build extensions that emit or listen to events