<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Nicolas Dabene</title>
    <description>The latest articles on DEV Community by Nicolas Dabene (@ndabene).</description>
    <link>https://dev.to/ndabene</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3605489%2F4ab5c95f-672b-40b9-907f-1f3825cbb8ee.png</url>
      <title>DEV Community: Nicolas Dabene</title>
      <link>https://dev.to/ndabene</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ndabene"/>
    <language>en</language>
    <item>
      <title>Getting Started with Claude Code or Codex Without Becoming Dependent on AI</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Sat, 25 Jul 2026 06:45:04 +0000</pubDate>
      <link>https://dev.to/ndabene/getting-started-with-claude-code-or-codex-without-becoming-dependent-on-ai-1dh1</link>
      <guid>https://dev.to/ndabene/getting-started-with-claude-code-or-codex-without-becoming-dependent-on-ai-1dh1</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;"Learning to Code with AI" Series — Article 1/7&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;Claude Code and Codex can accelerate a junior developer's learning. But they can also create the illusion of progress simply because an application works. The right method comes down to five verbs: &lt;strong&gt;understand, attempt, ask, verify, explain&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Working Application Doesn’t Prove You Know How to Code
&lt;/h2&gt;

&lt;p&gt;Today, a beginner developer can ask an agent to create a complete application in just a few minutes.&lt;/p&gt;

&lt;p&gt;A login page. A dashboard. API calls. Some tests. A clean interface.&lt;/p&gt;

&lt;p&gt;Everything works. Yet, it often takes just three questions to uncover the problem:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Why is this component executed client-side?&lt;/li&gt;
&lt;li&gt;What happens if the API returns invalid data?&lt;/li&gt;
&lt;li&gt;How can you modify the behavior without regenerating the entire feature?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If the developer can’t answer, they haven’t yet learned how to build the application. They’ve learned how to ask for one.&lt;/p&gt;

&lt;p&gt;The issue isn’t Claude Code or Codex. The issue is the disappearance of the learning loop: try, fail, search, understand, correct.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Removes Friction—Including the Kind That Helps You Improve
&lt;/h2&gt;

&lt;p&gt;Some of the difficulty in development is unnecessary. Spending an hour finding a typo doesn’t make anyone a better architect.&lt;/p&gt;

&lt;p&gt;AI can eliminate this friction. It can explain an error, locate a file, prepare a test, or compare two solutions.&lt;/p&gt;

&lt;p&gt;But some challenges are formative:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;breaking down a problem that’s too broad;&lt;/li&gt;
&lt;li&gt;reading documentation;&lt;/li&gt;
&lt;li&gt;formulating a hypothesis;&lt;/li&gt;
&lt;li&gt;understanding a type error;&lt;/li&gt;
&lt;li&gt;choosing between multiple implementations;&lt;/li&gt;
&lt;li&gt;measuring the consequences of a dependency.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If the agent also makes these decisions, the junior gets the result without building the reasoning.&lt;/p&gt;

&lt;h2&gt;
  
  
  Our Guiding Example: A Mini-Dashboard
&lt;/h2&gt;

&lt;p&gt;In this series, we’ll follow the construction of a mini-dashboard with TypeScript, React, and Next.js.&lt;/p&gt;

&lt;p&gt;It will display a few metrics fetched from an API: service status, simulated CPU load, memory usage, and disk space. It will need to handle loading, errors, invalid data, and several useful tests.&lt;/p&gt;

&lt;p&gt;This project is intentionally simple. Yet, it contains everything needed to learn:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;turning a requirement into small tasks;&lt;/li&gt;
&lt;li&gt;distinguishing data from display;&lt;/li&gt;
&lt;li&gt;typing an external response;&lt;/li&gt;
&lt;li&gt;managing interface states;&lt;/li&gt;
&lt;li&gt;writing and verifying tests;&lt;/li&gt;
&lt;li&gt;debugging an error;&lt;/li&gt;
&lt;li&gt;refactoring without rewriting everything.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal will never be to go as fast as possible. It will be to know what we’ve learned at each step.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Five-Verb Method
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Understand
&lt;/h3&gt;

&lt;p&gt;Before writing a prompt, rephrase the problem. What are the inputs? What result do you expect? What cases could fail?&lt;/p&gt;

&lt;p&gt;You can use the agent to clarify a concept, but not to silently decide what you wanted to build.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Attempt
&lt;/h3&gt;

&lt;p&gt;Write a first version. It can be incomplete or awkward.&lt;/p&gt;

&lt;p&gt;This attempt gives the AI something much more useful than a vague request: your current reasoning. The agent can then review it, identify a misunderstanding, and explain a precise improvement.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Ask
&lt;/h3&gt;

&lt;p&gt;Don’t automatically ask for the complete solution.&lt;/p&gt;

&lt;p&gt;Ask for a hint, an explanation, a review, or two possible approaches. The more targeted the request, the more educational the response can be.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Verify
&lt;/h3&gt;

&lt;p&gt;Read the diff. Run the code. Check the types. Run the tests. Observe the behavior in case of an error.&lt;/p&gt;

&lt;p&gt;An agent can be wrong with great confidence. The quality of a response isn’t measured by its appearance, but by what you can verify.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Explain
&lt;/h3&gt;

&lt;p&gt;After making the change, close the AI’s response and explain the code in your own words.&lt;/p&gt;

&lt;p&gt;If you can’t explain an important line, you haven’t finished the task. You’ve only identified what’s left to learn.&lt;/p&gt;

&lt;h2&gt;
  
  
  A First Prompt That Protects Learning
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I’m new to TypeScript and React.

Don’t modify any files yet.
Start by asking me the questions needed to verify my understanding of the requirement.
Then ask me to propose a breakdown myself.

When I share my approach:
1. point out what’s correct;
2. flag the risks without immediately giving the solution;
3. give me a first hint;
4. wait for my next attempt.

If I finally ask for a modification, present the plan and the affected files before acting.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This prompt doesn’t make the agent less powerful. It gives it a different role: it becomes a teaching partner instead of an automatic generator.&lt;/p&gt;

&lt;h2&gt;
  
  
  Claude Code or Codex: The Method Remains the Same
&lt;/h2&gt;

&lt;p&gt;Both tools can explore a repository, modify files, execute commands, and participate in validation. Their interfaces, instruction mechanisms, and permissions differ, but the principle of control remains the same.&lt;/p&gt;

&lt;p&gt;The junior must know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what the agent is going to do;&lt;/li&gt;
&lt;li&gt;which files have changed;&lt;/li&gt;
&lt;li&gt;how the result was verified;&lt;/li&gt;
&lt;li&gt;how to revert changes;&lt;/li&gt;
&lt;li&gt;what they personally understood.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The official documentation presents the main workflows for &lt;a href="https://developers.openai.com/codex/" rel="noopener noreferrer"&gt;Codex&lt;/a&gt; and &lt;a href="https://docs.anthropic.com/en/docs/claude-code/overview" rel="noopener noreferrer"&gt;Claude Code&lt;/a&gt;. They should remain the references for current capabilities and configuration.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Right Metric Isn’t the Number of Lines Produced
&lt;/h2&gt;

&lt;p&gt;At the end of a session, don’t just ask: &lt;em&gt;“Does the feature work?”&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Ask yourself instead:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Can I explain the key choices?&lt;/li&gt;
&lt;li&gt;Could I trace the origin of a bug?&lt;/li&gt;
&lt;li&gt;Can I modify this feature without regenerating everything?&lt;/li&gt;
&lt;li&gt;Did I learn something transferable to another project?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AI can speed up production. Your role is to ensure it also speeds up your understanding.&lt;/p&gt;

&lt;p&gt;In the next article, we’ll prepare the mini-dashboard before letting an agent write a single line of code.&lt;/p&gt;

</description>
      <category>developpementarchitecture</category>
      <category>agentsia</category>
      <category>api</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Agile is Dead? Welcome to the Era of Agent-Driven Development</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Fri, 17 Jul 2026 22:15:03 +0000</pubDate>
      <link>https://dev.to/ndabene/agile-is-dead-welcome-to-the-era-of-agent-driven-development-3nbh</link>
      <guid>https://dev.to/ndabene/agile-is-dead-welcome-to-the-era-of-agent-driven-development-3nbh</guid>
      <description>&lt;p&gt;For several months now, a recurring theme has been cropping up more and more often in discussions about software development: Agile is dead. As is often the case in our industry, the statement is deliberately provocative. It works well in a headline, sparks debates, and above all, highlights a real discomfort. Because while Agile may not be dead, part of how we organize software development—something we’ve been practicing for twenty years—is starting to show its limits in the face of AI agents.&lt;/p&gt;

&lt;p&gt;The issue doesn’t necessarily lie with Agile principles themselves. Rather, it stems from the fact that we’ve built methods, ceremonies, and habits around a very specific constraint: the human capacity to produce software. A team has a limited number of developers, each developer has limited time, and so we must organize this scarce capacity. We break down work, estimate, prioritize, plan, and try to measure what the team can handle in a given period.&lt;/p&gt;

&lt;p&gt;For a long time, this logic made sense. But in 2026, a new variable is profoundly changing the equation: development agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bottleneck Is Shifting
&lt;/h2&gt;

&lt;p&gt;We’re no longer just talking about autocompletion or an assistant capable of generating a PHP function from a comment. Today’s tools are starting to explore entire codebases, analyze architecture, modify multiple files, write tests, fix errors, and execute relatively long tasks with increasing autonomy.&lt;/p&gt;

&lt;p&gt;GitHub now publicly uses the term &lt;strong&gt;"Agent-Driven Development"&lt;/strong&gt; to describe some of these new practices. OpenAI is pushing multi-agent workflows around Codex, while Anthropic is already studying how developers use Claude Code in real-world situations. We’re still far from a fully stabilized model, but the direction is clear: the developer is no longer systematically the sole execution unit in the software production process.&lt;/p&gt;

&lt;p&gt;For a long time, code was one of the main bottlenecks. A feature could be perfectly defined, validated, and prioritized, but it still had to wait for a developer to have the time to implement it. With agents, this constraint is gradually shifting.&lt;/p&gt;

&lt;p&gt;The problem is no longer &lt;em&gt;"Who will write the code?"&lt;/em&gt; but rather &lt;em&gt;"Have we properly defined what needs to be built, with what constraints, and how will we validate the result?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This nuance is important because it directly changes how we should think about organizing work.&lt;/p&gt;

&lt;h2&gt;
  
  
  Yes, a Certain Form of Agile Is Probably Dying
&lt;/h2&gt;

&lt;p&gt;Let’s take the most radical thesis. A feature is identified on Monday. It needs to be described in a ticket, go through refinement, be estimated, prioritized, and then integrated into a sprint based on the team’s available capacity. In some organizations, several days—or even weeks—can pass before work even begins.&lt;/p&gt;

&lt;p&gt;Meanwhile, a properly equipped developer can now ask an agent to explore the project, identify the relevant components, propose several implementation strategies, and prepare a first version of the change. Depending on the complexity, all of this can sometimes happen before the next refinement meeting.&lt;/p&gt;

&lt;p&gt;It would obviously be dishonest to claim that all features can now be developed in a few minutes. That’s not the case, and agents still face many limitations. But the gap between the potential speed of execution and the speed of some organizational processes is becoming hard to ignore.&lt;/p&gt;

&lt;p&gt;We’ve gradually built significant bureaucracy around software production. This bureaucracy was often justified by the need to protect limited development capacity. When a resource is scarce, it makes sense to try to optimize it as much as possible.&lt;/p&gt;

&lt;p&gt;But what happens when this execution capacity becomes partially elastic?&lt;/p&gt;

&lt;p&gt;In this context, a two-week sprint can sometimes become less of an acceleration tool and more of a simple queue. The process then starts moving slower than the tools it’s supposed to organize.&lt;/p&gt;

&lt;h2&gt;
  
  
  No, Agile Is Probably Not Dead
&lt;/h2&gt;

&lt;p&gt;Now, let’s do the exact opposite exercise and return to principles rather than implementations.&lt;/p&gt;

&lt;p&gt;Delivering working software quickly, collaborating with users, reducing feedback loops, and embracing change are ideas that remain extremely relevant. One could even argue that AI agents make some Agile principles even more compelling.&lt;/p&gt;

&lt;p&gt;If the cost of a change decreases, it becomes possible to test a hypothesis faster, get feedback, correct, and repeat. The loop between building, feedback, and adaptation can become much shorter. On this point, agents are not in opposition to Agile. They can, in fact, reinforce its original philosophy.&lt;/p&gt;

&lt;p&gt;The problem may lie elsewhere. Over the years, we’ve sometimes confused Agile with the set of ceremonies and management mechanisms that have built up around it. Meetings have become automatic, story points have sometimes been turned into productivity metrics, and some tickets are now so detailed that they almost tell the developer which line of code to modify.&lt;/p&gt;

&lt;p&gt;So Agile may not be dead. However, the bureaucracy built around Agile could soon face a much less comfortable reality.&lt;/p&gt;

&lt;p&gt;Our tools are changing faster than our work methods.&lt;/p&gt;

&lt;h2&gt;
  
  
  From Tickets to Intent
&lt;/h2&gt;

&lt;p&gt;One of the evolutions that interests me most is the level of abstraction at which we define work.&lt;/p&gt;

