paperclip.ai/v1 AgentPack schema — a YAML file that describes a collection of agents, pipelines, and settings.
Minimal example
metadata fields
| Field | Required | Description |
|---|---|---|
name | ✓ | Unique identifier (kebab-case) |
namespace | Grouping namespace | |
version | ✓ | Semver string |
description | ✓ | One-line description |
tags | Array of category tags |
spec.agents fields
| Field | Required | Description |
|---|---|---|
ref | ✓ | Agent reference — clawhq://name or relative path |
role | ✓ | Role in the pack. Use primary / support for general packs. For multi-agent coordination packs, use worker, observer, or operator — see Agent Teams. |
permissions | Filesystem permission overrides. Only meaningful for observer and operator roles. | |
permissions.read | Glob list of paths the agent may read. ["*"] = all worktrees. | |
permissions.write | Glob list of paths the agent may write. [] = read-only (correct for observers). | |
permissions.exec | Allowlist of shell commands the agent may invoke (e.g. ["git log", "git diff"]). | |
priority | Execution order (lower = higher priority) | |
config.model | Model override for this agent | |
config.tools | Tool list | |
config.temperature | 0.0–1.0 | |
config.instructions | System prompt |
spec.pipelines fields
| Field | Description |
|---|---|
name | Pipeline identifier |
trigger | cron "expr", command "name", or event "name" |
steps[].agent | Agent name to invoke |
steps[].action | Instruction passed to the agent |
steps[].hitl | true to require human approval before proceeding |
steps[].deliver_to | Channel or user to send output to |