> For the complete documentation index, see [llms.txt](https://docs.hexabot.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hexabot.ai/developer-guide.md).

# Developer Guide

- [Workflow YAML Syntax](https://docs.hexabot.ai/developer-guide/workflow-yaml-syntax.md): Understand Hexabot workflow YAML structure, execution rules, and authoring patterns for tasks, flow, and outputs.
- [Develop Custom Actions](https://docs.hexabot.ai/developer-guide/develop-custom-actions.md): Create reusable workflow steps with Zod schemas, metadata, and an execute function.
- [Packaging Custom Actions](https://docs.hexabot.ai/developer-guide/develop-custom-actions/packaging-custom-actions.md): Custom actions are the preferred way to add reusable workflow capabilities to Hexabot v3. Use an action package when the same integration or business action must be installed in more than one Hexabot
- [Testing Custom Actions](https://docs.hexabot.ai/developer-guide/develop-custom-actions/testing-custom-actions.md): Unit tests give custom Hexabot actions a stable contract before the action is published or reused across projects. A good action test suite should cover the workflow-facing contract, the execution beh
- [Develop Custom Channels](https://docs.hexabot.ai/developer-guide/develop-custom-channels.md): Build custom Hexabot channels that parse webhooks, map subscribers, and send platform-specific messages.
- [CLI Command Reference](https://docs.hexabot.ai/developer-guide/cli-command-reference.md): Install, run, and manage Hexabot projects with the official CLI.
- [SMTP Configuration](https://docs.hexabot.ai/developer-guide/smtp-configuration.md): Configure SMTP delivery for transactional emails such as account confirmation and password reset.
- [Setup Node.js with NVM](https://docs.hexabot.ai/developer-guide/setup-node.js-with-nvm.md): Install and manage Node.js 24.17.0 or later with NVM for local Hexabot development.
- [Setting Up Docker](https://docs.hexabot.ai/developer-guide/setting-up-docker.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hexabot.ai/developer-guide.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