&lt;p&gt;In a traditional workflow, we tend to break down features into extremely precise tasks: &lt;em&gt;Add a CSV export button. Create an API route. Add a column to a table. Modify a page’s display.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This approach still responds to a human constraint. A person must pick up the task, understand what’s expected, and then execute it. The more precise the task, the more we reduce the risk of misinterpretation.&lt;/p&gt;

&lt;p&gt;With agentic systems, we could gradually move up a level and define the &lt;em&gt;intent&lt;/em&gt; rather than the task itself.&lt;/p&gt;

&lt;p&gt;Instead of simply asking to add a CSV export button, we could explain that the goal is to allow a merchant to use their order data outside the software. We would then specify the constraints: respect the existing architecture, avoid exposing sensitive data, support large volumes, and prevent adding external dependencies.&lt;/p&gt;

&lt;p&gt;Finally, we would define success conditions: the export must be usable, performance validated, tests present, and security checked.&lt;/p&gt;

&lt;p&gt;The difference may seem subtle, but it’s fundamental. In the first case, we describe a task to execute. In the second, we define a decision space in which a system can explore multiple solutions.&lt;/p&gt;

&lt;p&gt;This model doesn’t eliminate the developer. It even increases their level of responsibility, because someone must properly define the boundaries of this decision space.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Problem Will Be Validation
&lt;/h2&gt;

&lt;p&gt;This is usually where I start to be wary of overly enthusiastic discourse about AI agents.&lt;/p&gt;

&lt;p&gt;Producing more code isn’t necessarily good news. DORA’s work describes AI as an amplifier. It can enhance an organization’s strengths but also accelerate its dysfunctions.&lt;/p&gt;

&lt;p&gt;A bad architecture doesn’t become better just because an agent can produce code faster. Insufficient test coverage becomes even more worrying when the volume of changes increases. And a fragile deployment process won’t be fixed by adding five agents capable of generating pull requests in parallel.&lt;/p&gt;

&lt;p&gt;We could very quickly discover that code production was only part of the problem.&lt;/p&gt;

&lt;p&gt;The new bottleneck may shift toward decision-making, context understanding, security, review, and especially validation. The more execution capacity increases, the more critical our ability to control that execution becomes.&lt;/p&gt;

&lt;p&gt;In a world where a developer produces ten changes per week, an imperfect review already represents a risk. In a world where multiple agents can produce dozens of changes in parallel, validation becomes a central discipline.&lt;/p&gt;

&lt;p&gt;This is probably where agentic development will truly become an engineering topic rather than just an impressive demo feature.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Developer Won’t Become a "Prompt Engineer"
&lt;/h2&gt;

&lt;p&gt;I’ve never really believed the idea that developers would become prompt engineers, spending their days searching for the magic formulation to get good code.&lt;/p&gt;

&lt;p&gt;The profession is probably moving up a level of abstraction.&lt;/p&gt;

&lt;p&gt;An experienced developer will still need to understand architecture, identify dependencies, anticipate side effects, and evaluate the quality of a solution. However, they will also need to learn how to properly define intent, provide usable context, set clear constraints, and determine the acceptable level of autonomy for an agent.&lt;/p&gt;

&lt;p&gt;They will also need to know how to organize multiple execution capacities and, above all, retain the ability to look at a technically functional result and say no.&lt;/p&gt;

&lt;p&gt;The developer of tomorrow may no longer be the one who writes the most code. They could become the one who knows how to properly govern a massive capacity to produce it.&lt;/p&gt;

&lt;p&gt;This skill is very different from simply mastering a language or framework. It requires a broader system vision, the ability to reason about constraints, and a much finer understanding of risk.&lt;/p&gt;

&lt;h2&gt;
  
  
  Welcome to the Era of Agent-Driven Development
&lt;/h2&gt;

&lt;p&gt;I don’t think Agile will disappear overnight in 2026. However, I do believe our work methods will need to catch up with our tools much faster than expected.&lt;/p&gt;

&lt;p&gt;Agents are starting to explore, code, test, and work in parallel. Meanwhile, many organizations continue to measure their development capacity using models built at a time when code production depended almost exclusively on the number of hours available in a human team.&lt;/p&gt;

&lt;p&gt;This gap will become increasingly visible.&lt;/p&gt;

&lt;p&gt;Perhaps tomorrow we’ll talk less about sprint capacity and more about validation capacity. Maybe concepts like agentic budget, autonomy level, context quality, or governance will become as important as velocity has been over the past twenty years.&lt;/p&gt;

&lt;p&gt;I’m still very wary of those who claim to have already invented the universal method for agentic development. We’re at the beginning of this transformation, and it would probably be dangerous to replace Agile bureaucracy with a new AI bureaucracy before even understanding what really works.&lt;/p&gt;

&lt;p&gt;But after fifteen years in software development, I’ve rarely seen our execution capacity evolve so quickly.&lt;/p&gt;

&lt;p&gt;So no, Agile is probably not dead.&lt;/p&gt;

&lt;p&gt;Software development has simply changed engines. And continuing to drive exactly the same way might be our biggest mistake.&lt;/p&gt;

</description>
      <category>developpementarchitecture</category>
      <category>agentsia</category>
      <category>api</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Why 2026 Proved PrestaShop Right</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Fri, 10 Jul 2026 22:15:02 +0000</pubDate>
      <link>https://dev.to/ndabene/why-2026-proved-prestashop-right-ok1</link>
      <guid>https://dev.to/ndabene/why-2026-proved-prestashop-right-ok1</guid>
      <description>&lt;p&gt;&lt;em&gt;One year after writing "PrestaShop vs Hype," the facts are more compelling than any opinions.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;In 2025, I defended a simple idea: stability is often underestimated in the software industry.&lt;/p&gt;

&lt;p&gt;In 2026, this idea is no longer just an opinion.&lt;/p&gt;

&lt;p&gt;PrestaShop's acquisition by cyber_Folks, the strategic partnership with Sylius, the energy seen at EO2S, and the launch of the PS Summit reveal a reality that many market players tend to overlook:&lt;/p&gt;

&lt;p&gt;The value of a platform is not measured solely by its architecture or perceived modernity.&lt;/p&gt;

&lt;p&gt;It is measured by its ability to endure, evolve, and unite a community.&lt;/p&gt;

&lt;p&gt;And in this regard, PrestaShop is probably stronger today than it has ever been.&lt;/p&gt;




&lt;h1&gt;
  
  
  🔄 Revisiting a 2025 Prediction
&lt;/h1&gt;

&lt;p&gt;At the end of 2025, I published an article titled:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"PrestaShop vs Hype: Why Stability Beats Modernity"&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;At the time, the debate kept resurfacing.&lt;/p&gt;

&lt;p&gt;On one side, platforms considered "modern."&lt;/p&gt;

&lt;p&gt;On the other, PrestaShop, often portrayed as a historical player, sometimes even labeled as legacy by those who only scratched the surface.&lt;/p&gt;

&lt;p&gt;My argument was simple:&lt;/p&gt;

&lt;p&gt;The software industry regularly overestimates novelty and underestimates durability.&lt;/p&gt;

&lt;p&gt;A platform that has existed for fifteen years is not necessarily outdated.&lt;/p&gt;

&lt;p&gt;It has simply survived fifteen years of technological changes, economic crises, market shifts, and evolving user expectations.&lt;/p&gt;

&lt;p&gt;This survival is not an accident.&lt;/p&gt;

&lt;p&gt;It is proof.&lt;/p&gt;

&lt;p&gt;One year later, events seem to have confirmed this intuition.&lt;/p&gt;




&lt;h1&gt;
  
  
  🤝 The False Debate Between PrestaShop and Sylius
&lt;/h1&gt;

&lt;p&gt;For a long time, part of the ecosystem presented PrestaShop and Sylius as opposing visions.&lt;/p&gt;

&lt;p&gt;PrestaShop represented accessibility, ecosystem, merchant volume, and maturity.&lt;/p&gt;

&lt;p&gt;Sylius embodied flexibility, an API-first approach, modern architecture, and complex projects.&lt;/p&gt;

&lt;p&gt;This opposition was always reductive.&lt;/p&gt;

&lt;p&gt;Because it assumed you had to pick a side.&lt;/p&gt;

&lt;p&gt;Yet the market sent a very different message.&lt;/p&gt;

&lt;p&gt;The partnership between PrestaShop and Sylius shows that these two platforms are not enemies.&lt;/p&gt;

&lt;p&gt;They address different needs while sharing common foundations: open source, Symfony, a strong technical culture, and a commitment to long-term building.&lt;/p&gt;

&lt;p&gt;The question is no longer:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Which platform will replace the other?&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The question becomes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;How can two complementary ecosystems create more value together?&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is a far more interesting evolution.&lt;/p&gt;

&lt;p&gt;And probably much more mature.&lt;/p&gt;




&lt;h1&gt;
  
  
  🌍 What EO2S Really Demonstrated
&lt;/h1&gt;

&lt;p&gt;When discussing a community event, it’s easy to focus on the conferences, announcements, or numbers.&lt;/p&gt;

&lt;p&gt;For me, the most important aspect was elsewhere.&lt;/p&gt;

&lt;p&gt;EO2S reminded us of something that comparison charts systematically overlook:&lt;/p&gt;

&lt;p&gt;A platform is not its code.&lt;/p&gt;

&lt;p&gt;A platform is a community.&lt;/p&gt;

&lt;p&gt;Behind every store are developers, integrators, agencies, module publishers, freelancers, hosting providers, contributors, and merchants.&lt;/p&gt;

&lt;p&gt;It is this collective that creates value.&lt;/p&gt;

&lt;p&gt;Not just the GitHub repository.&lt;/p&gt;

&lt;p&gt;Not just the features.&lt;/p&gt;

&lt;p&gt;Not just the technology.&lt;/p&gt;

&lt;p&gt;The PrestaShop ecosystem has sometimes been criticized.&lt;/p&gt;

&lt;p&gt;But when you physically bring its players together, you quickly realize the scale of the network built over nearly two decades.&lt;/p&gt;

&lt;p&gt;And this is precisely the kind of asset that cannot be bought.&lt;/p&gt;

&lt;p&gt;A community is built year after year.&lt;/p&gt;

&lt;p&gt;Contribution after contribution.&lt;/p&gt;

&lt;p&gt;Project after project.&lt;/p&gt;

&lt;p&gt;Trust after trust.&lt;/p&gt;




&lt;h1&gt;
  
  
  🏛️ The Real Asset: Longevity
&lt;/h1&gt;

&lt;p&gt;In the startup world, novelty is often seen as a virtue.&lt;/p&gt;

&lt;p&gt;In commerce, it’s often the opposite.&lt;/p&gt;

&lt;p&gt;A merchant doesn’t look for the trendiest platform.&lt;/p&gt;

&lt;p&gt;They look for one that will still be there tomorrow.&lt;/p&gt;

&lt;p&gt;Then in five years.&lt;/p&gt;

&lt;p&gt;Then in ten years.&lt;/p&gt;

&lt;p&gt;This difference is fundamental.&lt;/p&gt;

&lt;p&gt;E-commerce is a business of continuity.&lt;/p&gt;

&lt;p&gt;Switching platforms is costly.&lt;/p&gt;

&lt;p&gt;Training teams is costly.&lt;/p&gt;

&lt;p&gt;Migrating data is costly.&lt;/p&gt;

&lt;p&gt;Rebuilding processes is costly.&lt;/p&gt;

&lt;p&gt;Companies naturally seek platforms capable of standing the test of time.&lt;/p&gt;

&lt;p&gt;And this is where the Lindy effect becomes interesting.&lt;/p&gt;

&lt;p&gt;The longer a technology survives, the higher its probability of continuing to exist.&lt;/p&gt;

&lt;p&gt;PrestaShop is no longer a promise.&lt;/p&gt;

&lt;p&gt;PrestaShop is proof.&lt;/p&gt;




&lt;h1&gt;
  
  
  🤖 The AI Paradox
&lt;/h1&gt;

&lt;p&gt;One of the surprises of recent years concerns artificial intelligence.&lt;/p&gt;

&lt;p&gt;Many assumed AI would favor the newest platforms.&lt;/p&gt;

&lt;p&gt;In practice, the opposite is often observed.&lt;/p&gt;

&lt;p&gt;AI agents excel when they have rich context.&lt;/p&gt;

&lt;p&gt;They need:&lt;/p&gt;

&lt;p&gt;documentation,&lt;/p&gt;

&lt;p&gt;examples,&lt;/p&gt;

&lt;p&gt;history,&lt;/p&gt;

&lt;p&gt;discussions,&lt;/p&gt;

&lt;p&gt;feedback,&lt;/p&gt;

&lt;p&gt;existing code,&lt;/p&gt;

&lt;p&gt;accumulated best practices.&lt;/p&gt;

&lt;p&gt;In other words, they perform particularly well in ecosystems that have already built significant collective memory.&lt;/p&gt;

&lt;p&gt;This is precisely what PrestaShop and Sylius possess.&lt;/p&gt;

&lt;p&gt;Years of documentation.&lt;/p&gt;

&lt;p&gt;Thousands of projects.&lt;/p&gt;

&lt;p&gt;Thousands of developers.&lt;/p&gt;

