Coding Agents

Integrate Hydracept from public discovery surfaces—the published docs, OpenAPI, and agent-context endpoints. Do not rely on this monorepo or private operator docs.

Hydracept gives game tools and backends one stable API for AI generation.

Agent context


GET /v1/agent-context

Returns product positioning, available capabilities, ordered onboarding steps, managed smoke flags, SDK names, configuration environment variables, and public path hints. Prefer this document over guessing install flows.

Well-known manifests

URLPurpose
https://hydracept.com/.well-known/hydracept.jsonProduct manifest (API, capabilities, pricing flags)
https://hydracept.com/.well-known/agent-context.jsonAgent-oriented discovery document
https://hydracept.com/llms.txtCompact guidance for LLM crawlers

Public OpenAPI

Canonical customer contract:

https://hydracept.com/openapi/hydracept-v1.json

Authenticate requests with Authorization: Bearer <HYDRACEPT_API_KEY> as declared in the OpenAPI document.

Consumer boundary

For products that use Hydracept for generation, follow the Consumer Boundary. Run python -m hydracept consumer-check --strict in product CI.


python -m hydracept consumer-check --strict

MCP

Hydracept exposes an MCP server for tool-using agents. Follow the live MCP setup published with the public release.

Clean-room path (public surface only)

  1. Read GET /v1/agent-context (includes ordered onboarding steps)
  2. Human activates at https://hydracept.com/start — copy the agent setup block
  3. python -m hydracept quickstart --token <key> --json --smoke (agents) or loginconfiguredoctorsmoke (humans)
  4. Connect BYOK for sustained inference
  5. For image production (Sheet & Slice, transparency, variants), read Image production
  6. For Unity 6 Editor integration, read Unity integration
  7. Submit and poll a durable job per Jobs using the public OpenAPI
  8. Confirm error / rate-limit handling from Errors and Rate limits

If the user asks for game image features

User intentHydracept surface
Transparent sprite / icon PNGimage.generate.v1 + requestTransparentOutput: true
Sprite sheet / contact sheet → individual framessheet.slice, sheet.rows, sheet.columns, optional sheet.animation
Unity 6 Editor import with provenanceUnity integrationhydracept integrations install unity
Multiple icon takes to pick fromvariantCount 2–4
Automated art pipeline / CIPOST /v1/capabilities/image.generate.v1/jobs + artifact download

Do not invent Studio-only endpoints. Prefer the public capability job contract above.