Skip to main content

Documentation Index

Fetch the complete documentation index at: https://hexelstudio.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Hexel Studio is the infrastructure platform for AI agents. It provides compute, identity, and observability as managed services.

Services

ServiceWhat it does
ComputeDeploy agents with permanent endpoints, allocate sandboxes for code execution
RegistryStore and manage agent images with capabilities and metadata
IAMOrganizations, workspaces, service users, API keys, and access control
STSToken exchange for authentication across all services
ObservabilityMetrics, logs, traces, and audit events

Resource Hierarchy

Resources are scoped to organizations, workspaces, and environments.
1

Organization

The top-level account. Contains all workspaces, users, and billing.
2

Workspace

A logical grouping within an organization. Typically one per team or project.
3

Environment

An isolated context within a workspace. Use separate environments for production, staging, and development.
Agents, instances, sandboxes, and all other resources are scoped to an environment.

Authentication

All API requests require a Bearer token from STS. Two ways to obtain one:
MethodUse caseHow
API KeyDevelopment, scriptsPOST /token with X-API-Key header
Client CredentialsProduction servicesPOST /token with client_id and client_secret
Create API keys and OAuth clients in the console under IAM → Service Users.

API Structure

Each service has its own API endpoint:
ServiceEndpoint
Computecompute.hexelstudio.com
Registrycompute.hexelstudio.com/registry/v1
STSsts.hexelstudio.com
IAMapi.hexelstudio.com/iam/v1
Observabilityapi.hexelstudio.com/observability/v1
The SDKs and CLI handle routing automatically.