&lt;p&gt;Millions of lines of usable context.&lt;/p&gt;

&lt;p&gt;AI does not replace this legacy.&lt;/p&gt;

&lt;p&gt;It amplifies it.&lt;/p&gt;




&lt;h1&gt;
  
  
  🚀 The Signal Sent by the PS Summit
&lt;/h1&gt;

&lt;p&gt;The announcement of the PS Summit powered by PrestaShop &amp;amp; Sylius is probably more significant than it appears.&lt;/p&gt;

&lt;p&gt;Because it tells a story.&lt;/p&gt;

&lt;p&gt;For years, the industry sought to pit platforms against each other.&lt;/p&gt;

&lt;p&gt;Open source vs. SaaS.&lt;/p&gt;

&lt;p&gt;Monolithic vs. headless.&lt;/p&gt;

&lt;p&gt;Legacy vs. modern.&lt;/p&gt;

&lt;p&gt;PrestaShop vs. Sylius.&lt;/p&gt;

&lt;p&gt;Today, the market seems to favor a different logic.&lt;/p&gt;

&lt;p&gt;Cooperation over opposition.&lt;/p&gt;

&lt;p&gt;Complementarity over replacement.&lt;/p&gt;

&lt;p&gt;Building over destruction.&lt;/p&gt;

&lt;p&gt;This approach is less spectacular.&lt;/p&gt;

&lt;p&gt;But it is often more effective.&lt;/p&gt;




&lt;h1&gt;
  
  
  🎯 The Real Lesson of 2026
&lt;/h1&gt;

&lt;p&gt;I don’t think 2026 proved that PrestaShop is perfect.&lt;/p&gt;

&lt;p&gt;No platform is.&lt;/p&gt;

&lt;p&gt;I also don’t think modernity is useless.&lt;/p&gt;

&lt;p&gt;It remains essential.&lt;/p&gt;

&lt;p&gt;Architectures evolve.&lt;/p&gt;

&lt;p&gt;Uses evolve.&lt;/p&gt;

&lt;p&gt;Expectations evolve.&lt;/p&gt;

&lt;p&gt;But 2026 reminded us of something important.&lt;/p&gt;

&lt;p&gt;Technology alone does not create sustainability.&lt;/p&gt;

&lt;p&gt;What creates sustainability is the balance between innovation and stability.&lt;/p&gt;

&lt;p&gt;Between vision and execution.&lt;/p&gt;

&lt;p&gt;Between evolution and continuity.&lt;/p&gt;

&lt;p&gt;While the industry chased the next revolution, PrestaShop continued to do what it has done for years:&lt;/p&gt;

&lt;p&gt;evolve gradually,&lt;/p&gt;

&lt;p&gt;modernize its foundation,&lt;/p&gt;

&lt;p&gt;strengthen its ecosystem,&lt;/p&gt;

&lt;p&gt;and unite its community.&lt;/p&gt;

&lt;p&gt;Today, with Sylius by its side, this balance seems stronger than ever.&lt;/p&gt;




&lt;h1&gt;
  
  
  Conclusion
&lt;/h1&gt;

&lt;p&gt;In 2025, I wrote that stability often beats modernity.&lt;/p&gt;

&lt;p&gt;In 2026, I would say something slightly different.&lt;/p&gt;

&lt;p&gt;Stability alone is not enough.&lt;/p&gt;

&lt;p&gt;Modernity alone is not enough either.&lt;/p&gt;

&lt;p&gt;The platforms that win are those that manage to evolve without losing what made them strong.&lt;/p&gt;

&lt;p&gt;The partnership between PrestaShop and Sylius, the vitality seen at EO2S, and the momentum of the PS Summit tell exactly this story.&lt;/p&gt;

&lt;p&gt;A story less spectacular than trends.&lt;/p&gt;

&lt;p&gt;But much harder to replicate.&lt;/p&gt;

&lt;p&gt;And in software as in e-commerce, it’s often the stories that last that ultimately win.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Nicolas Dabène&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;PrestaShop developer, open-source e-commerce observer, and passionate about systems that outlast hype cycles.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>prestashopecommerce</category>
      <category>agentsia</category>
      <category>architecture</category>
      <category>automatisation</category>
    </item>
    <item>
      <title>ChatGPT Work: The Chatbot Becomes a Work System</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Fri, 10 Jul 2026 16:15:03 +0000</pubDate>
      <link>https://dev.to/ndabene/chatgpt-work-the-chatbot-becomes-a-work-system-1o7h</link>
      <guid>https://dev.to/ndabene/chatgpt-work-the-chatbot-becomes-a-work-system-1o7h</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;TL;DR&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ChatGPT Work is no longer limited to answering: it researches, plans, acts, and produces finalized deliverables.&lt;/li&gt;
&lt;li&gt;The real change doesn’t come solely from GPT-5.6, but from the connection between the model, files, applications, plugins, and scheduled tasks.&lt;/li&gt;
&lt;li&gt;OpenAI now clearly separates three uses: Chat for conversing, Work for producing, and Codex for developing.&lt;/li&gt;
&lt;li&gt;The more autonomous the agent becomes, the more permissions, traceability, and human validation become important.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;For a long time, using ChatGPT meant asking it a question and getting an answer.&lt;/p&gt;

&lt;p&gt;A good answer, sometimes excellent.&lt;/p&gt;

&lt;p&gt;But always just an answer.&lt;/p&gt;

&lt;p&gt;With &lt;a href="https://openai.com/fr-FR/chatgpt-work/" rel="noopener noreferrer"&gt;ChatGPT Work&lt;/a&gt;, OpenAI is trying to move this boundary. The product introduced on July 9, 2026, no longer just wants to participate in a conversation. It aims to take charge of an objective, gather the necessary context, work across multiple tools, and turn it all into a usable result.&lt;/p&gt;

&lt;p&gt;The change may seem subtle.&lt;/p&gt;

&lt;p&gt;It is not.&lt;/p&gt;

&lt;p&gt;The problem was no longer really about generating text. The models could already do that. The problem was everything surrounding it: finding the right information, understanding its context, switching between applications, maintaining a project over time, and producing a truly usable deliverable.&lt;/p&gt;

&lt;p&gt;ChatGPT Work is precisely trying to become this orchestration layer.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 This is not a new conversation mode
&lt;/h2&gt;

&lt;p&gt;OpenAI presents ChatGPT Work as an agent capable of staying on a project for several hours, breaking down an objective into steps, and producing documents, spreadsheets, presentations, reports, or web applications.&lt;/p&gt;

&lt;p&gt;In other words, we no longer just ask it:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“What do you think of this data?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;We can ask it:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Analyze this data, compare it with last month’s results, identify discrepancies, prepare the summary table, and turn the conclusions into a presentation for management.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The difference is not in the length of the prompt.&lt;/p&gt;

&lt;p&gt;It’s in the responsibility entrusted to the system.&lt;/p&gt;

&lt;p&gt;OpenAI also clarifies the separation between its three main experiences in its &lt;a href="https://help.openai.com/en/articles/20001275-chatgpt-work-and-codex" rel="noopener noreferrer"&gt;ChatGPT Work and Codex documentation&lt;/a&gt;:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Experience&lt;/th&gt;
&lt;th&gt;Primary Use&lt;/th&gt;
&lt;th&gt;Expected Outcome&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Chat&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Question, quick search, reflection, or conversation&lt;/td&gt;
&lt;td&gt;An answer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Work&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Long research, analysis, and creation of deliverables&lt;/td&gt;
&lt;td&gt;A finalized work product&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Codex&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Development, testing, commands, and work on a repository&lt;/td&gt;
&lt;td&gt;A verified software modification&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This separation is important.&lt;/p&gt;

&lt;p&gt;Not all requests require an autonomous agent. Asking a simple question in Work would be as relevant as launching a multi-agent architecture to correct a typo.&lt;/p&gt;

&lt;p&gt;Chat remains the space for quick exchanges. Codex retains software work. Work takes the area in between: long, documentary, cross-functional tasks that are often difficult to contain within a single application.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔌 The real product is the connected context
&lt;/h2&gt;

&lt;p&gt;A powerful model without context remains an excellent generator of generalities.&lt;/p&gt;

&lt;p&gt;This is probably the most important point about ChatGPT Work.&lt;/p&gt;

&lt;p&gt;The product can retrieve information from the tools where work already exists: messaging, emails, calendars, document spaces, CRMs, project management tools, or local files on the desktop application. OpenAI also announces over 1,400 plugins capable of providing skills, application connections, and workflow templates.&lt;/p&gt;

&lt;p&gt;The model is therefore no longer isolated in a conversation window.&lt;/p&gt;

&lt;p&gt;Depending on the connections and permissions granted, it can find a decision in Slack, consult a document in Google Drive, analyze data, and then produce a support adapted to the project’s context.&lt;/p&gt;

&lt;p&gt;This is where ChatGPT Work can truly save time.&lt;/p&gt;

&lt;p&gt;Not by writing a sentence faster than a human.&lt;/p&gt;

&lt;p&gt;But by eliminating some of the invisible work that precedes that sentence: searching, opening, copying, cross-referencing, reformatting, and verifying that you’re working with the latest version.&lt;/p&gt;

&lt;p&gt;In many companies, the knowledge already exists. It’s simply scattered across ten tools and twenty conversations.&lt;/p&gt;

&lt;p&gt;ChatGPT Work doesn’t automatically create a perfect corporate memory. It offers a layer capable of mobilizing this knowledge when a task needs it.&lt;/p&gt;

&lt;p&gt;This nuance is essential.&lt;/p&gt;

&lt;p&gt;Connecting tools isn’t enough to structure information. An outdated document remains outdated. A contradictory decision remains contradictory. Overly broad permissions remain dangerous.&lt;/p&gt;

&lt;p&gt;The agent can better leverage context.&lt;/p&gt;

&lt;p&gt;It doesn’t relieve the company of governing it.&lt;/p&gt;

&lt;h2&gt;
  
  
  📄 The output is no longer text, but a deliverable
&lt;/h2&gt;

&lt;p&gt;The promise of ChatGPT Work doesn’t stop at synthesizing information.&lt;/p&gt;

&lt;p&gt;The system can create or modify documents, spreadsheets, presentations, reports, and analyses. It can also use a reference file, adhere to an existing template, and preserve important elements like formulas, structure, tone, or visual identity.&lt;/p&gt;

&lt;p&gt;The &lt;a href="https://help.openai.com/en/articles/20001278-creating-and-editing-documents-spreadsheets-and-presentations-with-chatgpt-work" rel="noopener noreferrer"&gt;official documentation on file creation&lt;/a&gt; clearly shows the shift in logic: you must describe the deliverable’s use, provide sources, specify the output format, and indicate what must remain unchanged.&lt;/p&gt;

&lt;p&gt;You’re no longer just writing a prompt.&lt;/p&gt;

&lt;p&gt;You’re defining a performance contract.&lt;/p&gt;

&lt;p&gt;This way of working closely resembles what developers already know with code agents: giving an objective isn’t enough. You also need to provide context, constraints, validation criteria, and a definition of what “done” means.&lt;/p&gt;

&lt;p&gt;ChatGPT Work generalizes this approach to finance, marketing, sales, operations, or data analysis professions.&lt;/p&gt;

&lt;p&gt;However, the result must remain verifiable.&lt;/p&gt;

&lt;p&gt;A well-presented table can contain a bad formula. A convincing presentation can rely on an outdated source. A perfectly structured report can hide a fragile assumption.&lt;/p&gt;

&lt;p&gt;A finalized deliverable doesn’t mean human validation disappears.&lt;/p&gt;

&lt;p&gt;It means humans can shift their attention from creation to verification and decision-making.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⏱️ Scheduled tasks transform the assistant into a process
&lt;/h2&gt;

&lt;p&gt;Creating a report once is useful.&lt;/p&gt;

&lt;p&gt;Maintaining it automatically is much more interesting.&lt;/p&gt;

&lt;p&gt;With Scheduled Tasks, ChatGPT Work can execute a one-time action, repeat a task on a schedule, react to an event, or monitor changes. It then becomes possible to ask the system to track new customer feedback, update an agenda based on the week’s exchanges, or generate a report when data changes.&lt;/p&gt;

&lt;p&gt;This is where we truly leave the chatbot behind.&lt;/p&gt;

&lt;p&gt;A conversation waits for a prompt.&lt;/p&gt;

&lt;p&gt;A process continues to exist between prompts.&lt;/p&gt;

&lt;p&gt;For an e-commerce team, you could imagine recurring incident tracking, a weekly support feedback summary, or updating a risk table based on connected tools.&lt;/p&gt;

&lt;p&gt;But automating a bad process doesn’t make it better.&lt;/p&gt;

&lt;p&gt;Before scheduling a task, you still need to define its frequency, sources, stop conditions, recipients, authorized actions, and cases requiring human validation.&lt;/p&gt;

&lt;p&gt;Without this, you don’t gain an autonomous assistant.&lt;/p&gt;

&lt;p&gt;You gain a recurring error.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛡️ More autonomy means more governance
&lt;/h2&gt;

&lt;p&gt;The presentation page emphasizes ChatGPT Work’s ability to act within a company’s tools. This is obviously what makes the product interesting.&lt;/p&gt;

&lt;p&gt;It’s also what increases its risk level.&lt;/p&gt;

