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.Config File
Create your hooks config 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:- Loads
~/.enconvo/hooks.json. - Falls back to
~/.config/enconvo/hooks.jsononly if the new file is absent. - Finds entries inside the top-level
hooksobject whose key matches the event name. - Applies the optional
matcherregex. - Skips entries where
enabledisfalse. - Runs every configured hook concurrently.
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:~/.enconvo/hooks.json:
Troubleshooting
My hook did not run
My hook did not run
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.How do I test a script manually?
How do I test a script manually?
Pipe a sample payload into the script:
Do hooks block EnConvo?
Do hooks block EnConvo?
No. Hooks are fire-and-forget. If a hook fails or times out, EnConvo logs the
failure and continues processing the original event.
Should commands use absolute paths?
Should commands use absolute paths?
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