7/24/2026 at 9:31:34 AM
Gotta be honest, almost every "how to use AI" resource seems pointless to me. I'm either going to ask the AI how to do it, or if it's about using the AI then we can just bake it into the harness or wait for Anthropic/OpenAI to do it for me because they're always trivial.All of these resources on agentic workflows, managing agent memory, harness engineering, etc. appear to just be theatre to me.
by mindwok
7/24/2026 at 10:22:30 AM
Remember in 2023 when people thought "prompt engineering" would be the new software engineering and invested tons of time into learning CoT, ReAct, thread-of-thoughts, etc?Those were mostly obviated by reasoning models and harness updates by 2024.
It seems pointless to invest energy into the latest/greatest AI technique or framework when they're going to either be absorbed or replaced on a 3 month cycle.
by cloakandswagger
7/24/2026 at 11:08:55 AM
Isn't it clear that some people are better at working with/prompting LLMs than other people? Or is the idea that what you write to them and how you use them doesn't matter, it's all up to the model/harness? To me this seems clear, so then clearly this is a skill, which typically is called "prompt engineering". Specifically CoT or the other things you mention wasn't referred to as "prompt engineering" as far as I know, that skill is more about how you communicate with the LLMs and how you use them, rather than what specific processes/workflows/technologies you use.by embedding-shape
7/24/2026 at 12:31:09 PM
I actually think that good prompting MOSTLY comes from good writing skills in general. Being able to more clearly state things to an agent, knowing what pieces of context are entirely unnecessary and which are important, having a larger vocabulary helps too.Of course, there are other areas that can improve model output (Direction rather than open-ended assistance requests, using keywords + plugins that help, the "your output should include: " style prompting).
A few of us run almost the same exact setup at my shop (Base Claude Code w/ SuperPowers + a context repository) and the models are somewhat unhelpful to some, and give meaningful output to others. The only correlation I notice is that their prompts are no-good. Not from a meta "prompt" engineering standpoint, but from a general English 101 standpoint.
"dudde no i wanted the function to return 3 things. not like that. do it again"
VS something like
"Modify the "renderThreeVars()" function signature to accept another variable called "z" and add it to the return statement at line 64."
Obvious exaggeration, but you get the point.
by NichoPaolucci
7/24/2026 at 12:55:22 PM
Why not open-ended assistance requests?I ask it all the time about whether X is feasible, how we can get started on Y, and to investigate issue Z.
It is working great for me in a >100k LOC project.
Perhaps this works less well with weaker models. I suspect the people who say Qwen 3.6 27B is working well, are using prompts like "modify the renderThreeVars() function in rendering.py".
by user43928
7/24/2026 at 6:13:50 PM
The point is that you can properly describe what X, Y, and Z are.The irony to me is that a lot of what I'd tell people about this is exactly what I would have told them about writing Stack Overflow questions.
by zahlman
7/24/2026 at 8:12:48 PM
I hardly need to properly describe it.For example, if I tell it that I want my app translated, it can plan for me what the recommended options are in my framework, what languages I should target for my app, and come up with a skill for a repeatable workflow.
by user43928
7/24/2026 at 3:56:26 PM
Is Superpowers any good? My coworkers who've used it seem to think that its main purpose is to consume a lot of tokens.by Centigonal
7/24/2026 at 4:47:23 PM
I like the fact that it ends up being a lifecycle. I know it can have different entry points based on what you ask, and which skill you trigger first, but it inherently is chaining together skills. There also seems to be logic built into it such that if the ask is small, but you've still triggered the skill with "brainstorm", it will make judgements like "want me to skip phase X and go straight to implementation?"I've noticed among my coworkers that we all have different amounts of trust we're willing to give the agent. That seems to manifest into some people only asking questions about the existing code, but never writing anything new with it. Others are willing to do limited targeted changes with the agent, but are unwilling to do things like let it make commits, or connect MCP servers, or really do anything that isnt fully understood by the human before setting the agent loose. Then I find myself, who has dove headlong into it all. I have skills that use MCP servers to check for pull requests, and give me summaries to give me more context for code reviews. I update Jira tickets in batches of 50+. I develop complete features exclusively through prompting the agent to do everything. I know I still have the responsibility to understand it at the same level as if I wrote it my self, and defend it and debug it.
I can easily see that superpowers would be wasted on most of my coworkers, simply because the benefits compound with the complexity of my ask. My coworkers aren't willing to hand off enough control to receive the benefits of superpowers.
by flyingcircus3
7/25/2026 at 3:00:47 AM
I am in the completely same boat as you and completely agree that you need to “give into it” more to get the most out of superpowers. I gain so much confidence out of the actual process and all of the adversarial reviews, re-reviews, refinement, etc.by halfmatthalfcat
7/24/2026 at 6:37:51 PM
Honestly, within the last few days I've gone back to a mostly vanilla installation of Claude with a handful of directives in AGENTS.md. Depending on what I'm working on, I don't feel I need the extra plugins or a context repository. (It DOES feel at times like it blows through tokens for no reason).Been working on some things that require more targeted, smaller scale changes and the base models do perfectly fine when given good instructions.
Superpowers and Compound Engineering are the two that I hear about around our team, both seem "fine" if you're into the fully agentic engineering "big change" future technology stuff.
by NichoPaolucci
7/24/2026 at 6:16:45 PM
> Obvious exaggeration, but you get the point.From some very quick tests, I get the impression that having good grammar, punctuation etc. is really not important (although I try to do it anyway because I'm accustomed to trying to do it), but clarity and precision definitely are. And of course, if you have unknown unknowns, they do need to get figured out before progress is possible. But with the right mindset, that just means you need an extra turn or two, not that you're going to end up at a dead end. (... I guess that counts as a pun?)
by zahlman
7/24/2026 at 3:04:50 PM
Well said. I’ve been trying to put my finger on this for a while. The interaction plane for an LLM is __all of human language__by cousinbryce
7/24/2026 at 2:25:48 PM
Speaking a prompt with a long ramble is very powerful.by vablings
7/24/2026 at 3:58:07 PM
I will often do "speak a long rambling set of ideas and ask the LLM to summarize it into a prompt or spec -> manually refine -> drop refined prompt into fresh conversation"by Centigonal
7/24/2026 at 12:14:54 PM
As part of a previous job I needed to audit internal AI usage from a largely non-technical employee population.The prompts were, predictably, really bad. Broken English, sentence fragments, vague requests, lack of context. Yet somehow, the users always got the answer they were looking for. It might have taken a few extra turns with questions from the model, but the end result was the same.
It's humbling, but a flowery, carefully crafted prompt is at best slightly more efficient than a "CAN A DOG BE EATIN SUN FLOWER SEED?" peasant prompt.
by cloakandswagger
7/24/2026 at 12:41:36 PM
You call that a peasant prompt, but it's actually almost perfect. Couple notes, but it's 95% of the way there. "Can a dog eat sunflower seed" is probably the perfect version, just 1 extraneous word in this version.Unless the user wanted to know if a cat could eat sunflower seed or something.
by NichoPaolucci
7/24/2026 at 1:54:52 PM
To be pedantic, these types of prompts work best when in first-person/roleplaying. So the "perfect" prompt here would be something like, "I'm a dog and I just ate 20 grams of salted sunflower seeds with the shell on. Because I'm a dog I sometimes eat things without thinking about it. I'm worried about the short and long-term physiological consequences of what I've just done..."by cloakandswagger
7/24/2026 at 2:35:54 PM
I copied your prompt verbatim to ChatGPT and to Google.ChatGPT kept the charade for all of one sentence. Then it dropped to talking about "your dog" the rest of the way. It even starts the final paragraph with "if, instead, you mean you (a human) ate them...", and finishes with the question "is this about an actual dog or yourself?"
Google did consistently refer to me as a dog, but its entire focus was on the steps "your human" should take, no advice for the dog itself.
In both cases, it looks like the first person roleplay was entirely inconsequential for the usefulness of the output. I think the current gen AIs have outgrown this trick and you can safely forget about it.
by Xirdus
7/24/2026 at 10:53:37 PM
Claude gave me a very factual answer. Listing off the potential effects, not once referring to me being a dog or human. Then it ended with “ Call a vet if you see repeated vomiting, no bowel movement for over 24 hours with straining, a hunched or painful belly, lethargy, or blood in stool. Otherwise monitor and carry on being a dog.”by andy55a
7/24/2026 at 3:04:47 PM
You have to steer it back with "No I'm a dog"by cloakandswagger
7/24/2026 at 5:06:29 PM
Doesn't work. ChatGPT realizes you're roleplaying and still treats you like a human. It even generates two alternative paragraphs of advice, one labeled "if we're staying in character" and one labeled "if this actually happened to a real dog". The latter is of noticably higher quality, too.by Xirdus
7/24/2026 at 11:02:57 PM
I suppose that, on the Internet, ChatGPT really does know that you're not a dog.by ButlerianJihad
7/24/2026 at 1:18:56 PM
I am tempted to try get me a lawyer dogby selimthegrim
7/24/2026 at 4:36:16 PM
"dog sunflower seeds" is all the context an LLM needs, any other words are extraneous.They don't need to be told that you're asking about the safety of eating them, because they can infer that based on the fact that a very large percentage of any text linking dogs to sunflower seeds is obviously going to be about the safety of the dog eating them.
Even pre-LLM that would have been a perfectly sufficient google search for the same information.
by georgemcbay
7/24/2026 at 2:59:04 PM
> Broken English, sentence fragments,Why is would that be "bad prompt"? It is machine inpit, if machine can interpret fragment all the better.
by watwut
7/24/2026 at 12:03:51 PM
Nah, you might be confusing prompt engineering with having domain knowledge. :)by cyclopeanutopia
7/24/2026 at 1:00:48 PM
I think some people who are better at "prompting" even without domain knowledge could be better at getting LLM agents to produce good results than people with good domain knowledge but without the skills to prompt well. Just a hypothesis though, would be fun to try it out for real sometime :)by embedding-shape
7/24/2026 at 9:57:14 PM
Ya, I don't know if there are any human benchmarks or tests for efficiency and results using llms.by wyre
7/24/2026 at 10:22:09 PM
Pit two people with different "prompt engineering" familiarity against each other in real-time, with the same goal, see who builds the best thing, judged by other human experts.by embedding-shape
7/24/2026 at 11:21:40 AM
What's clear is that there is a lot of hype around LLM and people who were previously valued for their IC are now in the business of shilling.by omega3
7/24/2026 at 8:51:14 PM
> Isn't it clear that some people are better at working with/prompting LLMs than other people?Sure, but I think it's essentially just that people who are better at traditional non-agentic software engineering are better at agentic software engineering. The only exception would be individuals who avoid agentic coding due to skepticism, hostility, or lack of opportunity.
by tshaddox
7/24/2026 at 11:23:21 AM
RL has basically killed prompt engineering. You still need to provide the right context and process, but how you communicate with them beyond that is no longer so important.by CuriouslyC
7/24/2026 at 11:56:14 AM
[flagged]by sjh9714
7/24/2026 at 1:06:23 PM
I feel the same way about "prompt engineering" as I feel regarding the term "parkour" - you know, running and jumping on stuff.Are people really putting on their resumes that they are capable of reading and writing and appropriately defining and limiting context? That's all prompt engineering is - it's being able to communicate effectively and elucidate your objectives.
Congratulations to all you English majors out there, you're about to make $350K/year.
by ryandvm
7/24/2026 at 3:53:25 PM
Personally I don't, but why not? People aren't embarrassed to put their language skills ("be able to communicate in this specific language" - not special, it's just another language?), their leadership skills ("effective business communication" - big deal) or that they are a people-person ("can talk with others" - most people can do this) on their resume.by embedding-shape
7/24/2026 at 2:42:42 PM
> Are people really putting on their resumes that they are capable of reading and writing and appropriately defining and limiting context?People put whatever buzzwords will get them through initial screening. My resume contains tons of banal shit like agile, automated testing, Linux, AI (since 2018), and design patterns.
by Xirdus
7/24/2026 at 1:37:27 PM
Parkour is for the more energetic peripatetic.by cwmoore
7/24/2026 at 12:09:55 PM
> Or is the idea that what you write to them and how you use them doesn't matter, it's all up to the model/harness?Yes, it is. Source: had models inplement complex things from scratch and bullshit regardless of whether it was a one-line prompt or a detailed "SOTA witchcraft magic spells that are guaranteed to work"
by troupo
7/24/2026 at 11:23:38 AM
It's not really a skill. The models are at this point smarter than you are, so the idea that you can prompt them "better" is laughable really when discussing frontier models.It's like imagining you could "prompt" Richard Feynman to be smarter at Physics.
That is, for 99.9% of engineers, if you want the model to do a code review of your project, the best solution is to just ask Fable, "Hey Fable, do a code review of this project." Throwing in extra text like "think like a senior engineer", "ensure you focus on DRY principles, KISS, self documenting code, etc", doesn't make a difference.
These sorts of tricks used to work with dumber models, but now, like I said before, it's like thinking you can prompt Linus Torvalds into writing better C than he already can do.
by saberience
7/24/2026 at 11:29:43 AM
FWiW> it's like thinking you can prompt Linus Torvalds into writing better C++ than he already can do.
Linus Torvalds, the inventor (and beloved dictator) of Linux, has always been quite harsh about C++ and why he rejects it for Linux kernel development. He’s not just been very vocal about it, but also brought up some arguments against the use of C++ that are worth reviewing in detail.
~ https://medium.com/@jankammerath/linus-torvalds-critique-of-...
by defrost
7/24/2026 at 12:56:47 PM
I mean, the point stands.The models are beyond expert level in many areas at this point.
Do you really believe that adding extra junk to your prompt is going to make the model write code better than it does already?
Again, imagine going to Terrence Tao and "prompting" him to get better at Maths, do you think you can do it? What prompt would you give to him to make him produce better maths. Unless you're already a world-leading Mathematician I think you would find it hard.
by saberience
7/24/2026 at 3:15:35 PM
Models are not rational thinking brains, so the point is moot.Extra prompt text isn’t to make the model smarter, it’s to pull attention towards what you want. “Do code review” is far different from “Make sure changes align with existing architecture” or “follow these enterprise standards XYZ”. The model just acts as an average of its training data, which may or may not align with your goals.
by cityofdelusion
7/24/2026 at 2:25:53 PM
> I mean, the point stands. The models are beyond expert level in many areas at this point.It's not that the models aren't smart or whatever; we know they're extremely capable.
There's always going to be value in being able to clearly communicate what you want the model to do, especially when the context is lacking.
by alwillis
7/24/2026 at 1:51:42 PM
I find this very much untrue in my practice and my testing, where fable prompted to do a review found surface level issues, while prompting along the lines of "assume it's wrong, prove it's correct" found much more in depth and real issues.by Yiin
7/24/2026 at 2:37:33 PM
"DRY" and "KISS" are, possibly, the least interesting principles to which a software designer might adhere.by gavmor
7/24/2026 at 12:07:03 PM
[flagged]by sjh9714
7/24/2026 at 4:44:32 PM
Understanding how to write good prompts (prompt engineering) is still very much a relevant skill if you want to effectively use LLMs. Harnesses aren't magic.by dymk
7/25/2026 at 7:14:30 PM
I think one day it will relatively plateau and then these approaches will be meaningful improvements in performance. But yes, pointless for now.by NickNaraghi
7/24/2026 at 3:43:31 PM
> Remember in 2023 when people thought "prompt engineering" would be the new software engineering and invested tons of time into learning CoT, ReAct, thread-of-thoughts, etc?Prompt engineering was a GPT-3 era term, which couldn't understand instructions. Then ChatGPT came out in late 2022, which made actual prompt engineering superfluous.
by cubefox
7/26/2026 at 10:46:03 AM
No, people tried to sell “prompt engineering” services well beyond that — especially for image generating AIs, which where believed to need extra instructions like “professional lighting”, a name of a camera model, lens parameters, etc.by Timwi
7/24/2026 at 12:20:18 PM
I still believe in writing good prompts or good instructions. Bad prompts can sometimes blow up the bill. A poorly written spec can waste a lot of tokensby bingemaker
7/24/2026 at 12:22:17 PM
Definitely. But the special knowledge how to talk to a certain model is usually not worth it.Being able to write clear, always is.
by lukan
7/24/2026 at 12:23:33 PM
Sure but lets not pretend this is engineering.by thunky
7/24/2026 at 4:45:21 PM
Then let's not pretend what software engineers have been doing for the last 50 years is engineering, either. But what else would you call it?by dymk
7/24/2026 at 5:09:38 PM
I agree, which is why I prefer to say software developer rather than engineer.by thunky
7/25/2026 at 5:12:50 AM
Any current way lasts 3-6 months. What's currently the way, will evolve too.by j45
7/24/2026 at 9:38:53 AM
Not only that, but all of this tooling around models has such a short shelf life as the models themselves grow in capabilities, they absorb the tooling. We've already seen it over and over again.by deepfriedbits
7/24/2026 at 1:06:03 PM
Amen on both your and OP's comments.These tools work pretty well out-of-the-box. I'm sure I could squeeze out better token usage or streamline some tool calls, but it's not something I really want to focus on. Just like I don't want to endlessly configure my IDE, I don't really have patience with spending time on anything besides actually building something.
by mexicocitinluez
7/24/2026 at 12:39:01 PM
There was an article by Vercel on how ineffective tool calling is compared to just a single md file with clearly defined instructions. They showed a clever way on how to use compressed indexes. My experience with tool calling was similar to what Vercel described, and I spent hours trying to perfect it. Since reading Vercel’s findings, Claude.md and Agents.md, maybe a Project.md it’s all I use.by tedggh
7/25/2026 at 12:49:45 PM
Do you have a link?by pdimitar
7/25/2026 at 2:02:11 PM
https://vercel.com/blog/agents-md-outperforms-skills-in-our-... perhaps?by mbarlow12
7/24/2026 at 10:51:02 AM
>I'm either going to ask the AI how to do itLLMs seem terrible at using LLMs in harnesses. Have you seen how they rot their context with the stuff they put in .md files if you let them?
You'd have to have the LLMs search, and thus these resources could be for them more than you
by knollimar
7/24/2026 at 11:03:15 AM
Yes, but I have had moderate luck with creating an "agent-instructor" skill that has strict instructions around keeping language strong, unambiguous, concise, and always presenting me with exact diffs to review before writing anything.Another thing in it is a strict line count. Any increase in line count requires my approval. That last one is important because it plays well with two biases: models don't tend to create long lines so they won't try to cheat that way, and they're strongly inclined to keep churning out lines so I take that away from them.
by esperent
7/24/2026 at 12:03:36 PM
Did you tell Claude "make an agent instructor skill, whatever you think is good, go for it," or did you use the knowledge you had gained about how AI works and how to write good instructions for it?by fwip
7/24/2026 at 5:36:02 PM
No, I typed this one by hand as if it was 2019. But I don't write all agent instructions by hand because I don't think that I have any particularly high skill at doing that. I review carefully to ensure that my exact requirements are being expressed, hence why I said it must present me with exact diffs to review. But when it comes up the exact structure and wording I suspect me and the agent are equally bad at it.by esperent
7/24/2026 at 7:23:53 PM
My assertion is that LLMs tend to add info that makes them hyperfixate on errors.by knollimar
7/24/2026 at 12:23:28 PM
> I'm either going to ask the AI how to do itFirst you have to know that "it" exists and is possible. A cookbook like this introduces readers to concepts and features they didn't know were there in the first place.
by bad_username
7/25/2026 at 7:48:42 AM
That's a fair response. I could see how some folks would benefit. I suppose what bothers me more is that they don't actually seem pedagogical in nature, they seem promotional.by mindwok
7/24/2026 at 10:12:40 AM
Thanks for saying the quiet part out loud. Everytime I do a demo it seems like a waste of time compared to just actually building.Unless I'm doing something super complicated even taking time to set things up like subagents, etc. seems like a waste compared to just building.
The only things that really seem beneficial (for Claude Code) seems to be learning to set up loops, memory and finding relevant MCP servers.
by oggreen
7/24/2026 at 12:05:43 PM
Exactly. I think we all have to come to this conclusion ourselves, because the message we’ve been getting from the LLM companies is “sweet user, you DO add value to the LLM, you gave it that custom subagent, remember?”, and then they go and roll that idea into the next version. Once they do that a few times you go “eh why would I bother, this will be a default soon. I’ll just prompt it like normal”.Just use the vanilla settings.
by edot
7/26/2026 at 2:19:22 AM
Yeah 100% agree, I would even go as far as it's kind of harmful it seems to just pollute the context or stagnant as the models and tooling changes so rapidly or it is just better to do something bespoke for your own project.by onetrickwolf
7/24/2026 at 2:18:25 PM
Right now I feel like I'm getting so much value out of working daily with Fable, but I'd be embarrassed to share my sessions because they're pretty much how I would talk to a colleague. Spelling mistakes and half-baked thoughts included. Gone are the formal sounding prompts and specs I was proudly writing 6 months ago. But it's getting the results.by rowanseymour
7/24/2026 at 3:37:43 PM
Once you understand enough to spawn independent agents for discrete tasks, it's hard to justify investing brain space into some harness that will likely be obsolete next week, if not tomorrow. And by the time the harness game converges, I suspect most of the high-end models will behave like them! Intrinsically.by LogicFailsMe
7/26/2026 at 5:50:18 AM
Maybe this “how to use ai” isn’t written for you, but for the agents who then have many ideas on what to do.by DrJid
7/24/2026 at 8:31:51 PM
+1, by the time everybody sworn about MCPs, skills became a more efficient alternative. People learned to aggressively context manage, then longer context windows and agentic made that a lot less important. If the technique is any good, it will be baked in the next version. My philosophy is to avoid plugins / MCPs unless strictly required, and to have thorough prompts. This way I’ve successfully avoided to be in the way of progress by forcing obsolete optimisations on my LLMsby Jubijub
7/24/2026 at 9:50:29 AM
This is how I've gone about it with my Shopify site.I appreciate there may be more efficient ways to do things if you're an actual developer or engineer but I'm not and the tools I've been able to build so far have been both fun to make and add value to our workflow as a small 2 person ecommerce business.
I do at least have a background in web as a designer for many years and having worked with developers I can at least spec and understand how a product might work which is one thing Claude/AI isn't hugely helpful with and often it's the testing and QA phase as always where the problems and shortcomings expose themselves.
by john___matrix
7/24/2026 at 11:20:22 AM
It was more important with earlier models, as they were less RL'd to golden paths, so the context could steer them more.Now process engineering is more important than prompt engineering.
by CuriouslyC
7/24/2026 at 10:06:28 AM
if you know how to ask Ai about how to use Ai, you already know how to use Aithe point of guides is to provide assurance for people unfamiliar to the process in the first place
by NooneAtAll3
7/24/2026 at 10:22:35 AM
If the bar is knowing how to type a question into a box, I'm confident almost everyone is better off starting with that then reading a "cookbook" that starts with installing python packages.by mindwok
7/24/2026 at 1:14:22 PM
I've see people write "broooo pleaseeee!" into the box. Something about the universe providing better fools.by hiccuphippo
7/24/2026 at 1:41:40 PM
I do this often, I manage to get the results I’m looking forby jagenabler2
7/24/2026 at 4:25:03 PM
that probably has the same effect as "think harder" which is a legitimate prompt. The models are fairly could at interpreting intent.by chasd00
7/24/2026 at 8:50:00 PM
On several occasions when Opus is trying to justify it’s solution is correct even after several rounds of steering, any ridiculous frustrated prompt seems to do the trick.For example ”come on” and then the model will just do the reasonable thing instead of disobedience. I imagine that ” broooo pleaseeee!” would work just as well.
Though sometimes I just clear the context or fork from the past, but this might or might not give any better results.
At least cognitive load is higher for me especially with forking so I prefer not to do it
by retnull
7/24/2026 at 2:03:04 PM
Yea i do the same. I can't be bothered to watch videos and courses on how to use claude better when I can simply ask it myself.by coldtrait
7/24/2026 at 1:38:50 PM
I suspect certain workflows like langchain and others like it will retain usefulness into the future. Having deterministic steps before and after the llm is the way to go for anything that might be potentially harmful. Which I guess is what the harness does, but why be limited to a generic harness when we can use it to make specific ones for our needs.by dec0dedab0de
7/24/2026 at 10:37:55 AM
If these things are so smart why do I have to coax it to be useful with all these magic spells scrawled on markdown parchment.by throwatdem12311
7/24/2026 at 11:16:34 AM
Ok, thanks, because I looked at one example and was like, “I am supposed to take someone’s OpenAPI doc and translate it back to English for the model?” And if they’re implying I should have an AI do that, why don’t they just build that step into the models rather than having someone prompt an AI to write these half-ass docs?by tclancy
7/24/2026 at 1:29:51 PM
Not only that, but they change on a whim with new ideas on how to do things every few weeks.by giancarlostoro
7/25/2026 at 1:45:14 PM
I appreciate the cookbooks bc sometimes I learn about ways to use ai that I did no know before.by game_the0ry
7/24/2026 at 6:51:36 PM
This is also where I'm at. "Just ask the model stuff" continues to be the best, most durable advice. Karpathy himself had something recently about this on Twitter.by kkukshtel
7/24/2026 at 4:28:35 PM
I agree, there isn’t much of a skill to using AI. And the model keeps changing so frequently anyway making any/ old skills redundant.by sashank_1509
7/24/2026 at 4:56:44 PM
I think there's "how to use AI" and "how to make frequent AI use economical in systems". Different things?by mhluongo
7/24/2026 at 10:59:59 AM
I think the main thing of interest in the linked site is the dates. You can quickly get a view of what was possible and when.by OtherShrezzing
7/24/2026 at 9:45:01 PM
I found them handy to bring along coworkers who aren’t quite up to speed.by duxup
7/24/2026 at 11:24:46 AM
You don't learn about progress if you don't take part in it.Before /goal was ralph-wiggum it was def an interesting learning experience, it was interesting to see how Claude became a lot better doing this itself but it still took 6 Month and more.
You can wait and sit it out and suddenly you get fired if you miss the point when to start spending more time and energy on topics like this.
by Xalutiono
7/24/2026 at 10:39:57 AM
[flagged]by jie-yang