Package your tools, workflows, skills, and sandbox guidance as a reusable overlay image.
Use This Template • What You Customize • Build • Verify
centaur-darkmatter 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-darkmatter 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 darkmatter 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/darkmatter-support/ # sandbox skill loaded with the overlay
├── services/sandbox/SYSTEM_PROMPT.md
├── tools/darkmatter_crm/ # packaged Python CLI tool with sample data
├── tools/darkmatter_go/ # minimal Go CLI tool
├── tools/darkmatter_rust/ # minimal Rust CLI tool
├── workflows/daily_darkmatter_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-darkmatter-infra.
tools/darkmatter_crm is a packaged Python CLI tool with no external credentials.
tools/darkmatter_rust and tools/darkmatter_go are tiny compiled CLI examples that prove
an overlay can ship source-built tools across the supported runtimes.
workflows/daily_darkmatter_brief.py is a minimal recurring workflow that asks an
agent for a daily operating summary.
.agents/skills/darkmatter-support/SKILL.md is a sandbox skill that demonstrates how
darkmatter-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