Anthony Franco

3.4K posts

Anthony Franco banner
Anthony Franco

Anthony Franco

@anthonyfranco

Founder. Builder. AI implementer.

Denver, CO Katılım Eylül 2008
749 Takip Edilen1.2K Takipçiler
Anthony Franco
Anthony Franco@anthonyfranco·
@itsolelehmann I’ve done something similar by defining “elegance” and then asking Claude if what it built meets our elegance standard “Minimally viable” imho is too prescriptive - you want maximally effective with minimal instruction
English
0
0
0
17
Ole Lehmann
Ole Lehmann@itsolelehmann·
one of the highest leverage ideas in AI right now: "minimum viable prompting" the reason: your Claude prompts/skills are probably way too detailed, and its making your outputs worse boris cherny, the guy who created claude code, talks about this all the time. his own setup is surprisingly minimal way less than you'd expect from the person who literally built the tool his rule: before adding any instruction, ask "could claude figure this out on its own?" if yes, don't add it most people do the opposite. something goes wrong so they add more instructions. so the prompt gets longer. then claude follows each one less reliably. so they add more. it compounds in the wrong direction the fix: write less. be specific about the few things that actually matter and trust the model on the rest here's a prompt that identifies and cuts all the unnecessary dead weight for you. open cowork or claude code and paste this: —— i want to trim my setup down to the minimum viable instructions. go through everything: claude .md, every skill in my skills folder, every file in my context folder, everything you can find. for each instruction you find, simulate deleting it. would my output on a typical task be noticeably different without it? if no, flag it. tell me what it says, where it is, and why it's dead weight. —— also run this before you save any new instructions you'll probably lose half the words and get noticeably better results
Ole Lehmann tweet media
English
28
8
102
7K
Anthony Franco
Anthony Franco@anthonyfranco·
@ErickSky @Scobleizer I’ve tried many variations of this - if your repo is well organized and documented, adding this type of rag to your codebase will degrade performance, not enhance it. The llm still needs to read the files it is touching - Give your code structure and docs to traverse
English
0
0
0
436
Erick
Erick@ErickSky·
🚨 El secreto sucio de Claude Code, Cursor, Windsurf y TODOS los AI coding agents: Cada nueva sesión empiezan completamente en blanco. Olvidan tus convenciones, decisiones, arquitectura y lo que se rompió ayer… y tú terminas pegando walls of text gigantes que se desactualizan y te queman miles de tokens. MEX de @daksh_jaitly lo soluciona de una vez. Es un CLI + scaffold open source que crea un skill graph vivo de tu codebase (con ROUTER.md inteligente + archivos conectados por YAML), detecta drift automáticamente, se corrige solo y mantiene la memoria perfecta del agente. Menos gasto de tokens. Más consistencia. Cero dolor de cabeza. REPOOO👇
Español
12
18
255
26.1K
Adi Singh
Adi Singh@adisingh·
Who’s building OpenClaw for enterprises?? Been following this space closely. Think there’s a big winner that will be born here.
English
184
3
201
39.5K
Anthony Franco
Anthony Franco@anthonyfranco·
@burkov Ask Claude “how do you feel about this plan?” The ask “what would make you more confident” Then decide what to do
English
0
0
1
108
BURKOV
BURKOV@burkov·
When Claude shows me a three-page-long plan for a fix, I have two options: 1. Read it, confirm that it's all correct, and have it implemented wrong anyway. 2. Not read it, confirm it's all correct, and have it implemented wrong anyway. I prefer to choose option 2, then test, and then tell Claude that it implemented it wrong. How about you?
English
93
7
170
24.6K
andrei saioc
andrei saioc@asaio87·
How are vibecoders fixing bugs ? Claude code seems to break a feature when you want to fix another. Vibe coding is a failed movement. Don’t say is a skill issue, it’s presumed I’m a non coder. Damn, it’s really made to sell tokens.
English
61
3
49
5.9K
Anthony Franco
Anthony Franco@anthonyfranco·
I just unlocked the Claude code max usage issues The default is to use opus at 1m context window Opus past 300k tokens is not useful (drifts) so there’s no reason to use it Change to turn off 1m and go with 200k, let it auto compact if needed Better results PLUS dramatic decrease in Claude’s usage of limits
English
1
0
2
93
Anthony Franco
Anthony Franco@anthonyfranco·
@altryne Yep - me too - imho Anthropic did not “double usage for off peak hours” they halved usage for peak hours
English
0
0
0
14
Santiago
Santiago@svpino·
Yes, these agents are absolutely horrible at writing decent-quality code. But any time you say that out loud, there's a swarm of AI-apologists who've never built anything that scream at you, "skill issue!" You might not care about the code, and that's alright, but you can't gaslight anyone who cares about good code.
Santiago tweet media
English
217
120
1.8K
127K
Anthony Franco
Anthony Franco@anthonyfranco·
Maths not mathing - even if this were true, you’re saying vibe coders are 5X more productive than a regular developer
Santiago@svpino

Every large company will eventually ban vibe-coding. Vibe-coding is now generating as much technical debt as 10 regular developers in half the time. Vibe-coding is awesome for a first draft, but you can't expect to push AI slop to production and not destroy your software over time. Producing code is no longer a bottleneck. Testing that code, debugging it, monitoring it in production, and fixing it when it breaks is where everyone is spending their time. We've 10x'd the speed of writing code, but we are still in the Stone Age with everything that happens after the code is written. Here is a very cool tool tackling this: You can build "AI Production Engineers" using PlayerZero and make them work for you. These are agents that do this: • Simulate how your code will work in production • Diagnose issues when they happen • Learn from every incident so it doesn't happen again This is pretty awesome! These agents simulate code behavior against real production data. They use actual customer behavior, historical incidents, and edge cases without writing a single test script. When something breaks, the agent traces the issue to the exact line of code and PR, generates the fix, and routes it to the right engineer. And every bug these agents solve serves as training data to improve the system. Here is a link to check them out: playerzero.ai/?utm_campaign=… Thanks to the Player Zero team for partnering with me on this post.