&lt;p&gt;An agent capable of reading a file, modifying a spreadsheet, consulting a CRM, or triggering an action should not have more rights than the task requires.&lt;/p&gt;

&lt;p&gt;OpenAI indicates that Enterprise and Edu administrators can control authorized users, accessible context, available connections, and permitted actions. The browser, network access, plugins, and certain sensitive operations can also be restricted. A self-review mechanism should examine important actions before execution.&lt;/p&gt;

&lt;p&gt;These protections are necessary.&lt;/p&gt;

&lt;p&gt;They don’t replace a clear internal policy.&lt;/p&gt;

&lt;p&gt;The right question isn’t:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Can ChatGPT Work access our CRM?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The real question becomes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Which data should it access, for which task, for how long, and with what revocation possibilities?”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A serious agent-based architecture always relies on the same principles: minimal permissions, traceable actions, isolated secrets, risk-proportionate validation, and the ability to interrupt the workflow.&lt;/p&gt;

&lt;p&gt;ChatGPT Work makes agent-based systems accessible to more professions.&lt;/p&gt;

&lt;p&gt;It therefore also makes its governance essential for more teams.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚠️ A powerful launch, but still fragmented
&lt;/h2&gt;

&lt;p&gt;We must finally distinguish the product’s vision from its state at launch.&lt;/p&gt;

&lt;p&gt;As of July 10, 2026, ChatGPT Work is being rolled out according to plans and platforms. The web and mobile experience works in the cloud, while the desktop application can access local files and applications with user permission.&lt;/p&gt;

&lt;p&gt;Continuity isn’t yet complete: Work conversations created in the cloud don’t initially appear in Work on desktop, and local projects remain on the relevant machine. The web and mobile versions can’t directly access computer files.&lt;/p&gt;

&lt;p&gt;File creation also depends on format, plan, and workspace settings. Google Docs, Sheets, and Slides are supported when the corresponding applications are connected. Excel can be controlled via its add-in, but PowerPoint isn’t integrated into the desktop Work flow at launch.&lt;/p&gt;

&lt;p&gt;These aren’t details.&lt;/p&gt;

&lt;p&gt;They determine where context is located, where deliverables are saved, and what a workflow can truly automate.&lt;/p&gt;

&lt;p&gt;It’s therefore best to avoid designing critical processes now by assuming all surfaces, files, and conversations are perfectly synchronized.&lt;/p&gt;

&lt;p&gt;The direction is clear.&lt;/p&gt;

&lt;p&gt;The experience is still under construction.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 What ChatGPT Work really changes for businesses
&lt;/h2&gt;

&lt;p&gt;The main change isn’t that every employee will be able to generate more content.&lt;/p&gt;

&lt;p&gt;That would be a very limited view of the product.&lt;/p&gt;

&lt;p&gt;The challenge is to transform certain repetitive and cross-functional tasks into explicit workflows capable of gathering context, producing a result, and maintaining that result over time.&lt;/p&gt;

&lt;p&gt;This forces companies to better define their own operations.&lt;/p&gt;

&lt;p&gt;Which sources are authoritative? Who owns the decision? Which template must be followed? What can the agent modify? What evidence must accompany the result? At what point should a human take over?&lt;/p&gt;

&lt;p&gt;These are organizational questions before being artificial intelligence questions.&lt;/p&gt;

&lt;p&gt;The teams that will get the most value from ChatGPT Work probably won’t be those that write the most impressive prompts.&lt;/p&gt;

&lt;p&gt;They’ll be those that know how to turn their know-how into usable context, controlled permissions, validation criteria, and observable processes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;ChatGPT Work isn’t just ChatGPT with an extra button.&lt;/p&gt;

&lt;p&gt;It’s the materialization of a deeper change: AI no longer just wants to participate in work. It wants to execute part of it.&lt;/p&gt;

&lt;p&gt;The model answered.&lt;/p&gt;

&lt;p&gt;The agent produces.&lt;/p&gt;

&lt;p&gt;The work system, however, gathers the context, tools, files, automations, and controls needed to reach the result.&lt;/p&gt;

&lt;p&gt;This evolution can truly increase teams’ capacity. But it won’t eliminate the need for framing, responsibility, or human validation.&lt;/p&gt;

&lt;p&gt;On the contrary.&lt;/p&gt;

&lt;p&gt;The more capable AI becomes of acting, the more precisely the company must know where it can act, with what rights, and according to which rules.&lt;/p&gt;

&lt;p&gt;The next competitive advantage won’t come from the number of tasks entrusted to ChatGPT Work.&lt;/p&gt;

&lt;p&gt;It will come from the quality of the systems built around those tasks.&lt;/p&gt;




&lt;h2&gt;
  
  
  Official Sources
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://openai.com/fr-FR/chatgpt-work/" rel="noopener noreferrer"&gt;ChatGPT Work — OpenAI&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://openai.com/index/chatgpt-for-your-most-ambitious-work/" rel="noopener noreferrer"&gt;ChatGPT Work Introduction — OpenAI, July 9, 2026&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://help.openai.com/en/articles/20001275-chatgpt-work-and-codex" rel="noopener noreferrer"&gt;ChatGPT Work and Codex — OpenAI Help Center&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://help.openai.com/en/articles/20001278-creating-and-editing-documents-spreadsheets-and-presentations-with-chatgpt-work" rel="noopener noreferrer"&gt;Creating Documents, Spreadsheets, and Presentations with ChatGPT Work&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>prestashopecommerce</category>
      <category>agentsia</category>
      <category>ecommerce</category>
      <category>llmmodeles</category>
    </item>
    <item>
      <title>5 Claude Code Features That Many Developers Underutilize</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Tue, 30 Jun 2026 16:00:06 +0000</pubDate>
      <link>https://dev.to/ndabene/5-claude-code-features-that-many-developers-underutilize-5g74</link>
      <guid>https://dev.to/ndabene/5-claude-code-features-that-many-developers-underutilize-5g74</guid>
      <description>&lt;p&gt;Most developers use Claude Code as a simple assistant capable of generating code.&lt;/p&gt;

&lt;p&gt;Yet, the biggest gains don’t come from code generation itself.&lt;/p&gt;

&lt;p&gt;They come from how you structure the context, protect the project, delegate tasks, and manage the agent’s working memory.&lt;/p&gt;

&lt;p&gt;After several weeks of intensive use, five features stand out: &lt;code&gt;CLAUDE.md&lt;/code&gt;, Hooks, &lt;code&gt;ultrathink&lt;/code&gt;, &lt;code&gt;/compact&lt;/code&gt;, and Subagents.&lt;/p&gt;

&lt;p&gt;Used together, they transform Claude Code from a simple conversational tool into a true AI-assisted development environment.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 The Problem Is Almost Never the Model
&lt;/h2&gt;

&lt;p&gt;When a developer claims that Claude Code produced bad code, the issue rarely lies with the model itself.&lt;/p&gt;

&lt;p&gt;In most cases, Claude works with incomplete context, implicit rules it doesn’t know, or memory cluttered by hours of exchanges.&lt;/p&gt;

&lt;p&gt;This is exactly the same problem as with a human developer joining a project without documentation, conventions, or an overview.&lt;/p&gt;

&lt;p&gt;The difference is that a human eventually understands the environment over weeks.&lt;/p&gt;

&lt;p&gt;The AI, however, starts almost from scratch with each session.&lt;/p&gt;

&lt;p&gt;This is why the most important features of Claude Code aren’t those that generate code.&lt;/p&gt;

&lt;p&gt;They’re the ones that structure its working environment.&lt;/p&gt;




&lt;h2&gt;
  
  
  📄 CLAUDE.md: The File That Avoids Repeating the Same Things
&lt;/h2&gt;

&lt;p&gt;Many teams spend their time reminding the agent of the same information:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;how to run tests;&lt;/li&gt;
&lt;li&gt;which commands to use;&lt;/li&gt;
&lt;li&gt;which conventions to follow;&lt;/li&gt;
&lt;li&gt;which architecture to adhere to.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is a considerable waste of time.&lt;/p&gt;

&lt;p&gt;Claude Code offers a much simpler approach: place a &lt;code&gt;CLAUDE.md&lt;/code&gt; file at the root of the project.&lt;/p&gt;

&lt;p&gt;At each startup, the agent automatically reads this document and immediately retrieves the necessary context.&lt;/p&gt;

&lt;p&gt;The benefit isn’t just about saving time.&lt;/p&gt;

&lt;p&gt;The real advantage is reducing response variability.&lt;/p&gt;

&lt;p&gt;When development rules are written in black and white, Claude no longer needs to deduce them. It applies them directly.&lt;/p&gt;

&lt;p&gt;For complex projects, especially those with specific architectures or strong business conventions, this simple file quickly becomes one of the most valuable assets in the project.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔒 Hooks: When Rules Become Automatic
&lt;/h2&gt;

&lt;p&gt;Another common pitfall is asking the AI to follow certain rules while hoping it never forgets them.&lt;/p&gt;

&lt;p&gt;This is rarely a reliable strategy.&lt;/p&gt;

&lt;p&gt;Hooks allow you to move these rules out of the conversation to make them automatic.&lt;/p&gt;

&lt;p&gt;Imagine a project containing critical files, environment variables, or infrastructure secrets.&lt;/p&gt;

&lt;p&gt;Instead of constantly reminding Claude never to modify these elements, it becomes possible to technically block these operations.&lt;/p&gt;

&lt;p&gt;The same principle applies to code quality.&lt;/p&gt;

&lt;p&gt;Every modification can automatically trigger a linter, formatter, or a battery of checks before validation.&lt;/p&gt;

&lt;p&gt;This shifts from a trust-based logic to a control-based one.&lt;/p&gt;

&lt;p&gt;And as in any mature software architecture, automatic controls are generally more reliable than human reminders.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤔 Ultrathink: A Resource to Use Sparingly
&lt;/h2&gt;

&lt;p&gt;One of the most common mistakes is using deep reasoning capabilities for absolutely everything.&lt;/p&gt;

&lt;p&gt;It’s tempting.&lt;/p&gt;

&lt;p&gt;When a feature promises more reasoning, the instinct is to enable it permanently.&lt;/p&gt;

&lt;p&gt;Yet, this is often counterproductive.&lt;/p&gt;

&lt;p&gt;Requesting a complex architectural analysis to rename a variable is like convening the entire management committee to choose a button’s color.&lt;/p&gt;

&lt;p&gt;Additional cognitive resources should be reserved for situations where they truly add value.&lt;/p&gt;

&lt;p&gt;Architecture overhauls.&lt;/p&gt;

&lt;p&gt;Particularly difficult debugging.&lt;/p&gt;

&lt;p&gt;Risky technical migrations.&lt;/p&gt;

&lt;p&gt;Analysis of a distributed system.&lt;/p&gt;

&lt;p&gt;In these contexts, advanced reasoning mode can save considerable time.&lt;/p&gt;

&lt;p&gt;For daily tasks, it mostly slows execution and increases context consumption.&lt;/p&gt;

&lt;p&gt;As often in engineering, maximum power isn’t the optimal solution. The right strategy is to use the right power at the right time.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧹 /compact: The Feature Many Discover Too Late
&lt;/h2&gt;

&lt;p&gt;After several hours of work, a Claude Code session inevitably accumulates noise.&lt;/p&gt;

&lt;p&gt;Logs.&lt;/p&gt;

&lt;p&gt;Already resolved errors.&lt;/p&gt;

&lt;p&gt;Abandoned hypotheses.&lt;/p&gt;

&lt;p&gt;File excerpts that are no longer useful.&lt;/p&gt;

&lt;p&gt;All of this consumes context and eventually degrades response quality.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;/compact&lt;/code&gt; command addresses this problem precisely.&lt;/p&gt;

&lt;p&gt;It allows condensing the history while retaining only the truly important information.&lt;/p&gt;

&lt;p&gt;But the mistake is running the command without prior thought.&lt;/p&gt;

&lt;p&gt;The real trick is to explicitly guide the compaction.&lt;/p&gt;

&lt;p&gt;Specify what should be kept.&lt;/p&gt;

&lt;p&gt;Recall architectural decisions made.&lt;/p&gt;

&lt;p&gt;Identify the project’s critical constraints.&lt;/p&gt;

&lt;p&gt;The difference is huge.&lt;/p&gt;

&lt;p&gt;Instead of getting a generic summary, you create a working memory optimized for the rest of the session.&lt;/p&gt;




&lt;h2&gt;
  
  
  👥 Subagents: The Feature That Scales
&lt;/h2&gt;

&lt;p&gt;When a project becomes large, context becomes a precious resource.&lt;/p&gt;

&lt;p&gt;Every file read, every log analyzed, and every library explored consumes part of this resource.&lt;/p&gt;

&lt;p&gt;Subagents provide an elegant solution to this problem.&lt;/p&gt;

&lt;p&gt;Rather than cluttering the main session with thousands of lines of logs or a full exploration of an external dependency, Claude can delegate this work to a secondary agent.&lt;/p&gt;

&lt;p&gt;The latter performs its research in its own context space and returns with a usable summary.&lt;/p&gt;

&lt;p&gt;The parallel with an engineering team is interesting.&lt;/p&gt;

