It is wrong. The new/old skill is reverse engineering. If the majority of the code is generated by AI, you'll still need people with technical expertise to make sense of it.
Not really. Got some code you don't understand? Feed it to a model and ask it to add comments. Ultimately humans will never need to look at most AI-generated code, any more than we have to look at the machine language emitted by a C compiler. We're a long way from that state of affairs -- as anyone who struggled with code-generation bugs in the first few generations of compilers will agree -- but we'll get there.
The new skill in AI is not prompting, it's context engineering
531–540 of 550 posts
Re: The new skill in AI is not prompting, it's context engineering
#532Earlier quoted context omitted.
Engineering tends to mean "the application of scientific and mathematical principles to practical ends". I'm not sure there's much scientific or mathematical about guessing how a non-deterministic system will behave.
Funny how you use a scientific term to discredit applied statistics. I've built useful non-deterministic systems many times and they had nothing to do with AI. Also, particle physics would like to have a word with you.
Statistics isn't guessing. But it is guessing when the confidence interval is unknowable and constantly shifting. We're not talking relativity, we're talking about throwing pancakes at a wall to tell if there's a person behind it.
Re: The new skill in AI is not prompting, it's context engineering
#533Earlier quoted context omitted.
The moment you start building evaluation pipelines and running experiments to validate your ideas it stops being guessing
It’s validated and filtered but isn’t it still guessing at the core? Should we call it validated guessing?
Right now, you cannot get that far. And if you happen to... Tomorrow it will be different.
Predicting tides is possible. It requires enormous amounts of data and processing to be sure of it. Right now, we've got tides, but we don't have the data from the satellites. Because the owner is constantly shifting the prompt, for good reasons of their own. So we can't be confident - or we can only be so blindly.
Re: The new skill in AI is not prompting, it's context engineering
#534Earlier quoted context omitted.
“A month-long skill” after which it won’t be a thing anymore, like so many other.
What exactly month-long AI skills of 2023 AI are obsolete now? Surely not prompt engineering itself, for example.
Re: The new skill in AI is not prompting, it's context engineering
#535If we zoom out far enough, and start to put more and more under the execution umbrella of AI, what we're actually describing here is... product development. You are constructing the set of context, policies, directed attention toward some intentional end, same as it ever was. The difference is you need fewer meat bags to do it, even as your projects get larger and larger. To me this is wholly encouraging. Some projec…
> for his own creations. for their own creations is grammatically valid, and would avoid accusations of sexism!
Re: The new skill in AI is not prompting, it's context engineering
#536LLM agents remind me of the great Nolan movie „Memento“. The agents cannot change their internal state hence they change the encompassing system. They do this by injecting information into it in such a way that the reaction that is triggered in them compensates for their immutability. For this reason I call my agents „Sammy Jenkins“.
I think we can reasonably expect they will become non-stateless in the next few years.
Re: The new skill in AI is not prompting, it's context engineering
#537Earlier quoted context omitted.
I went down that rabbit hole with Cursor and it's pretty good. Then I tried tools like Cline with Sonnet 4 and Claude Code. The Anthropic models have huge context and it shows. I'm no expert, but it feels like you reach a point where the model is good enough and then the gains are coming from the context size. When I'm doing something complex, I'm filling up the 200k context window and getting solutions that I just c…
Recently cancelled my Cursor subscription because it's pretty bad.
Re: The new skill in AI is not prompting, it's context engineering
#538Most companies have context scattered across wikis, Slack, Google Docs. You can build sophisticated retrieval systems, but if you're feeding them fragmented information, you're missing huge optimization opportunities.
There's research backing this - Microsoft/Salesforce found 39% accuracy drop in multi-turn conversations - so for the agent interaction's it's even more cirtical to give 'just enough' context (https://arxiv.org/pdf/2505.06120).
When (business) context is properly structured upfront, you minimize those patterns.
Re: The new skill in AI is not prompting, it's context engineering
#539Earlier quoted context omitted.
Funny how you use a scientific term to discredit applied statistics. I've built useful non-deterministic systems many times and they had nothing to do with AI. Also, particle physics would like to have a word with you.
Guessing, how a non-deterministic system would behave. Statistics isn't guessing. But it is guessing when the confidence interval is unknowable and constantly shifting. We're not talking relativity, we're talking about throwing pancakes at a wall to tell if there's a person behind it.
Re: The new skill in AI is not prompting, it's context engineering
#540Earlier quoted context omitted.
What? You can get consistent output on local models. I can train large nets deterministically too (CUBLAS flags). What your saying isn't true in practice. Hell I can also go on the anthropic API right now and get verbatim static results.
"Hell I can also go on the anthropic API right now and get verbatim static results." How? Setting temperature to 0 won't guarantee the exact same output for the exact same input, because - as the previous commenter said - floating point arithmetic is non-commutative, which becomes important when you are running parallel operations on GPUs.