English
0
0
0
33
Anthony Franco
Anthony Franco@anthonyfranco·
@Suryanshti777 I went down this rabbit hole for days - graph and / or vector searches really can not touch a well structured repo This will work great for vibe coders though
English
0
0
0
327
Suryansh Tiwari
Suryansh Tiwari@Suryanshti777·
🤯Holy shit....Someone just built the missing layer for AI coding. Most AI agents don’t actually understand your codebase. They grep files, open random folders, and guess architecture. This repo fixes that. It indexes your entire codebase and gives AI real semantic understanding. Not just files — everything: • dependencies • architecture • APIs • infra configs • database schemas • cross-file relationships Then I saw the benchmark… Tested on the VS Code codebase (2.45M lines): → 61.5% less context used → 84% fewer tool calls → 37x faster than grep-based agents That’s not incremental. That’s a completely different workflow. Instead of AI searching blindly, it actually knows your codebase. Zero config. Fully local. Works with Claude Code, Cursor, MCP, Codex. This might become standard for AI dev tooling. Repo in comments ↓
Suryansh Tiwari tweet media
English
26
30
284
34.2K
Anthony Franco
Anthony Franco@anthonyfranco·
@matthewmillerai Claude Code cli opus 4.6 high thinking for code, architecture, and planning (but NOT using the default Claude plan- it sucks) Codex 5.4 for code reviews ONLY (will catch bugs and issues Claude misses)
English
0
0
0
67
Anthony Franco
Anthony Franco@anthonyfranco·
@levelsio Yes - it’s a setting in Claude code cli - just paste the message in Claude code cli and ask it to ipdate its own setting - you’ll have to restart It took me twice but it’ll get it right
English
0
0
0
348
@levelsio
@levelsio@levelsio·
Any way to skip this question when I run Claude Code in / root?
@levelsio tweet media
English
73
7
207
65.9K
Anthony Franco
Anthony Franco@anthonyfranco·
@clairevo I agree - these features feel totally disconnected from one another - and if you choose to rely on them and build your processes around them you’re signing up for a mountain of tech debt
English
0
0
0
395
Anthony Franco
Anthony Franco@anthonyfranco·
@WizLikeWizard Use opus or sonnet and it’ll change your perspective Also - install Claude code on the same machine - point it to openclaw - tell it yo understand it and write a Claude.md file in it for future use, and now you have an openclaw assistant
English
0
0
2
51
Wiz 👨‍🚀
Wiz 👨‍🚀@WizLikeWizard·
Have been using OpenClaw for ~a month and it kinda sucks? I spend more time battling it to get basic crons fired reliably, remember things, and not repeat itself. Am I doing it wrong or are we just still very early on all of this?
English
314
4
373
59.1K
Palani — oss/acc
Palani — oss/acc@Palanikannan_M·
pov: you tried cmux and realized tmux was right there the whole time all i needed was "is my agent done?" and fast switching. not a new app. runs inside ghostty. same tmux shortcuts. freakishly fast
English
40
19
561
80.3K
Nick Huber
Nick Huber@sweatystartup·
People can’t handle the truth. It isn’t sustainable. Switching costs are virtually nothing. The bubble will pop when the VC subsidies stop.
Nick Huber tweet media
English
120
12
253
32.4K
Anthony Franco
Anthony Franco@anthonyfranco·
Every time I try and use something other than opus 4.6 - I’m severely let down
English
0
0
0
24
Anthony Franco
Anthony Franco@anthonyfranco·
@sweatystartup Taking a picture of this post to remind nick in 2 years about it Won’t age well
English
1
0
0
21
Nick Huber
Nick Huber@sweatystartup·
Ford shutting down Electric Vehicle production. Meta shutting down Virtual Reality investment. Only a matter of time until companies pull way back on Artificial Intelligence.
English
515
174
2.3K
186.7K
Anthony Franco
Anthony Franco@anthonyfranco·
@rohanpaul_ai this is click-bait Calculators harm our ability to do long-form division.... you could say the same about that disruptive technological innovation as well...
English
2
0
20
823
Rohan Paul
Rohan Paul@rohanpaul_ai·
Anthropic's own study proves Vibe-Coding and AI coding assistants harm skill building. "AI use impairs conceptual understanding, code reading, and debugging abilities, without delivering significant efficiency gains on average" Developers learning 1 new Python library scored 17% lower on tests when using AI. Delegating code generation to AI stops you from actually understanding the software. Using AI did not make the programmers statistically faster at completing tasks. Participants wasted time writing prompts instead of actually coding. Scores crashed below 40% when developers let AI write everything. Developers who only asked AI for simple concepts scored above 65%. Managers should not pressure engineers to use AI for endless productivity. Forcing top speed means workers lose the ability to debug systems later. ---- Paper Link – arxiv. org/abs/2601.20245 Paper Title: "How AI Impacts Skill Formation"
Rohan Paul tweet media
English
115
187
1.2K
102.3K
Anthony Franco
Anthony Franco@anthonyfranco·
Anthropic: Double usage for the next 2 weeks! Claude: {Error 500 - Service is Down}
English
0
0
1
130