&lt;p&gt;The lead developer doesn’t necessarily read every line of documentation for every system component.&lt;/p&gt;

&lt;p&gt;They delegate certain investigations to specialists and only retrieve the useful conclusions.&lt;/p&gt;

&lt;p&gt;Subagents apply this exact principle to the world of AI agents.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 The Real Productivity Multiplier
&lt;/h2&gt;

&lt;p&gt;These features may seem independent.&lt;/p&gt;

&lt;p&gt;In reality, they form a coherent system.&lt;/p&gt;

&lt;p&gt;The &lt;code&gt;CLAUDE.md&lt;/code&gt; file provides context.&lt;/p&gt;

&lt;p&gt;Hooks ensure rule compliance.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ultrathink&lt;/code&gt; intervenes when complexity demands it.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;/compact&lt;/code&gt; maintains a clean context.&lt;/p&gt;

&lt;p&gt;Subagents absorb secondary tasks without polluting the main session.&lt;/p&gt;

&lt;p&gt;Individually, each brings measurable gains.&lt;/p&gt;

&lt;p&gt;Together, they completely change how you work with Claude Code.&lt;/p&gt;

&lt;p&gt;Most developers are still trying to optimize prompts.&lt;/p&gt;

&lt;p&gt;The most advanced teams are already optimizing the environment in which the agent works.&lt;/p&gt;

&lt;p&gt;And that’s probably where the real competitive advantage lies today.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;— Nicolas Dabène&lt;/em&gt;&lt;/p&gt;

</description>
      <category>developpementarchitecture</category>
      <category>agentsia</category>
      <category>api</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Why You Should Almost Never Send a PDF, DOCX, or Image to ChatGPT or Claude</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Sat, 27 Jun 2026 16:45:02 +0000</pubDate>
      <link>https://dev.to/ndabene/why-you-should-almost-never-send-a-pdf-docx-or-image-to-chatgpt-or-claude-2843</link>
      <guid>https://dev.to/ndabene/why-you-should-almost-never-send-a-pdf-docx-or-image-to-chatgpt-or-claude-2843</guid>
      <description>&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;Most users try to reduce their AI bill by switching models.&lt;/p&gt;

&lt;p&gt;GPT or Claude?&lt;/p&gt;

&lt;p&gt;Pro version or API?&lt;/p&gt;

&lt;p&gt;Smaller or larger context?&lt;/p&gt;

&lt;p&gt;Yet in many cases, the real problem isn't the model.&lt;/p&gt;

&lt;p&gt;The problem is what you send to it.&lt;/p&gt;

&lt;p&gt;PDF, DOCX, PowerPoint, screenshots, images... all these formats were designed for humans. Not for LLMs.&lt;/p&gt;

&lt;p&gt;Result:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;more tokens consumed;&lt;/li&gt;
&lt;li&gt;more context wasted;&lt;/li&gt;
&lt;li&gt;higher costs;&lt;/li&gt;
&lt;li&gt;sometimes even less relevant responses.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The best optimization is often not changing the model.&lt;/p&gt;

&lt;p&gt;It's preparing documents better before sending them.&lt;/p&gt;




&lt;h1&gt;
  
  
  🚨 The Hidden Token Tax
&lt;/h1&gt;

&lt;p&gt;When you send a document to an LLM, it doesn't "read" the file like you do.&lt;/p&gt;

&lt;p&gt;Before even analyzing the content, it must understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;where the text begins;&lt;/li&gt;
&lt;li&gt;where the text ends;&lt;/li&gt;
&lt;li&gt;which elements are headings;&lt;/li&gt;
&lt;li&gt;which elements are paragraphs;&lt;/li&gt;
&lt;li&gt;which areas represent a table;&lt;/li&gt;
&lt;li&gt;which parts are decorative;&lt;/li&gt;
&lt;li&gt;in what order the elements should be read.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In other words, some of your tokens are used solely to reconstruct the document's structure.&lt;/p&gt;

&lt;p&gt;So you're paying for noise.&lt;/p&gt;




&lt;h1&gt;
  
  
  📄 Why PDFs Are Particularly Inefficient
&lt;/h1&gt;

&lt;p&gt;PDF is probably the world's most popular document format.&lt;/p&gt;

&lt;p&gt;But it was designed for printing.&lt;/p&gt;

&lt;p&gt;Not for artificial intelligence.&lt;/p&gt;

&lt;p&gt;A PDF mainly describes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;positions;&lt;/li&gt;
&lt;li&gt;coordinates;&lt;/li&gt;
&lt;li&gt;graphic blocks;&lt;/li&gt;
&lt;li&gt;layout elements.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For a human, this is perfect.&lt;/p&gt;

&lt;p&gt;For a model, it often requires preliminary reconstruction work:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;determining the reading order;&lt;/li&gt;
&lt;li&gt;reconstructing tables;&lt;/li&gt;
&lt;li&gt;identifying headings;&lt;/li&gt;
&lt;li&gt;understanding columns;&lt;/li&gt;
&lt;li&gt;linking captions to images.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Some of the context is consumed before the business content is even analyzed.&lt;/p&gt;




&lt;h1&gt;
  
  
  📝 DOCX Files Aren't Much Better
&lt;/h1&gt;

&lt;p&gt;Many think DOCX is naturally suited for LLMs.&lt;/p&gt;

&lt;p&gt;That's not really the case.&lt;/p&gt;

&lt;p&gt;A DOCX file contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;text;&lt;/li&gt;
&lt;li&gt;styles;&lt;/li&gt;
&lt;li&gt;metadata;&lt;/li&gt;
&lt;li&gt;layout information;&lt;/li&gt;
&lt;li&gt;XML representation elements.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even if the cost is generally lower than that of a complex PDF, a significant portion of the data sent doesn't directly contribute to understanding the document's business content.&lt;/p&gt;




&lt;h1&gt;
  
  
  🖼️ Images Are Often the Worst Case Scenario
&lt;/h1&gt;

&lt;p&gt;The situation becomes even more costly when sending:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;screenshots;&lt;/li&gt;
&lt;li&gt;photos;&lt;/li&gt;
&lt;li&gt;scanned documents;&lt;/li&gt;
&lt;li&gt;slides exported as images.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Before understanding the content, the model must:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;detect text;&lt;/li&gt;
&lt;li&gt;perform OCR;&lt;/li&gt;
&lt;li&gt;identify important areas;&lt;/li&gt;
&lt;li&gt;reconstruct the logical structure.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You're asking the model to solve a vision problem before even addressing the business problem.&lt;/p&gt;

&lt;p&gt;It's like photographing a sheet of paper and then asking someone to copy it before reading it.&lt;/p&gt;




&lt;h1&gt;
  
  
  📊 Not All Formats Are Equal
&lt;/h1&gt;

&lt;p&gt;If the goal is to efficiently transmit information to an LLM, some formats are much better suited than others.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Format&lt;/th&gt;
&lt;th&gt;Useful Signal&lt;/th&gt;
&lt;th&gt;Structural Noise&lt;/th&gt;
&lt;th&gt;Token Impact&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Markdown&lt;/td&gt;
&lt;td&gt;Very High&lt;/td&gt;
&lt;td&gt;Low&lt;/td&gt;
&lt;td&gt;Excellent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;TXT&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;Very Low&lt;/td&gt;
&lt;td&gt;Excellent&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;DOCX&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Fair&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Native PDF&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;High&lt;/td&gt;
&lt;td&gt;Poor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scanned PDF&lt;/td&gt;
&lt;td&gt;Low&lt;/td&gt;
&lt;td&gt;Very High&lt;/td&gt;
&lt;td&gt;Very Poor&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Image&lt;/td&gt;
&lt;td&gt;Low&lt;/td&gt;
&lt;td&gt;Extremely High&lt;/td&gt;
&lt;td&gt;Catastrophic&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This table summarizes a simple principle:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The closer a format is to structured plain text, the more efficient it is for an LLM.&lt;/strong&gt;&lt;/p&gt;




&lt;h1&gt;
  
  
  💰 The False Debate: Changing Models
&lt;/h1&gt;

&lt;p&gt;Most discussions revolve around questions like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Which model consumes the least?&lt;/p&gt;

&lt;p&gt;Which provider is the cheapest?&lt;/p&gt;

&lt;p&gt;Which subscription offers the most context?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;These questions matter.&lt;/p&gt;

&lt;p&gt;But they often come too early.&lt;/p&gt;

&lt;p&gt;Because before optimizing the engine, you need to optimize the fuel.&lt;/p&gt;

&lt;p&gt;Reducing a model's cost by 30% is interesting.&lt;/p&gt;

&lt;p&gt;Reducing the tokens sent with each request by 30 to 40% is often much more cost-effective.&lt;/p&gt;

&lt;p&gt;And it generally improves response quality.&lt;/p&gt;




&lt;h1&gt;
  
  
  🚀 A Smarter Approach: Preparing Documents for LLMs
&lt;/h1&gt;

&lt;p&gt;For a few months now, a new category of tools has begun to emerge.&lt;/p&gt;

&lt;p&gt;Their goal isn't to create a new model.&lt;/p&gt;

&lt;p&gt;Their goal is to better represent documents for existing models.&lt;/p&gt;

&lt;p&gt;This is exactly the philosophy behind the DocLang project:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/doclang-project/doclang" rel="noopener noreferrer"&gt;https://github.com/doclang-project/doclang&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;DocLang is an open-source project supported by the Linux Foundation AI &amp;amp; Data that starts with a simple observation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PDF was designed for printing;&lt;/li&gt;
&lt;li&gt;DOCX for editing;&lt;/li&gt;
&lt;li&gt;HTML for display;&lt;/li&gt;
&lt;li&gt;none of these formats were designed for LLMs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DocLang's goal is therefore to provide an intermediate representation better suited to artificial intelligence.&lt;/p&gt;

&lt;p&gt;Specifically, DocLang preserves:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;document hierarchy;&lt;/li&gt;
&lt;li&gt;headings;&lt;/li&gt;
&lt;li&gt;sections;&lt;/li&gt;
&lt;li&gt;tables;&lt;/li&gt;
&lt;li&gt;metadata;&lt;/li&gt;
&lt;li&gt;logical relationships between elements.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;While removing much of the noise related to visual presentation.&lt;/p&gt;

&lt;p&gt;The result:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;more compact documents;&lt;/li&gt;
&lt;li&gt;fewer tokens consumed;&lt;/li&gt;
&lt;li&gt;better content understanding;&lt;/li&gt;
&lt;li&gt;more effective context for AI agents and RAG pipelines.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;According to figures published by the project, this approach significantly reduces the volume of tokens needed to represent a document while preserving its semantic structure.&lt;/p&gt;




&lt;h1&gt;
  
  
  🎯 The Real AI Challenge in 2026
&lt;/h1&gt;

&lt;p&gt;For a long time, we optimized infrastructure.&lt;/p&gt;

&lt;p&gt;Then we optimized models.&lt;/p&gt;

&lt;p&gt;The next step is to optimize data.&lt;/p&gt;

&lt;p&gt;In many AI projects, the biggest waste doesn't come from the model used.&lt;/p&gt;

&lt;p&gt;It comes from how documents are prepared before ingestion.&lt;/p&gt;

&lt;p&gt;Before searching for the next miracle model:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;look at your prompts;&lt;/li&gt;
&lt;li&gt;look at your workflows;&lt;/li&gt;
&lt;li&gt;look at the files you send.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because the easiest way to reduce your AI bill is often not to change models.&lt;/p&gt;

&lt;p&gt;It's to stop sending it noise.&lt;/p&gt;

</description>
      <category>intelligenceartificielle</category>
      <category>agentsia</category>
      <category>api</category>
      <category>automatisation</category>
    </item>
    <item>
      <title>E-commerce Compliance: Why Some PrestaShop Modules Become Essential Building Blocks</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Sat, 20 Jun 2026 08:00:02 +0000</pubDate>
      <link>https://dev.to/ndabene/e-commerce-compliance-why-some-prestashop-modules-become-essential-building-blocks-31li</link>
      <guid>https://dev.to/ndabene/e-commerce-compliance-why-some-prestashop-modules-become-essential-building-blocks-31li</guid>
      <description>&lt;h2&gt;
  
  
  Introduction: E-commerce Enters a New Phase
&lt;/h2&gt;

&lt;p&gt;For a long time, the success of an online store has been associated with highly visible aspects: catalog performance, checkout optimization, SEO, or traffic acquisition. These elements remain fundamentally important, but modern online commerce now relies on a much broader set of constraints.&lt;/p&gt;

&lt;p&gt;An e-commerce store is no longer just a showcase for selling products. It is an environment where customer experience, regulatory obligations, security, data protection, and technical quality converge. Even the slightest regulatory change can have concrete consequences on how a merchant must design their user journey.&lt;/p&gt;

&lt;p&gt;The right of withdrawal is a particularly interesting example of this evolution. On paper, it is an obligation that merchants have long been aware of. In practice, integrating it into a PrestaShop store requires considering multiple dimensions: customer information, accessibility of the action, user journey, and consistency with the existing technical architecture.&lt;/p&gt;

&lt;p&gt;It is in this context that certain modules take on particular value. Not because they add a spectacular feature, but because they transform a complex constraint into a simple experience for both the merchant and their customers.&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;MedRetractation&lt;/strong&gt; module, developed by &lt;strong&gt;Mediacom87&lt;/strong&gt;, perfectly illustrates this approach.&lt;/p&gt;

