Quickstart
Install the package:
pip install scitex-agent-container
The fastest path is to copy a pattern template from
``examples/agents/`` (``hello-agent``, ``minimal-agent``,
``full-agent``, ``proxy-agent``). See :doc:`templates` for details.
Create an agent definition directory with a
spec.yamlmanifest plus an optionalto_home/sibling (CLAUDE.md / .mcp.json / …):
# ~/.scitex/agent-container/agents/my-agent/spec.yaml
apiVersion: scitex-agent-container/v3
kind: Agent
metadata:
labels:
role: worker
spec:
runtime: apptainer
apptainer:
image: ~/.scitex/agent-container/containers/sac-base.sif
claude:
model: sonnet
flags:
- --dangerously-skip-permissions
session: continue-or-new
health:
enabled: true
interval: 60
method: sdk-alive
restart:
policy: on-failure
max_retries: 3
Start and inspect the agent:
sac agents start my-agent
sac agents list my-agent --json
sac agents tail my-agent
sac agents recall my-agent
(Optional) Wire Claude Code hooks so
list --jsoncan surface recent tool calls, prompts, and sub-agent launches. See Status and Hook Integration for the full.claude/settings.local.jsonsnippet.