Skip to main content

Hologram Developer
Documentation

Build, deploy, and run verifiable AI agents on the Hologram network. Concepts, tutorials, and reference for engineers.

Recommended start

Fork, configure, ship.

Every Hologram agent is one YAML manifest — its Agent Pack — that captures personality, language, LLM, tools, authentication, and access control. Fork hologram-ai-agent-example, point at your LLM, and you have a running, trust-resolvable agent in ten minutes.

Open the quickstart
agent-pack.yaml
metadata:
  id: example-agent
  displayName: Example Agent

llm:
  provider: openai
  model: gpt-5.4-mini

mcp:
  servers:
    - name: context7
      url: https://mcp.context7.com/mcp
      accessMode: admin-controlled

flows:
  authentication:
    enabled: true
    credentialDefinitionId: ${CREDENTIAL_DEFINITION_ID}