EchoNet.ing
PHASE B / CAPABILITY ATLAS

Automation & Durability

Choose delegation, cron, webhooks, or managed processes according to trigger, lifetime, and state.

Triggernow, schedule, event
Statepersistent or ephemeral
Runneragent or script
Retrybounded policy
Deliverynamed destination
Evidenceobservable outcome
OPERATING MODEL

Automation & Durability

Automation is not one mechanism. Delegation is immediate and parent-bound. Cron is durable scheduled state. Webhooks react to external events. Managed background processes suit bounded long-running commands. Each needs explicit inputs, idempotency, timeout, retry, ownership, delivery, and failure alerts.

Choose the trigger

Immediate request, time schedule, external event, or long-running process.

Choose state ownership

Persist continuity only when the job needs deduplication or incremental work.

Make execution idempotent

Retries must not duplicate messages, writes, or external actions.

Bound resources

Set timeout, repeat count, model/tool scope, and cost policy.

Observe completion

Deliver success evidence or a failure alert; silence must be intentional.

PRACTICAL REFERENCE

Mechanism comparison

MechanismTriggerDurabilityBest use
DelegationImmediate parent requestParent-boundParallel bounded subtask
CronSchedule or intervalDurable job recordRecurring monitor or briefing
WebhookExternal eventSubscription plus handlerEvent-driven response
Background processImmediate commandTracked process lifetimeLong build, test, or server
FAILURE MODES

What breaks—and how to recover.

Duplicate side effects

Use idempotency keys, dedupe state, and explicit retry limits.

Silent dead job

Monitor scheduler/process state and send failure alerts.

Model or provider drift

Pin unattended reasoning jobs or use tested script-only jobs.

Copyable implementation prompt

Design bounded automation for [TASK]. Choose trigger mechanism, inputs, state, idempotency, timeout, retry, continuity, model/tool scope, cost ceiling, delivery, failure alert, and proof.
Public boundary

Use placeholders for paths, accounts, endpoints, identities, and credentials. Never publish secret values, private records, or a live control surface.

Verification gate

  • Mechanism matches lifetime
  • Retries are idempotent
  • State and continuity are explicit
  • Failure cannot remain silent
  • Output delivery is verified