Deploy trusted agents in minutes

Everything you need to integrate DeepAgent.help into your enterprise stack — from first API call to production HITL workflows.

Quick Start

Install the CLI, authenticate, and deploy your first agent handler to the edge.

npm i -g @deepagent/cli

Agent Configuration

Define reasoning depth, tool permissions, memory scopes, and escalation policies.

Read guide →

Human-in-the-Loop

Configure approval gates, operator routing, and context bundles for seamless handoffs.

Read guide →

API Reference

REST and WebSocket endpoints for agent sessions, audit logs, and knowledge retrieval.

View API →

Quick Start

Initialize a new project and deploy an agent handler to your nearest edge region:

$ deepagent init my-project --template enterprise
$ cd my-project
$ deepagent auth login
$ deepagent deploy --region auto

Your agent handler will be live at https://<project>.agents.deepagent.help within seconds.

Agent Configuration

Agents are defined in deepagent.config.yaml. Key settings include:

  • reasoning.depth — planning steps before tool execution (1–5)
  • tools.allow — whitelist of permitted integrations and APIs
  • memory.scope — session, project, or organization-level context
  • compliance.audit — full reasoning trace logging for compliance

Human-in-the-Loop

Enable HITL gates for high-stakes decisions. When an agent reaches a configured threshold, it pauses and routes context to a human operator via the support terminal or your existing ticketing system.

API Reference

Base URL: https://api.deepagent.help/v1

POST /sessions
GET /sessions/:id/messages
POST /sessions/:id/escalate
GET /audit/logs

Authentication uses Bearer tokens. Generate keys in your enterprise dashboard or via the CLI.