&lt;p&gt;Module link: &lt;a href="https://www.prestatoolbox.fr/fonctionnalites-front-office/486-medretractation-bouton-de-retractation-legal-conformite-au-droit-de-retractation.html" rel="noopener noreferrer"&gt;https://www.prestatoolbox.fr/fonctionnalites-front-office/486-medretractation-bouton-de-retractation-legal-conformite-au-droit-de-retractation.html&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  When Compliance Becomes a Development Issue
&lt;/h2&gt;

&lt;p&gt;Compliance in e-commerce has often been seen as a purely legal matter. However, in an online store, a regulatory obligation almost always ends up becoming a technical problem.&lt;/p&gt;

&lt;p&gt;Information must be displayed in the right place. An action must be accessible. A journey must be adapted. Data must be stored or displayed correctly. Behind every business rule lies an implementation.&lt;/p&gt;

&lt;p&gt;This is precisely where the expertise of a PrestaShop editor becomes crucial.&lt;/p&gt;

&lt;p&gt;The merchant’s role is not to analyze regulatory changes, understand the subtleties of hooks, modify their theme, or maintain compatibility with different versions of the solution. Their job is to run their business.&lt;/p&gt;

&lt;p&gt;The editor’s role is to take this complexity and make it invisible.&lt;/p&gt;

&lt;p&gt;A good module is therefore not just an additional feature installed in a store. It is a layer of expertise that solves a specific problem without requiring the merchant to become a developer.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Invisible Work Behind a PrestaShop Module
&lt;/h2&gt;

&lt;p&gt;What is interesting about the work done by editors like Mediacom87 is that the real value of the product is not limited to what is visible in the interface.&lt;/p&gt;

&lt;p&gt;Creating a PrestaShop module that meets a business need requires understanding multiple things simultaneously: the platform, merchant habits, technical constraints, version updates, and end-user expectations.&lt;/p&gt;

&lt;p&gt;The difficulty is not just making a feature work today. The real challenge is creating a solution that continues to work tomorrow.&lt;/p&gt;

&lt;p&gt;In the PrestaShop ecosystem, maintenance is essential. A store can remain in production for several years. A module must therefore evolve with it, keep up with version changes, and avoid becoming technical debt.&lt;/p&gt;

&lt;p&gt;This is part of the editors' work that often goes unnoticed when everything functions correctly.&lt;/p&gt;

&lt;p&gt;And ultimately, this might be the best sign of quality: when complexity disappears entirely for the end user.&lt;/p&gt;

&lt;h2&gt;
  
  
  MedRetractation: An Example of a Problem-Focused Module
&lt;/h2&gt;

&lt;p&gt;What I find interesting about MedRetractation is not just the functionality it offers, but the problem it solves.&lt;/p&gt;

&lt;p&gt;The module does not seek to transform the shopping experience with an additional marketing feature. It addresses a concrete need for merchants: properly integrating a legal obligation into the customer journey.&lt;/p&gt;

&lt;p&gt;This approach represents a current trend in the e-commerce ecosystem. The best tools are not always those that add the most features, but those that reduce risks, simplify operations, and allow merchants to focus on their business.&lt;/p&gt;

&lt;p&gt;In an environment where regulatory and technical expectations are increasing, these specialized building blocks are gradually becoming indispensable.&lt;/p&gt;

&lt;h2&gt;
  
  
  PrestaShop’s Strength Also Lies in Its Editors
&lt;/h2&gt;

&lt;p&gt;One of PrestaShop’s great strengths is its ecosystem. The platform allows merchants to adapt their store to a wide variety of needs thanks to the modules developed around it.&lt;/p&gt;

&lt;p&gt;But this ecosystem only works because editors invest time in creating and maintaining specialized solutions.&lt;/p&gt;

&lt;p&gt;Behind every useful module, there is an understanding of the field: the problems merchants face, the technical constraints, and the necessary updates to keep a store reliable over time.&lt;/p&gt;

&lt;p&gt;MedRetractation is a good example of this category of modules that do not necessarily seek to be the most visible but address a real operational need.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion: Value Often Lies in the Problems No One Wants to Handle
&lt;/h2&gt;

&lt;p&gt;The future of e-commerce will not be built solely around new visible features. It will also depend on the ability to properly manage all the complexity behind an online sale.&lt;/p&gt;

&lt;p&gt;Compliance, security, and reliability are becoming differentiating factors.&lt;/p&gt;

&lt;p&gt;In this context, the role of PrestaShop editors becomes even more important: transforming sometimes complex constraints into simple, maintained, and accessible solutions.&lt;/p&gt;

&lt;p&gt;This is exactly the kind of work that helps make an ecosystem like PrestaShop sustainable.&lt;/p&gt;

</description>
      <category>prestashopecommerce</category>
      <category>ecommerce</category>
      <category>llmmodeles</category>
      <category>prestashop</category>
    </item>
    <item>
      <title>Contrib.: When Media Must Evolve with Communities</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Thu, 18 Jun 2026 03:45:03 +0000</pubDate>
      <link>https://dev.to/ndabene/contrib-when-media-must-evolve-with-communities-4j61</link>
      <guid>https://dev.to/ndabene/contrib-when-media-must-evolve-with-communities-4j61</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;We live in a time when access to information has never been easier. In just a few seconds, it’s possible to find an analysis, a video, a podcast, or a summary on almost any topic. Yet, this abundance creates a new challenge: it’s no longer information that’s lacking, but our ability to understand it, sort through it, and give it meaning.&lt;/p&gt;

&lt;p&gt;Current technological transformations, particularly around artificial intelligence, are profoundly changing our relationship with knowledge. Tools are becoming increasingly powerful and accessible, but the real value is gradually shifting toward the ability to analyze, question, and participate in the decisions that will shape our future.&lt;/p&gt;

&lt;p&gt;It’s in this context that the &lt;a href="https://contrib-podcast.fr/" rel="noopener noreferrer"&gt;Contrib.&lt;/a&gt; initiative is interesting. The project doesn’t position itself solely as a podcast or a media outlet covering tech, business, and digital sovereignty. It seeks to experiment with a different relationship between those who produce information and those who consume it.&lt;/p&gt;

&lt;h2&gt;
  
  
  From Audience to Community
&lt;/h2&gt;

&lt;p&gt;For a long time, the traditional media model relied on a fairly simple relationship: people produced content, and an audience came to consume it. This model enabled the creation of many benchmarks, but the digital world has deeply changed expectations.&lt;/p&gt;

&lt;p&gt;Today, a community no longer just wants to receive information. It wants to understand, exchange, challenge ideas, and sometimes participate directly in shaping the topics. The value is no longer found solely in the published content but also in the interactions it sparks.&lt;/p&gt;

&lt;p&gt;This is precisely what makes &lt;a href="https://contrib-podcast.fr/" rel="noopener noreferrer"&gt;Contrib.&lt;/a&gt;’s approach so interesting. The project’s name itself carries an intention: to put contribution at the center. The idea isn’t just to create a media outlet that talks about transformations but a space where those involved can participate in the reflection.&lt;/p&gt;

&lt;p&gt;This approach echoes certain principles found in the open-source world. A project doesn’t progress solely thanks to its initial creators but through all the people who use it, test it, propose improvements, and enrich the ecosystem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Technology Advances, but Understanding Remains Essential
&lt;/h2&gt;

&lt;p&gt;Artificial intelligence perfectly illustrates this evolution. Models are now capable of producing text, images, code, or analyses at an impressive speed. But having a powerful tool doesn’t automatically mean knowing what to do with it.&lt;/p&gt;

&lt;p&gt;The central question is no longer just: &lt;em&gt;"What technology is coming?"&lt;/em&gt; It has become: &lt;em&gt;"How will we intelligently integrate it into our professions, businesses, and society?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Specialized media thus have an evolving role. Their mission can no longer be limited to reporting on new developments. They must help us understand the implications, provide context, and enable people to step back from rapid changes.&lt;/p&gt;

&lt;p&gt;This is also why topics around digital sovereignty are becoming important. Sovereignty isn’t just about infrastructure or data. It’s also about our collective ability to understand the tools we use and to avoid letting only a few actors decide the direction we take.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building the Reflection Spaces of the Future
&lt;/h2&gt;

&lt;p&gt;The next generation of media will likely be defined less by the quantity of content produced than by the quality of the communities built around that content.&lt;/p&gt;

&lt;p&gt;In a world where artificial intelligence will be able to generate ever more information, what will become rare is high-quality human exchange: discussions, shared experiences, constructive disagreements, and the ability to develop a common vision.&lt;/p&gt;

&lt;p&gt;Initiatives like &lt;a href="https://contrib-podcast.fr/" rel="noopener noreferrer"&gt;Contrib.&lt;/a&gt; are exploring this direction by trying to bring media closer to its community. Content becomes a starting point, not an end in itself. Discussion becomes an integral part of the value created.&lt;/p&gt;

&lt;p&gt;This is an interesting evolution because major technological transformations won’t be defined solely by the tools we use. They’ll also be defined by the spaces we build to discuss them and the collective decisions we make.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;We cannot stop the transformations that are coming. Artificial intelligence, new technologies, and new economic models will continue to evolve.&lt;/p&gt;

&lt;p&gt;However, we can choose our stance in the face of these changes. We can be mere spectators, or we can actively participate in shaping the future.&lt;/p&gt;

&lt;p&gt;The approach taken by &lt;a href="https://contrib-podcast.fr/" rel="noopener noreferrer"&gt;Contrib.&lt;/a&gt; offers an interesting perspective: in a world where information is becoming abundant, contribution may become a new form of value.&lt;/p&gt;

&lt;p&gt;Understanding the future isn’t just about observing it.&lt;/p&gt;

&lt;p&gt;It’s also about taking part in building it.&lt;/p&gt;

</description>
      <category>seovisibilite</category>
      <category>seogeo</category>
    </item>
    <item>
      <title>The Sovereignty of E-Commerce: Why Open Source Could Be Tomorrow’s True Answer</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Wed, 17 Jun 2026 16:30:02 +0000</pubDate>
      <link>https://dev.to/ndabene/the-sovereignty-of-e-commerce-why-open-source-could-be-tomorrows-true-answer-16l7</link>
      <guid>https://dev.to/ndabene/the-sovereignty-of-e-commerce-why-open-source-could-be-tomorrows-true-answer-16l7</guid>
      <description>&lt;h2&gt;
  
  
  Introduction: After AI Sovereignty, E-Commerce Sovereignty
&lt;/h2&gt;

&lt;p&gt;For the past few months, one word has been coming up more and more in discussions about artificial intelligence: sovereignty.&lt;/p&gt;

&lt;p&gt;Who owns the models?&lt;br&gt;
Who controls the data?&lt;br&gt;
Who sets the access rules?&lt;br&gt;
What happens when a critical technology depends on an external player?&lt;/p&gt;

&lt;p&gt;These questions don’t just apply to AI.&lt;/p&gt;

&lt;p&gt;They’ve existed for a long time in the world of e-commerce.&lt;/p&gt;

&lt;p&gt;When a merchant builds their business on a platform, they make a strategic choice. They choose a technical foundation, an ecosystem, a vision of digital commerce.&lt;/p&gt;

&lt;p&gt;And behind this choice lies a fundamental question:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Are we the owners of our digital commerce, or merely users of a service we depend on?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is precisely why the future of open source in e-commerce deserves close attention.&lt;/p&gt;

&lt;h2&gt;
  
  
  A Question I Receive Regularly: Is PrestaShop Still Viable?
&lt;/h2&gt;

&lt;p&gt;Lately, I’ve received several messages from merchants asking a simple but revealing question:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Is PrestaShop still viable today?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This question doesn’t come out of nowhere.&lt;/p&gt;

&lt;p&gt;The e-commerce market is accelerating. Artificial intelligence is transforming usage. Architectures are evolving. Major cloud and SaaS platform players are strengthening their positions.&lt;/p&gt;

&lt;p&gt;In this context, some may feel that historical open-source solutions are doomed to disappear.&lt;/p&gt;

&lt;p&gt;My answer is clear:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Yes, PrestaShop is still viable. In fact, I think we’re at a new stage in its history.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not because the past must be preserved at all costs.&lt;/p&gt;

&lt;p&gt;But because open source addresses an issue that is becoming increasingly important: maintaining control.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Acquisition of PrestaShop: A Transition to View Differently
&lt;/h2&gt;

&lt;p&gt;The acquisition of PrestaShop by the ecosystem led by cyber_Folks, Sylius, and BitBag has naturally sparked many reactions.&lt;/p&gt;

&lt;p&gt;Some saw it as a loss of independence.&lt;/p&gt;

&lt;p&gt;For my part, I think we need to look at this development through a different lens.&lt;/p&gt;

&lt;p&gt;The issue isn’t just about who owns a company.&lt;/p&gt;

&lt;p&gt;The real issue is understanding the direction the ecosystem is taking.&lt;/p&gt;

&lt;p&gt;And what’s interesting today is the meeting of two complementary worlds.&lt;/p&gt;

&lt;p&gt;On one side, PrestaShop has a strong history in online commerce, with a community, thousands of stores, and an ecosystem built over the years.&lt;/p&gt;

