marcxrand

marcxrand

A thought experiment I’m interested in people’s thoughts on: If we were designing Phoenix specifically for agents rather than humans, how would we approach it?

Some ideas:

Kill the macro DSLs, or make them introspectable.
router.ex with pipe_through, resources, scope are compact for humans but opaque for agents — you can’t grep for the actual URL /users/:id/posts because it’s synthesized at compile time. Instead use explicit route definitions:

route "GET", "/users/:id/posts", UserController, :list_posts,
  pipeline: [:browser, :authenticated]

An agent editing this never has to simulate macro expansion in its head. Same treatment for Ecto.Schema, use MyAppWeb, :controller, and the LiveView lifecycle macros — either eliminate them or require that every macro emit a .expanded.ex sibling file that agents can read.

Make use statements concrete.
use MyAppWeb, :controller is the single biggest source of “where does this function come from?” confusion. Replace it with explicit imports listing every symbol brought into scope.

One behavior per file, predictable paths.
Current Phoenix scatters a single feature across lib/my_app/accounts.ex, lib/my_app/accounts/user.ex, lib/my_app_web/controllers/user_controller.ex, lib/my_app_web/live/user_live.ex, templates, and tests. Agents do much better when a feature is a directory they can load entirely, ie features/users/

LiveView assigns as a declared struct.
Currently assigns are a loose map and you discover what’s in them by reading every assign/3 call in the module. Declaring defassigns as a typed struct up front means an agent editing a template knows exactly what’s available.

Deterministic generators with reversible diffs.
For agents, generators should produce a manifest so a later “regenerate with these options” command produces a clean diff rather than conflicts.

Eliminate the MyApp / MyAppWeb split, or formalize it.
The convention that business logic lives in MyApp and web concerns in MyAppWeb is real but unenforced. Either make it a hard compile-time boundary (web modules cannot be called from business modules, full stop) or drop it. Agents waste tokens figuring out which side of the line they’re on.

Where Next? Top

Trending in Discussions Top

AstonJ
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
2977 94592 917
New
cblavier
Hey there, It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
heathen
Quite interesting article Google brought me. Didn’t find any mentions about it here. What do you think in general? Would you use togethe...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
axelson
Hi there! :wave: @frigidcode and I (but mostly him) have been running an Elixir Book club, we’re almost done with Designing Elixir Syste...
New
budgie
A little off-topic, but I feel like people here have a good head on their shoulders. I used to be quite good at making software. Was luc...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
georgeguimaraes
Just published claude-code-elixir, a plugin marketplace for Claude Code with Elixir support. These are the plugins I’ve been using for my...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews