Package your tools, workflows, skills, and sandbox guidance as a reusable overlay image.
Use This Template • What You Customize • Build • Verify
centaur-acme is a public, forkable template for creating an organization
overlay for Centaur. It is
intentionally small and free of private data. Use it as the starting point for
shipping org-specific capabilities without forking the core platform.
The overlay image is copied into Centaur at runtime:
centaur-acme repo
|
v
overlay image
|
+-- /app/overlay/org in the API
+-- /home/agent/overlay/org in sandbox pods
- Click Use this template in GitHub, or fork the repo if you want to keep a visible upstream relationship.
- Rename ACME examples to your organization or team name.
- Replace the toy CRM tool with one small real integration.
- Update the sandbox prompt and skill to match the behavior your agents should follow.
- Build and publish the overlay image, then point your Centaur Helm values at that image.
Keep credentials out of this repository. Tools should request secrets through
Centaur's secret system instead of committing values or .env files.
The template demonstrates the extension points an organization normally owns:
tools/for API-discovered toolsworkflows/for durable workflows.agents/skills/for sandbox-loaded skillsservices/sandbox/SYSTEM_PROMPT.mdfor organization-specific agent guidance
.
├── .agents/skills/acme-support/ # sandbox skill loaded with the overlay
├── services/sandbox/SYSTEM_PROMPT.md
├── tools/acme_crm/ # toy CRM tool with sample data
├── workflows/daily_acme_brief.py # example durable workflow
├── tests/
└── Dockerfile # copies the overlay to /overlay
docker build -t ghcr.io/<org>/<overlay-repo>:local .The image copies this repository to /overlay. Centaur's Helm chart mounts that
path at /app/overlay/org in the API and /home/agent/overlay/org in sandbox
pods.
overlay:
image:
repository: ghcr.io/<org>/<overlay-repo>
tag: sha-0000000
pullPolicy: IfNotPresent
sourcePath: /overlayFor the full GitOps example, pair this repo with
centaur-acme-infra.
tools/acme_crm is a toy CRM tool with no external credentials. It gives agents
something organization-specific to discover and call.
workflows/daily_acme_brief.py is a minimal recurring workflow that asks an
agent for a daily operating summary.
.agents/skills/acme-support/SKILL.md is a sandbox skill that demonstrates how
ACME-specific playbooks are packaged.
services/sandbox/SYSTEM_PROMPT.md is appended to the base sandbox prompt when
the overlay is mounted.
From the API pod:
echo "$TOOL_DIRS"
echo "$WORKFLOW_DIRS"
ls -la /app/overlay/orgFrom a sandbox:
echo "$CENTAUR_OVERLAY_DIR"
ls "$CENTAUR_OVERLAY_DIR"
ls "$CENTAUR_OVERLAY_DIR/.agents/skills"uv run pytest