← Back to News

Field Notes: AI — October 2025

By Del

The month in one paragraph

October 2025 was the surface-migration month. Coding agents stopped looking like terminal tricks and started becoming delegated work systems: launched from the terminal, continued in browser/mobile/cloud surfaces, attached to repositories, and reviewed as artifacts. The important change was not only that Claude Code and similar systems became easier to access. It was that the developer's job started shifting from live prompter to operator: dispatching work, monitoring runs, inspecting diffs, and deciding when to approve or abort.

Actual field update

  • Surface shift: agentic coding moved beyond a single CLI loop into browser, mobile, dashboard, and cloud-managed execution surfaces.
  • Delegation shape: tasks increasingly looked like goal → isolated run → artifact → review, not prompt → answer.
  • Claude Code signal: the web/browser direction made coding agents easier to treat as managed async work instead of local terminal sessions only.
  • Parallel task pressure: once agents can run away from the active terminal, users naturally expect multiple queued or parallel tasks.

Robustness check

Strong claim: coding agents were moving from autocomplete/chat into task execution systems.

Moderate claim: Claude Code's web direction was the cleanest symbol of that shift.

Weak claim to avoid: "the terminal is dead." The terminal remained valuable because it is close to files, commands, tests, and developer muscle memory.

Agentic design pattern change

The core pattern became:

dispatch
→ run in controlled environment
→ observe tool calls / shell / edits
→ produce diff or artifact
→ human review

This was the beginning of the "simple loop, heavy harness" pattern: the model loop may be simple, but the surrounding runtime carries permissioning, state, replay, isolation, and review.

Fallout

  • Developers needed run-level visibility, not just chat history.
  • Products needed task cards, transcripts, and resumable sessions.
  • Prompting started to look less like conversation and more like job specification.
  • Tool-call traces became review material.

What builders should copy

  • Treat every agent run as a durable job.
  • Assign a run id, step ids, tool-call ids, and artifact ids.
  • Keep terminal affordances, but do not trap the user inside one terminal session.
  • Make "resume," "review," and "abort" first-class actions.

Resource sources

Operator math (TeX)

Voperator=Nreviewable-artifactsHactive-prompting+HreviewV_{\text{operator}} = \frac{N_{\text{reviewable-artifacts}}} {H_{\text{active-prompting}} + H_{\text{review}}}

Comments (0)

No comments yet. Be the first!

You must be signed in to comment. Contribute to comment.