zorn
As I’ve leaned into AI code generation on LocalCents, the volume I ship has climbed, and my worry shifted from any single change to the long-term drift toward the median.
My response was to wire up more automated quality checks than I’ve ever run: compile/format hygiene, Credo (with checks from Jump, Oeditus, a bit of ExSlop, plus two project-local ones), Dialyzer, Boundary, Sobelow and the dependency audits, doc and test gates, all bundled into a single mix precommit.
Everything in the post links to how it’s actually wired in the repo, so you can steal whatever you’re missing. Curious what guardrails others here run that I’ve left off my list.
Trending in Blog Posts
At the heart of every Phoenix application is the often “invisible” HTTP server layer.
For over a decade Cowboy has served the community ...
New
Hey everyone! :waving_hand:
I’ve published Part 7 of the Building Distributed Systems in Elixir series, where we build core distributed ...
New
So, instead of wasting my afternoon arguing with anonymous handles on X, I turned to my trusty, soulless assistant and said: “Listen, ple...
New
New article: Elixir Project Structure — From mix new to a Growing Codebase
I’ve published a new article in my Elixir learning series on d...
New
An educational side project in Elixir, Phoenix, and Tauri. I share what I learned while wiring Automerge into the BEAM, including how I s...
New
The way Phoenix is set up adding a CDN sub-domain for serving static assets, without worrying about the main dynamic content, is incredib...
New
Wrote about how to safely run a globally unique process in an Elixir cluster, and a scary story from the past!
Learn about :global for r...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 6- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ChaseGilliam
If you’re using dialyxir to run dialyzer, I’d suggest checking out my library assay | Hex which uses incremental PLTs and will run check from a warm cache much faster. We use it precisely to prevent AI drift for cases the new type system still doesn’t catch. You can see a working GHA CI example here bandera/.github/workflows/ci.yml at main · Ch4s3/bandera · GitHub.
Sorry to promote my own thing here, but it has save my team a ton of CI hours.
zorn
Sounds cool. I’ll check it out.
ChaseGilliam
Let me know if you run into any issues. Note that the PLT file name and path will be different and you can’t reuse a classic PLT, the iPLT references files differently.
abrookewood
Hi Mike,
Just finished reading that and wanted to thank you for posting. It’s really comprehensive (way more than I currently do) and the inclusion of the GitHub Actions was much appreciated.
zorn
Thanks for the kind words. Glad you enjoyed it and shared your appreciation. Blogging can feel like screaming into the void sometimes.
ChaseGilliam
Just sometimes?