&lt;p&gt;On the other, Sylius offers a more modern vision of e-commerce development, with a framework-oriented approach, flexibility, and scalable architectures.&lt;/p&gt;

&lt;p&gt;This combination could open a new chapter.&lt;/p&gt;

&lt;p&gt;Not the disappearance of PrestaShop.&lt;/p&gt;

&lt;p&gt;An evolution.&lt;/p&gt;

&lt;p&gt;The challenge isn’t to remain frozen in what e-commerce was ten years ago.&lt;/p&gt;

&lt;p&gt;The challenge is to build the foundation for the next ten years of e-commerce.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open Source as a Strategic Answer
&lt;/h2&gt;

&lt;p&gt;In a world where businesses are becoming dependent on technological building blocks they don’t always control, open source offers something rare:&lt;/p&gt;

&lt;p&gt;the ability to understand, adapt, and evolve your tool.&lt;/p&gt;

&lt;p&gt;This doesn’t mean open source is magical.&lt;/p&gt;

&lt;p&gt;An open-source solution can fail if it doesn’t evolve.&lt;/p&gt;

&lt;p&gt;It can become obsolete if its community disappears.&lt;/p&gt;

&lt;p&gt;It must continue to innovate.&lt;/p&gt;

&lt;p&gt;But it has a structural strength: it doesn’t rely solely on a commercial promise.&lt;/p&gt;

&lt;p&gt;It relies on an ecosystem.&lt;/p&gt;

&lt;p&gt;This is also why the activity around PrestaShop remains an important signal.&lt;/p&gt;

&lt;p&gt;Communities like Friends of Presta continue to unite field players. Events like EO2S 2026 show that there’s still energy around this technology.&lt;/p&gt;

&lt;p&gt;A living project isn’t just source code.&lt;/p&gt;

&lt;p&gt;It’s a community that continues to build.&lt;/p&gt;

&lt;h2&gt;
  
  
  The PSE: A Negative Signal or a Difficult Choice in a Time of Acceleration?
&lt;/h2&gt;

&lt;p&gt;The announcement of PrestaShop’s PSE (Performance and Sustainability Plan) has obviously raised concerns.&lt;/p&gt;

&lt;p&gt;This is understandable.&lt;/p&gt;

&lt;p&gt;When a company reduces its workforce, the first reaction is often to interpret it as a sign of retreat.&lt;/p&gt;

&lt;p&gt;But I think we should also consider this decision in the current context.&lt;/p&gt;

&lt;p&gt;The tech industry is going through a period of brutal transformation.&lt;/p&gt;

&lt;p&gt;Artificial intelligence is changing development methods, production cycles, user expectations, and business models.&lt;/p&gt;

&lt;p&gt;In this context, all organizations must rethink how they operate.&lt;/p&gt;

&lt;p&gt;This doesn’t automatically mean the end.&lt;/p&gt;

&lt;p&gt;It can also be an attempt at deep transformation.&lt;/p&gt;

&lt;p&gt;Is it a risky bet? Yes.&lt;/p&gt;

&lt;p&gt;But sometimes, not changing is an even greater risk.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Interesting Signal: PrestaShop Begins to Look at the AI Era
&lt;/h2&gt;

&lt;p&gt;Another element seems particularly interesting to me: the presence of the &lt;code&gt;.ai&lt;/code&gt; directory in the PrestaShop repository.&lt;/p&gt;

&lt;p&gt;This is not a trivial detail.&lt;/p&gt;

&lt;p&gt;The e-commerce of tomorrow won’t just be a store with a catalog and a checkout process.&lt;/p&gt;

&lt;p&gt;It will be augmented by agents, assistants, automations, and systems capable of helping make decisions.&lt;/p&gt;

&lt;p&gt;The real question will then be:&lt;/p&gt;

&lt;p&gt;Who will control these intelligences?&lt;/p&gt;

&lt;p&gt;A closed platform that imposes its own rules?&lt;/p&gt;

&lt;p&gt;Or an open ecosystem where merchants can choose, adapt, and integrate their own solutions?&lt;/p&gt;

&lt;p&gt;E-commerce sovereignty and AI sovereignty will likely converge.&lt;/p&gt;

&lt;h2&gt;
  
  
  Will the Future of E-Commerce Be Open?
&lt;/h2&gt;

&lt;p&gt;I don’t think the future will simply pit open source against SaaS.&lt;/p&gt;

&lt;p&gt;Both models will likely continue to coexist.&lt;/p&gt;

&lt;p&gt;But in a world where every business is becoming dependent on its digital tools, the ability to maintain control is becoming a strategic advantage.&lt;/p&gt;

&lt;p&gt;E-commerce is no longer just about selling online.&lt;/p&gt;

&lt;p&gt;It’s a question of infrastructure.&lt;/p&gt;

&lt;p&gt;And critical infrastructure must be mastered.&lt;/p&gt;

&lt;p&gt;This is why I believe PrestaShop, with its history, its community, and this new phase alongside players like Sylius, has an important card to play.&lt;/p&gt;

&lt;p&gt;Not by looking at the past.&lt;/p&gt;

&lt;p&gt;But by building the next chapter.&lt;/p&gt;

&lt;p&gt;The real question may no longer be:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"Which platform should we choose?"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;But rather:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Who do we want to let control the digital commerce of tomorrow?"&lt;/strong&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  PrestaShop #OpenSource #Ecommerce #AI #DigitalSovereignty
&lt;/h1&gt;

</description>
      <category>prestashopecommerce</category>
      <category>agentsia</category>
      <category>ecommerce</category>
      <category>llmmodeles</category>
    </item>
    <item>
      <title>The CRT Method for Developers: Mastering the Art of Prompt Engineering</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Sun, 07 Jun 2026 09:00:03 +0000</pubDate>
      <link>https://dev.to/ndabene/the-crt-method-for-developers-mastering-the-art-of-prompt-engineering-2dij</link>
      <guid>https://dev.to/ndabene/the-crt-method-for-developers-mastering-the-art-of-prompt-engineering-2dij</guid>
      <description>&lt;h2&gt;
  
  
  1. Introduction: Moving Beyond the "Fuzzy Prompt" in Development
&lt;/h2&gt;

&lt;p&gt;In today's software engineering ecosystem, productivity no longer depends solely on mastering syntax but on the ability to transform a vague intention into an actionable technical instruction. The major challenge developers face isn’t &lt;em&gt;what&lt;/em&gt; they ask AI, but the &lt;em&gt;imprecision&lt;/em&gt; of the request.&lt;/p&gt;

&lt;p&gt;When a developer submits a &lt;strong&gt;"Fuzzy Prompt,"&lt;/strong&gt; the AI instantly becomes a guessing machine. It must fill in the user’s gaps by improvising on technical level, coding standards, or architectural constraints. For developers, this "guesswork" translates into costly operational friction: off-topic code, immediate technical debt, or dangerous hallucinations in business logic. The &lt;strong&gt;CRT method (Context, Role, Task)&lt;/strong&gt; acts as a &lt;strong&gt;"mini-request architecture,"&lt;/strong&gt; structuring the exchange to shift from a mere text generator to a true engineering partner.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Anatomy of the CRT Method: Context, Role, Task
&lt;/h2&gt;

&lt;p&gt;The CRT method is a minimal framework designed to eliminate ambiguity. In prompt engineering, the goal isn’t to write novels but to clarify critical variables so the AI stops &lt;em&gt;interpreting&lt;/em&gt; and starts &lt;em&gt;executing&lt;/em&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Breakdown of the Three Pillars
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Context&lt;/strong&gt;: Defines the request’s environment. Who is the target audience? What is the tech stack? What is the overall goal? Context fuels the response by providing the necessary data for reasoning.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Role&lt;/strong&gt;: The identity adopted by the AI calibrates tone, precision level, and standards. Requesting an &lt;em&gt;expert role&lt;/em&gt; avoids outdated solutions (e.g., PHP 5.6 instead of 8.2) and ensures professional rigor.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Task&lt;/strong&gt;: The precise action. &lt;strong&gt;Pro tip&lt;/strong&gt;: The "next-level" approach is to &lt;em&gt;not&lt;/em&gt; ask for the final code immediately but to first demand a plan, structure, or clarification questions.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Summary: Fuzzy Prompt vs. CRT Prompt
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Aspect&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Fuzzy Prompt (Guessing Machine)&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;CRT Prompt (Engineered Request)&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;em&gt;"Help me with an API."&lt;/em&gt;&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;C&lt;/strong&gt;: Beginner video on digital culture. &lt;br&gt; &lt;strong&gt;R&lt;/strong&gt;: Technical popularization expert. &lt;br&gt; &lt;strong&gt;T&lt;/strong&gt;: First propose a structured script outline.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Effect&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;AI improvises level and format.&lt;/td&gt;
&lt;td&gt;AI produces a result aligned with the goal.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Risk&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Hallucinations and mismatched code.&lt;/td&gt;
&lt;td&gt;Surgical precision and time savings.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This structure is the bulwark against unusable results that clutter the development cycle.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. Practical Case 1: Developing a Prestashop Module
&lt;/h2&gt;

&lt;p&gt;Working with a CMS like Prestashop requires strict contextual rigor to avoid code incompatible with modern versions (Prestashop 8.x).&lt;/p&gt;

&lt;h3&gt;
  
  
  CRT Application
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Context&lt;/strong&gt;: Creating a promotions management module for Prestashop 8.1, targeting B2B merchants.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Role&lt;/strong&gt;: Senior Prestashop Expert adhering to PSR-12 standards and the CMS’s Symfony structure.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Task&lt;/strong&gt;: First propose the list of required hooks (e.g., &lt;code&gt;actionCartSave&lt;/code&gt;) and the file tree &lt;em&gt;before&lt;/em&gt; generating any code.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Analysis&lt;/strong&gt;: By forcing the AI to validate the technical structure and hooks before implementation, we prevent it from generating obsolete monolithic code. The &lt;em&gt;Senior Expert&lt;/em&gt; role ensures the use of namespaces and modern service containers instead of legacy static classes.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. Practical Case 2: Laravel Architecture and Logic
&lt;/h2&gt;

&lt;p&gt;In modern frameworks, AI excels at structuring business logic—&lt;em&gt;if&lt;/em&gt; guided on architectural patterns.&lt;/p&gt;

&lt;h3&gt;
  
  
  CRT Application
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Context&lt;/strong&gt;: Payment microservice in a Laravel 11 application following hexagonal architecture principles.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Role&lt;/strong&gt;: Software Architect specializing in Clean Code.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Task&lt;/strong&gt;: Sketch the interface contract and &lt;code&gt;PaymentService&lt;/code&gt; class structure with dependency injection. Ask me &lt;em&gt;3 clarification questions&lt;/em&gt; about payment gateways (Stripe/Adyen) before proceeding.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Justification&lt;/strong&gt;: Here, the Task prioritizes &lt;em&gt;design&lt;/em&gt;. Requesting an &lt;strong&gt;"interface contract"&lt;/strong&gt; enforces decoupling rigor that the AI would overlook in a fuzzy prompt. This prevents spaghetti code and reduces technical debt from the outset.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Practical Case 3: Brainstorming a New Feature
&lt;/h2&gt;

&lt;p&gt;AI isn’t just an executor—it’s a co-creation partner. Using CRT in brainstorming turns the tool into a strategic consultant.&lt;/p&gt;

&lt;h3&gt;
  
  
  CRT Application
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Prompt:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Context&lt;/strong&gt;: Gamification feature for a B2B productivity SaaS. Goal: Increase monthly retention.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Role&lt;/strong&gt;: Product Designer specializing in engagement psychology (Gamification).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Task&lt;/strong&gt;: &lt;em&gt;Don’t&lt;/em&gt; propose solutions yet. Ask me &lt;em&gt;5 critical questions&lt;/em&gt; to identify my technical constraints and the user behaviors I want to encourage.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The Collaborative Approach&lt;/strong&gt;: This method flips the burden of proof. Instead of expecting a perfect answer on the first try, we use AI to spotlight the project’s blind spots, refining the initial intent before production.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. The Collaborative Approach: Using AI to Refine the Prompt
&lt;/h2&gt;

&lt;p&gt;Shifting from a "command prompt" to a "conversational prompt" is the real paradigm shift. The first prompt should often just &lt;em&gt;initiate&lt;/em&gt; a clarification phase.&lt;/p&gt;

&lt;h3&gt;
  
  
  Collaborative Optimization Strategies
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Mirror Prompt&lt;/strong&gt;: &lt;em&gt;"Here’s my technical intent [Intent]. Identify the fuzzy areas you’d have to guess to respond, and ask me questions."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Triangulation&lt;/strong&gt;: &lt;em&gt;"Propose a simple, precise, and advanced version of this prompt for my needs."&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-Improvement&lt;/strong&gt;: &lt;em&gt;"Act as a Prompt Engineering expert. Rephrase my initial request to maximize generated code quality per SOLID standards."&lt;/em&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Beyond the Prompt: Context Engineering&lt;/strong&gt;&lt;br&gt;
If Prompt Engineering structures the request, final quality also depends on the data provided. The "next level" is &lt;strong&gt;Context Engineering&lt;/strong&gt;: feeding the AI your own documentation, config files, or style guides so it stops guessing and reasons within &lt;em&gt;your&lt;/em&gt; actual environment.&lt;/p&gt;


