View as markdown

hub.yml reference

A configuration has environments and triggers. It may also include top-level project deployment metadata for paseo hub deploy. Execution fields belong to each trigger's steps.

project: my-project

environments:
  - name: development
    kind: daemon
    daemon: my-macbook
    cwd: /Users/you/code/project

triggers:
  - name: request
    on: manual.run
    max_runtime: 2h
    filters:
      from_users: [automation]
    steps:
      - id: work
        environment: development
        max_runtime: 90m
        idle_timeout: 10m
        agent:
          provider: codex
          mode: full-access
        prompt:
          - text: ${{ paseo.prompt }}

project is an optional bare project slug. The deploy CLI uses it to choose the target project when -p, --project is absent. The flag takes precedence over this metadata without rewriting the YAML. project is not available to triggers, expressions, or agents.

Environments

FieldRequiredNotes
nameyesLowercase identifier referenced by a step.
kindyesdaemon, fly, or docker in the authored schema; workflow steps must resolve to a daemon environment.
daemondaemon onlyFriendly daemon slug, resolved to its immutable ID when the revision activates.
cwddaemon onlyAbsolute path on the daemon.
imagefly/dockerImage name.
worktreenobranch-off, checkout-branch, or checkout-pr target.

The worktree object is part of the environment. Its fields are exact authored names: newBranch and optional base for branch-off, branch for checkout-branch, and positive integer prNumber for checkout-pr.

Triggers

FieldRequiredNotes
nameyesLowercase identifier, unique in the configuration.
onyesprovider.event, such as slack.mention or manual.run.
max_runtimeyesPositive duration for the complete trigger run, up to 24h.
filtersno in schemaProvider filters; externally sourced triggers still require a non-empty from_users allowlist.
inputsnoTyped leading key=value invocation headers.
valuesnoDerived expressions.
stepsyesOne or more ordered steps.

Inputs

Each input has:

inputs:
  repo:
    type: string
    required: false
    choices: [project, paseo]
  agent:
    type: string
    default: codex
    choices: [codex, claude]

type is string, number, or boolean. required, default, and choices are optional. required and default cannot be combined. Defaults and choices must match the declared type; a default must be one of the choices.

Inputs may be referenced as ${{ paseo.inputs.name }}. A dynamic authority-bearing field such as a provider, model, mode, or environment requires finite choices at activation. A prompt cannot supply authority.

Values

Values bind expressions under their own namespace:

values:
  selected_repo: ${{ paseo.inputs.repo ?? steps.classify.outputs.repo }}

The grammar supports paths, JSON literals, parentheses, !, ==, !=, &&, ||, and ??. It does not support function calls, JavaScript, arithmetic, mutation, or implicit string coercion. Referenced steps must exist and value dependencies cannot cycle.

Steps

FieldRequiredNotes
idyesLowercase step identifier, unique within the trigger.
environmentyesEnvironment name or a finite input expression resolving to one.
max_runtimeyesPositive step hard limit, up to 24h.
idle_timeoutyesPositive idle limit, no longer than the step hard limit.
agentyesprovider, optional model, mode, thinkingOptionId, and provider-native options.
promptyesNon-empty list of text and GitHub-only include blocks.
ifnoExpression deciding whether this ordered step runs.
outputno{ schema: <JSON Schema> } for structured finish_execution.
allow_outputsnoRegistered output capabilities such as slack.reply or discord.reply, each with optional max and required.
auto_archivenoArchives the step's agent when it ends.

Prompt blocks are objects, not a scalar prompt:

prompt:
  - text: Request: ${{ paseo.prompt }}
  - include: developer.md

Use ${{ paseo.prompt }}, ${{ paseo.inputs.* }}, ${{ steps.*.outputs.* }}, and ${{ values.* }} in prompts, conditions, and agent selection fields. Provider event payloads are not part of this workflow expression namespace; provider adapters put the normalized request into the prompt and preserve the raw event as evidence.

agent.options carries JSON-safe options using the selected provider's native names and nesting. Paseo validates them with that provider's strict schema before starting the session. See Hub security for the trust boundary and copyable provider examples.

Output capabilities

allow_outputs separates permission from obligation. max limits how many times a capability may be emitted and defaults to 1. Set required: true when the step must emit that capability at least once before it can finish successfully:

allow_outputs:
  - type: discord.reply
    max: 1
    required: true

Hub counts an actual capability emission; ordinary assistant text does not satisfy a required output. A required declaration must resolve to a registered, available Hub capability for that execution context, or dispatch rejects the step with an actionable configuration error. If delivery fails, the attempt is retryable; if the agent tries to finish first, Hub keeps the execution recoverable and names the concrete output tool before retrying finish_execution. A required output must have an effective max of at least 1, or activation rejects the configuration. Omitting required preserves optional-output behavior and does not change the agent's permission mode. GitHub-triggered agents reply with their scoped GH_TOKEN (for example, through gh issue comment) rather than a Hub github.reply tool.

Prompt partials

include paths are relative to .paseo/partials/. For GitHub configuration, Hub reads them at the exact configuration commit and stores the resolved content and SHA-256 hash in the immutable revision. For paseo hub deploy, the CLI reads the referenced files from the local project root and sends them in the optional partials bundle; the bundle path omits the .paseo/partials/ prefix. Missing files, unsafe paths, symlinks, submodules, directories, duplicate or unexpected bundle entries, and nested includes are rejected. Manual configurations cannot use repository partials.

Deadlines

The trigger's max_runtime is the hard limit for the complete workflow run. Each step also has max_runtime and idle_timeout:

max_runtime: 2h
steps:
  - id: classify
    max_runtime: 2m
    idle_timeout: 30s
  - id: implement
    max_runtime: 90m
    idle_timeout: 10m

The effective step hard and idle deadlines are capped by the remaining trigger deadline. Meaningful daemon activity refreshes idle time, but cannot extend a hard deadline. Hub persists absolute deadlines, so a restart or deployment does not reset them. A step timeout fails the run; a trigger timeout stops later steps and interrupts a live agent.

Provider invocation

The provider removes its mention or marker before Hub parses leading declared input tokens. Slack and Discord place the inputs immediately after the bot mention. GitHub places them after the configured marker. Manual runs send the same string as the API input:

@Paseo repo=project investigate the failed sync

The first token that is not a declared input begins the prompt. The clean prompt is available as ${{ paseo.prompt }}. The raw provider message remains separate Activity evidence. See provider triggers for provider-specific marker and filter behavior.

Removed fields

Do not put execution fields directly on a trigger. environment, agent, prompt, timeout, idle_timeout, auto_archive, and allow_outputs are step fields now. The duration field is max_runtime; timeout is not an alias.

Next: Hub workflows for routing patterns and copyable configurations.