@mugabuilds@businessbarista Only reason I could think for 2 would be to keep the experiments / scratch pad churn out of the main code base to prevent confusing the coding agents. But I've not found this an issue.
@KingBootoshi@peterpme I have mine check security rules, like applying middleware on server functions, as well as enforcing the dependency import order. I get claude to mine old sessions, look for common corrections / PR feedback, and if possible add as ast-grep checks run before commit.
Two critical claude flags you need to set in ~/.claude/settings.json if you want to build self-improving systems:
{
"showThinkingSummaries": true,
"cleanupPeriodDays": 99999
}
If you don't update this, claude code will delete all sessions older than 30 days, AND not include thinking traces in your session log files. Thinking flag requirement is a recent change.
@irl_danB I first tried making a prose file to automate this https://t.co/eubRkiNlyE then pointed it at my 6 month life plan. It told me that I'd made not a plan but an "avoidance architecture" π
Evening project is building my own fully autonomous remote coding tool.
Work requests go in via cli, finished PR's come out. First task is to self-host the system that manages this.
built on lxc, bun, mongo, ssh, hertzner. full write up to come once its stable.
@DavidKPiano would love to see a https://t.co/FxHQAGMNNz type visual editor that you can connect to claude code, so you can design together in the ui, then when happy print out specs for claude to build with
I got claude code into a mess this week by YOLO'ing a large feature without thinking it through.
To fix: incorporating state machines in to my planning docs to clarify the different transitions involved in a complex UI component.
inspired by xstate js
New claude code skill of the day: `impact-analyser`, used during planning time to answer the question:
"What else will be impacted by this change?"
Uses: ack, ast-grep, ripgrep and in the future maybe ts-morph to do the work, recursively working its way up the dependency tree.