&lt;h2&gt;
  
  
  7. Practical Tool: Universal CRT Prompt Template
&lt;/h2&gt;

&lt;p&gt;Use this template to standardize exchanges and automate clarity in your daily workflow.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# CONTEXT&lt;/span&gt;
[Project, tech stack, version, target audience, overall goal]

&lt;span class="gh"&gt;# ROLE&lt;/span&gt;
[Expert/Architect/Educator – Defines standards and tone]

&lt;span class="gh"&gt;# TASK&lt;/span&gt;
[Precise action. Request structure/questions before the final output]

&lt;span class="gh"&gt;# CONSTRAINTS &amp;amp; FORMAT&lt;/span&gt;
[Output format (JSON, Markdown, Code), what to avoid, PSR standards, etc.]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Golden Rules for Execution:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Precision beats length&lt;/strong&gt;: Don’t write a novel—clarify friction points.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Humans are sovereign&lt;/strong&gt;: AI proposes and rephrases; the developer validates and directs. Human validation remains the only safeguard against business logic errors.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Iterate systematically&lt;/strong&gt;: The best prompt is rarely the first; it’s the product of mutual clarification.&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;AI performance isn’t about "magic"—it’s a direct reflection of your instructions’ intelligence.&lt;/strong&gt; By structuring requests with the CRT method, you stop enduring the machine’s guesswork and start piloting a robust, predictable work assistant.&lt;/p&gt;

</description>
      <category>prestashopecommerce</category>
      <category>agentsia</category>
      <category>api</category>
      <category>llmmodeles</category>
    </item>
    <item>
      <title>AI is a Super-Fuel, Don't Let It Turn Into a "Slop" Factory</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Sat, 06 Jun 2026 09:45:03 +0000</pubDate>
      <link>https://dev.to/ndabene/ai-is-a-super-fuel-dont-let-it-turn-into-a-slop-factory-11m9</link>
      <guid>https://dev.to/ndabene/ai-is-a-super-fuel-dont-let-it-turn-into-a-slop-factory-11m9</guid>
      <description>&lt;p&gt;People talk about Artificial Intelligence all day long. For some, it’s a magical revolution; for others, an invisible threat. In reality, AI is neither: it’s an &lt;strong&gt;amplifier&lt;/strong&gt;. &lt;/p&gt;

&lt;p&gt;When used wisely, it boosts our creativity and productivity. Left to its own devices, without human oversight, it generates a new kind of nuisance that is starting to flood our daily lives: &lt;strong&gt;"AI Slop"&lt;/strong&gt; (or digital sludge). &lt;/p&gt;

&lt;p&gt;Here is why it’s urgent to understand this phenomenon and learn how to protect ourselves from it.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. AI as a Co-pilot: The Bright Side
&lt;/h2&gt;

&lt;p&gt;Before talking about what goes wrong, let's remember an essential truth: generative AI (like ChatGPT) is a fantastic tool. It doesn't replace humans; it’s an &lt;strong&gt;idea accelerator&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Got writer's block?&lt;/strong&gt; It can give you an outline in three seconds.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Need a sounding board?&lt;/strong&gt; It helps structure your arguments, find counter-arguments, or simplify a complex concept.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Writing issues?&lt;/strong&gt; It polishes the tone of an important email.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In these cases, humans remain in control: &lt;strong&gt;you&lt;/strong&gt; bring the expertise, the direction, and the critical thinking. AI is just the pen.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. "AI Slop": When the Machine Runs on Empty
&lt;/h2&gt;

&lt;p&gt;The problem arises when humans are removed from the equation. That’s where &lt;strong&gt;Slop&lt;/strong&gt; comes from. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Definition:&lt;/strong&gt; &lt;em&gt;AI Slop&lt;/em&gt; is any text, visual, or audio content generated in bulk by AI and dumped onto the web without any verification, review, or added value. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It’s the fast food of information. We find it in several forms:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Endless blog posts&lt;/strong&gt; that beat around the bush just to please Google's search algorithms.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Weird images on social networks&lt;/strong&gt; (like those bizarre AI-generated photos of children or strange structures) designed solely to trick unsuspecting users into clicking.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Error-ridden practical guides&lt;/strong&gt; sold on Amazon, written in three clicks by robots.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal of Slop is never to inform, educate, or entertain. Its sole purpose is to take up visual space to generate ad revenue from your clicks.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. Why Is This Dangerous?
&lt;/h2&gt;

&lt;p&gt;If it were just poor-quality content, it would only be an aesthetic issue. But Slop poses three major risks for all of us:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Information drowning:&lt;/strong&gt; It’s becoming increasingly harder to find reliable, human-verified information in an ocean of text generated by the mile.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Trust pollution:&lt;/strong&gt; By constantly encountering empty or false content, users end up doubting everything, even legitimate sources.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lack of substance:&lt;/strong&gt; An AI doesn’t "think." It predicts logical words one after another. Without control, it can state absurdities with perfect confidence (what we call &lt;em&gt;hallucinations&lt;/em&gt;).&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  4. Survival Guide: How to Spot Slop
&lt;/h2&gt;

&lt;p&gt;To avoid getting fooled, develop a few simple reflexes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;The "lukewarm water" style:&lt;/strong&gt; Does the text use grandiose but empty phrases? &lt;em&gt;(e.g., "In the ever-evolving landscape of...", "It is crucial to understand that...")&lt;/em&gt;. If the text is polite, long, but takes no stance and provides no concrete anecdotes, be suspicious.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Lack of a real source or author:&lt;/strong&gt; Who wrote this article? Is it a real researcher, a journalist, an expert with a track record, or an anonymous profile created three days ago?&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Absurd visual details:&lt;/strong&gt; For images, look closely at the hands (often six fingers or strange shapes), blurry or illogical backgrounds, and textures that are too smooth, almost "plastic-like."&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  In Conclusion: Demand Substance, Stay Human
&lt;/h2&gt;

&lt;p&gt;Artificial Intelligence is a historic opportunity to free ourselves from repetitive tasks and stimulate our intellect. But just like with food, we must become demanding consumers. Reject textual sludge; look for critical thinking, nuance, and the human touch. This is the only way to ensure that AI remains at our service, not the other way around.&lt;/p&gt;

</description>
      <category>seovisibilite</category>
      <category>llmmodeles</category>
      <category>seogeo</category>
    </item>
    <item>
      <title>AI at the Crossroads: Between the Profitability Mirage and the Reality of Efficiency</title>
      <dc:creator>Nicolas Dabene</dc:creator>
      <pubDate>Thu, 04 Jun 2026 22:15:03 +0000</pubDate>
      <link>https://dev.to/ndabene/ai-at-the-crossroads-between-the-profitability-mirage-and-the-reality-of-efficiency-1m0</link>
      <guid>https://dev.to/ndabene/ai-at-the-crossroads-between-the-profitability-mirage-and-the-reality-of-efficiency-1m0</guid>
      <description>&lt;p&gt;Generative artificial intelligence is undergoing a brutal transition phase. The euphoria of early deployments is giving way to an uncompromising demand for financial return. As a FinOps strategist, my observation is clear: AI is not a magic solution; it is a power infrastructure. Without rigorous resource management and a dedicated architecture, it risks becoming the greatest value destroyer of the decade. The time for experimentation is over; the focus is now on the industrial mastery of ROI.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. The Profitability Paradox: From "Capex" to the Wall of Realities
&lt;/h2&gt;

&lt;p&gt;The enthusiasm for generative AI is colliding today with a fundamental question posed by Jim Covello (Goldman Sachs): "What $1 trillion problem does AI actually solve?". The gap between massive investments and actual revenues is abyssal. According to Sequoia Capital, the industry must generate $600 billion per year to justify current infrastructure expenditures (Capex). However, the market leader OpenAI peaks at $3.4 billion in revenue. By comparison, Microsoft alone forecasts $190 billion in Capex for calendar year 2026 to expand its computing capabilities.&lt;/p&gt;

&lt;p&gt;We are reliving the railway analogy: a phase of massive over-investment necessary to build a foundational infrastructure, where only the players capable of mastering their operational costs will survive the bursting of the bubble.&lt;/p&gt;

&lt;p&gt;This discrepancy illustrates the "Solow Paradox," updated by McKinsey: AI is everywhere except in productivity statistics. Two factors explain this lag:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;The "J-Curve" of adoption:&lt;/strong&gt; As indicated by Governor Michael Barr (Fed), initial adjustment costs lead to short-term losses before real gains materialize.&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Competitive erosion:&lt;/strong&gt; Horizontal productivity (simple chatbot usage) does not create a sustainable advantage. It becomes "table stakes," with the gains captured by the end consumer rather than by the company's margins.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Transition: This lack of profitability is not a technological fatality, but the symptom of unmanaged resource consumption.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  2. The Token as a Natural Resource: Toward an Ethic of Consumption
&lt;/h2&gt;

&lt;p&gt;We must stop viewing the "Token" as an IT abstraction. Every token is the physical product of massive energy and freshwater consumption. AI's ecological footprint is now an operational reality: pollution in rural communities adjacent to data centers and skyrocketing electricity bills.&lt;/p&gt;

&lt;p&gt;From a FinOps perspective, algorithmic inefficiency must be treated as industrial waste. A prompt of 1,000 tokens where 50 would suffice is not a mistake; it is a waste of financial and natural capital. Every unnecessarily verbose interaction reduces your margins and degrades your carbon footprint. The sustainability of businesses will depend on their ability to establish consumption discipline: every generated token must have clear attribution and demonstrable business value.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Transition: The solution to this waste lies in education: Prompt Engineering must become an organizational survival skill.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  3. The Professionalization of AI: Prompt Engineering for All
&lt;/h2&gt;

&lt;p&gt;Prompt Engineering training is not a luxury for developers; it is the bedrock of operational efficiency. The lack of expertise is the primary failure factor in AI projects. Data from FullStack and Gartner leave no room for doubt:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  85% of AI projects fail due to poor data quality or a lack of skills.&lt;/li&gt;
&lt;li&gt;  A 50% talent gap paralyzes the deployment of solutions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without training, AI remains a "gadget" whose logical errors prove costly. Prompt Engineering allows a transition from generalist AI (Horizontal AI)—which dilutes value—to precision AI (Vertical AI). A trained employee knows how to reduce informational "noise," thereby limiting token consumption while increasing the relevance of the output. This is where waste reduction occurs: moving from a trial-and-error approach to response engineering.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Transition: However, human skill must be backed by a software architecture designed for yield.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  4. The Architecture of Efficiency: Specialized Agents and FinOps
&lt;/h2&gt;

&lt;p&gt;To maximize ROI, we must abandon the "one model for everything" paradigm. Using a Frontier model (such as GPT-4o or Claude Opus) for a simple classification task is an economic aberration. The winning strategy relies on Model Tiering and technical optimization.&lt;/p&gt;

&lt;p&gt;Using tools like vLLM, throughput can be multiplied by 3 to 6 times, while prompt compression via LLMLingua reduces input size by a factor of 20 with minimal performance loss. Implementing semantic caching (Alice Labs) completely eliminates inference costs for recurring queries, reducing API expenditures by up to 80%.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Dimension&lt;/th&gt;
&lt;th&gt;Uncontrolled AI (Shadow AI)&lt;/th&gt;
&lt;th&gt;Architected AI (FinOps)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Cost Model&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Explosive and unpredictable API costs&lt;/td&gt;
&lt;td&gt;Mastered Unit Economics&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Model Selection&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Systematic use of Frontier models&lt;/td&gt;
&lt;td&gt;Model Tiering (Nano vs Frontier)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Token Cost (1M)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;~$15.00 (Frontier)&lt;/td&gt;
&lt;td&gt;$0.10 (Nano/Small)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Governance&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;No visibility&lt;/td&gt;
&lt;td&gt;Tagging, Attribution &amp;amp; Showback&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Efficiency&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Redundant inferences&lt;/td&gt;
&lt;td&gt;Semantic caching&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Latency&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;High (heavy models)&lt;/td&gt;
&lt;td&gt;Optimized via compression &amp;amp; cache&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This approach transforms AI from a speculative cost center into a sustainable infrastructure capable of absorbing scale without a linear correlation in costs.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Conclusion: Defining a Framework for Reasoned AI
&lt;/h2&gt;

&lt;p&gt;The success of AI will not be measured by the volume of your investments, but by the precision of your management. A successful adoption rests on three non-negotiable pillars:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;FinOps Governance:&lt;/strong&gt; Implement a systematic tagging and attribution system for every API call to enable chargeback/showback between departments.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Mass Training:&lt;/strong&gt; Elevate the skill level in Prompt Engineering to transform every employee into a digital resource manager.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Specialized Architecture:&lt;/strong&gt; Deploy micro-agents and small models (Small Parameter Models) for vertical tasks, reserving expensive models for complex problems.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;AI is no longer a bubble to be contemplated, but a resource to be administered. Shift from being a passive consumer suffering from bills to a responsible driver of your digital efficiency.&lt;/p&gt;

</description>
      <category>seovisibilite</category>
      <category>agentsia</category>
      <category>api</category>
      <category>llmmodeles</category>
    </item>
  </channel>
</rss>
