
An action in Chief: its schedule, email outcome, prompt, and run history.
Anatomy of an action
Every action has aname and a prompt, plus exactly one of:
- a
schedule— run on a cron-like clock (e.g. every day at 07:00), or - a
trigger— run when new content lands in the project.
scope (which knowledge it may consult) and an email outcome
(who receives the result). Create an action and it starts enabled.
Create a scheduled action
A schedule runs the prompt on a clock. The schedule is four fields —hour, weekday,
month_day, and timezone — where * matches every value.
schedule.weekday is * (every day) or a lowercase day name (monday..sunday). Omit
--weekday on the CLI to match "weekday": "*". Cron-style ranges such as 1-5 are not
supported.
chief actions create schedules the action and prints its id, schedule, and status.
201):
Create a trigger action
A trigger runs the prompt when content lands instead of on a clock.kind is new (the run is
scoped to just the added asset) or all (the run uses the action’s full scope). A trigger is
mutually exclusive with a schedule — send one or the other.
Scope
scope bounds the knowledge a run may consult. For actions, only asset_ids, label_ids,
concept_ids, and view_ids apply. Tenancy always comes from X-Project-Id — scope narrows
within the project, it doesn’t cross projects. Leave scope off to let the run use the whole
project.
The email outcome
Add anemail outcome and Chief sends the run’s result when it completes. to is a list of
recipients; subject is optional. Set include_date_in_subject to append the completion
timestamp (in the schedule’s timezone) to the subject line.

The digest a scheduled action emails — the run's summary, delivered to the inbox.
Enable, disable, and update
A new action starts enabled. Pause one without deleting it, then resume it later:List actions
GET /v1/actions returns the project’s actions, newest first, in the standard list envelope
(data, first_id, last_id, has_more). The per-project action count is bounded, so
has_more is always false today.

chief actions list shows each automation, its schedule, and status.