brianletort.ai
All issues

Agent Techniques Weekly

Issue 10 · Week 26 of 2026.

/From Chat to Cowork to Build to Automate/Public sources only

Big Read

Background agents crossed from novelty to operations: the hard part is the control loop.

W26's agent-technique signal is Scheduled Agent Operations. Codex Automations, Cursor Automations, and ServiceNow Build Agent all point to the same shift: agents are no longer only interactive copilots waiting in a chat pane. They can wake up on a cron, a PR event, a Slack message, a webhook, or a platform build request; enter a sandbox or governed runtime; use connectors and skills; produce a diff, app, finding, or triage item; and either archive, escalate, or ask for approval. The transferable technique is to design the operating loop before delegating work. Every scheduled agent needs a trigger contract, source-of-truth context, least-privilege tool access, a deterministic verifier, a budget/stop rule, and an escalation lane. Boards should ask whether background agents are inventoried like non-human workers; architects should standardize worktrees, Triage queues, and run logs; operators should start with bounded maintenance jobs before unattended production changes.

Technique of the Week

automate/OpenAI Codex Automations; Cursor Automations; ServiceNow Build Agent

Scheduled Agent Operations

Run agents as bounded recurring or event-triggered jobs with explicit context, sandboxing, verification, budgets, and escalation.

Once agents run without a human prompt, the unit of management changes from conversation quality to operational reliability. The control loop determines whether automation saves time or creates hidden risk and spend.

Trigger

Define the exact schedule or event: cron, PR opened, CI completed, Slack message, webhook, incident, or manual dispatch.

Context

Attach the repo, branch, thread, docs, issue, system-of-record context, and durable rules the agent needs to operate without guessing.

Tools

Grant only the MCP tools, connectors, shell commands, and write permissions required for that workflow.

Verifier

Require tests, schema checks, source trails, screenshots, policy checks, or human approval before output becomes trusted.

Escalation

Route findings to Triage, PR comments, Slack, a draft PR, or an approval queue; archive only when the run finds nothing material.

New Agent Capabilities.

OpenAI / automate

Codex Automations

Recurring background tasks can run on a schedule, report findings to a Triage inbox, and execute in local projects or dedicated worktrees.

The important capability is not just autonomous coding; it is an inspectable recurring run with an output lane. Teams should use this for bounded maintenance before allowing unattended production writes.

Cursor / automate

Automations

Cloud Agents can run in the background on schedules or events from GitHub, GitLab, Slack, webhooks, Linear, PagerDuty, and related systems.

Event-triggered agents turn development and operations events into work queues. The control gap is trigger governance: who can create automations, which tools they can call, and where outputs are reviewed.

ServiceNow / build

Build Agent

Build Agent extends into Cursor, Windsurf, Claude Code, and GitHub Copilot while keeping application deployment under ServiceNow platform context and governance.

This is the enterprise build-agent pattern: let creation happen in many tools, but make deployment inherit roles, policies, approvals, and audit trails from the system of record.

New Skills And Connectors.

skill / Codex

Automation plus skills

Codex Automations documentation explicitly says automations can combine with skills for more complex recurring tasks.

Skills make a scheduled agent maintainable: the schedule defines when to run, while the skill defines the method and guardrails.

connector / Cursor

MCP-backed background agents

Cursor Automations can connect external tools through MCP and trigger from GitHub, GitLab, Slack, Linear, PagerDuty, and webhooks.

MCP makes the scheduled agent useful beyond the repo, but it also expands the blast radius. Permission scope and tool allowlists should be reviewed like production integrations.

skill / ServiceNow

Build Agent SDK skills

ServiceNow describes SDK skills that teach external coding agents how to create platform-native applications.

Domain-specific skills turn a general coding agent into a platform-aware builder. The repeatable pattern is to package metadata, best practices, and deployment constraints as reusable agent context.

Proof Of Value.

Evidence: confirmed

Groq: High-volume inference serving for agentic applications

Groq reports more than five million developers, thousands of AI-native companies, and trillions of tokens processed each week across 13 data centers.

This is a serving-capacity proof point for agentic systems: background agents need fast, cheap inference paths, not only stronger models.

Evidence: vendor_claim

ServiceNow: Governed app generation from external agentic IDEs

Build Agent-generated applications can inherit ServiceNow platform context, deployment approvals, lifecycle governance, and AI Control Tower oversight.

This is the right enterprise pattern even if buyers still need proof in their own environments: external creation surface, governed runtime, and auditable deployment.

Enterprise Readiness.

  • permissioning

    Scheduled agents should use least-privilege tool scopes and branch/worktree isolation, not broad user-equivalent permissions.

  • verification

    Every automation needs a defined verifier: tests, lint, schema checks, evals, source trails, screenshots, or human approval.

  • auditability

    Run logs should capture trigger, prompt, tools, files changed, validation output, and escalation decision.

  • cost

    Recurring agents need budgets, stop conditions, and alerting because failed loops can silently burn tokens and cloud time.

  • human approval

    Production-impacting changes should land as draft PRs, review comments, or approval queue items unless the verifier is deterministic and low risk.

Try This.

Create one low-risk scheduled-agent runbook

  1. Pick a recurring task that already has a deterministic check, such as dependency drift, stale links, lint failures, or weekly content freshness.
  2. Write a loop contract with trigger, repo/branch, allowed tools, verifier command, budget, output destination, and escalation rule.
  3. Run it once manually in an isolated worktree, inspect the diff/log, then decide whether it is safe to schedule.

Expected outcome: You learn whether the task is automation-ready and produce a reviewable template for higher-risk background agents.

Watchlist.

  • July 2026

    Admin controls for background coding agents

    The next enterprise differentiator is who gives admins inventory, budgets, approvals, and run logs across scheduled agents.

  • Q3 2026

    MCP permission failures

    As scheduled agents gain connector access, the first visible failures will likely come from overbroad tool scopes or poisoned persistent memory.

  • Q3 2026

    From draft PR to auto-merge

    Watch whether low-risk agent loops begin moving from 'create review artifact' to 'apply automatically after deterministic checks'.