Claude Code's Father's Night Shift AI Army, Fable 5 Built with Two Commands

marsbitPubblicato 2026-07-20Pubblicato ultima volta 2026-07-20

Introduzione

For the past year, Boris Cherny, creator of Claude Code, hasn't written a single line of code himself. He manages hundreds, even thousands, of AI agents that run day and night, autonomously handling tasks from writing and submitting code to fixing CI tests and gathering user feedback. His secret lies in a "loop" system, where tasks are defined and set to run repeatedly, combined with a critical "/goal" command that provides a clear, verifiable objective and a "supervisor" model to check progress. This approach transforms the programmer's role from a coder to a system designer and reviewer. At Anthropic, AI agents even collaborate in Slack channels to divide work. The recently released Fable 5 model is built for such long-term autonomous operation, featuring self-verification and the ability to understand complex charts. Effective use requires the "/goal" command for targeted tasks and "/loop" for recurring ones. To maximize efficiency, a local context system can be set up in 20 minutes, providing the AI with persistent memory of your projects, preferences, and procedures. The key takeaway is that the future lies not in prompting AI for each step, but in building autonomous systems driven by clear, verifiable goals.

For the past year, he hasn't written a single line of code by hand.

He submits dozens of PRs every day, and one day hit 150, setting a personal record.

What's even more outrageous is that he has hundreds of AI agents running simultaneously on his side, and thousands more work the night shift for him.

This was personally stated by Boris Cherny, the father of Claude Code, during a recent public discussion with developers.

He has the Claude app open on his phone, with a small code tab on the left, containing 5 to 10 concurrent sessions.

Under each session is a cluster of agents, hundreds running during the day, and once night falls, thousands start doing deeper work.

The models write all the code, he doesn't touch a single line.

For him, the task of programming has been solved.

How Can One Person Manage Thousands of Agents?

One person manages thousands of agents, having them all modify code in the same repository simultaneously, without losing control, fighting each other, or creating piles of garbage.

Boris's secret lies behind one word: Loop.

He says a Loop is the simplest yet most useful thing he's seen; Loops are the future.

The essence of a Loop is letting Claude schedule a repeatable task using a cron job—every minute, every five minutes, daily, as you set it. Once it's running, it basically requires no management.

He has dozens of Loops running perpetually:

One specifically monitors his PRs, automatically fixing continuous integration (CI) and rebasing;

One is responsible for keeping CI healthy, fixing any unstable tests itself;

And another scrapes user feedback from X every 30 minutes, clusters and organizes it, then submits it to him.

More crucially, later on, even the step of initiating a Loop rarely requires Boris to speak up.

Once he just asked the model to run a data query, and the model replied: "I noticed this data keeps changing, so I'll start a Loop and give you a report every 30 minutes."

He said okay, just send it to my Slack. The model then handled the matter.

Not long ago, Boris also mentioned he no longer writes prompts, only loops.

Soon, he might not even need to write loops.

Agents

Are Redefining "Getting Work Done"

Behind this, "getting work done" itself is changing.

In the past, it was you writing a line, AI answering, you writing the next line; now, it's you building a small system that can find work, do it, and submit it on its own, then you walk away.

Anthropic recently launched Routines, moving the same mechanism to the server side. Close your laptop, and it still runs.

The role of "engineer" is also being rewritten in Boris's case:

The model writes the code, he's responsible for building the system and acceptance testing. Dozens to hundreds of PRs emerge daily from the agents. His real job is deciding which can be merged and which need to be sent back.

In his words, this is not "AI replacing engineers," but humans transitioning from operators and executors to designers of automated systems: the focus shifts from "writing this line of code correctly" to "building a system that can write code correctly on its own."

He even predicts that in another year, security steps like prompt injection protection, command validation, and manual approval will become less important because models will become increasingly conscientious about doing the right thing.

And this approach is no longer just his personal play.

According to Boris, there's hardly any manual coding left in the company; even SQL is written by models. It's hard to find a few lines of code still typed by a human in the entire company.

Even more surreal is another scene. When his Claude agents are writing code in a Loop, they'll go to Slack themselves, chat with colleagues' Claude agents, aligning on things no one has figured out yet.

A group of AIs holding meetings in a Slack channel, dividing up the work, and going back to do it—this is daily routine at Anthropic.

Even more intense is the team composition: engineering managers, product managers, designers, data scientists, finance, user researchers—everyone is writing code.

The functions remain, but everyone has gained an extra layer of general capability: "orchestrating AI to get work done," becoming cross-disciplinary generalists.

From Writing Prompts to Writing Loops

The Gap Lies in a Step Called Acceptance

How can an AI that works autonomously infinitely not be a machine producing bugs at high speed?

The answer lies in a step most people overlook: acceptance.

A Loop can run autonomously without going off the rails, relying on a "goal-driven" mechanism, corresponding to the /goal command in Claude Code.

You give it a goal, like "All unit tests under /tests/ pass, linting clean." After each step, a separate, smaller model judges: Is it done? If not, keep going; if yes, stop.

This "supervising model" responsible for scoring is not the one doing the work.

This simple design is precisely the heart of the entire loop.

Without it, a Loop running all night could very well be a machine that's asleep yet still bulk-submitting garbage code, and doing so righteously.

Boris verified this long ago.

When sharing his workflow previously, he gave this piece of advice: the most important step to squeeze the utmost out of Claude Code is to give it a way to verify its own work.

Once this feedback loop is established, output quality typically improves by 2 to 3 times.

A single action of "making AI check itself" is equivalent to upgrading a generation of models.

This Cycle is Usable by Ordinary People Too

The aforementioned cycle has been turned into a product; ordinary people can use it just the same.

After the release of Fable 5, a widely circulated tutorial on X stated, after three weeks of hands-on testing by the author: Most people use Fable 5 like they use ordinary Claude, which is a complete waste of what truly makes it worth paying for.

The author first points out three capabilities that distinguish Fable 5 from all previous Claude models.

The three major capabilities of Fable 5 summarized in the tutorial: Long-term autonomous work, self-verification, understanding dense charts.

First, it can work continuously for days, not minutes.

Previous models were sprinters; Fable 5 is the first model built for "long-term autonomous work."

In Claude Code, you can give it an entire multi-day project; it plans in phases itself, dispatches sub-agents, and keeps working until the goal is met.

Second, it checks its own work. After finishing a task, it doesn't rush to deliver; it first writes tests, runs them, catches errors, fixes them, and only then says "done."

Third, the ability to understand dense charts.

According to the author's tests, for tables in financial reports, charts embedded in PDFs, architecture diagrams, dashboard screenshots—areas where Opus 4.8 occasionally misidentified columns or confused axes—Fable 5 can read them accurately and consistently.

And to truly utilize these capabilities, it relies on two commands: /goal and /loop.

Without them, you're paying double the price for a chatbot; with them, you're buying an autonomous working employee.

/goal runs towards the finish line and stops itself when reached; /loop runs repeatedly on schedule until you tell it to stop.

The mechanism of /goal is: you define the result, it's responsible for iteration. Whether it runs well follows an ironclad rule: write the "completion criteria" concretely, and must include an exit strategy for failure.

For example, "Improve this piece of code" is a bad goal because it's unverifiable; "All tests under /tests/ pass, only files in /src are allowed to be modified, stop and report if still failing after 3 fixes" is a good goal because each point can be verified.

/loop doesn't target a specific endpoint; it runs repeatedly on schedule until you stop it.

For example, check error logs every 30 minutes, pick out severity-level ones and report them in plain language; or scan the inbox every hour, summarize new emails, and draft replies for those needing responses.

The division of labor mantra is three sentences: For a clear endpoint, use /goal; for periodic repetition, use /loop; to keep running until a condition is met, combine both.

Before letting go, there's one more piece of very practical advice: set the spending limit first. An uncapped /goal hitting a difficult problem can burn through tokens frighteningly fast.

Making It Remember You: 20 Minutes of Local Configuration

The tutorial also mentions a step most guides skip, which is precisely the most crucial.

Fable 5 won't remember you. Every new session, it knows nothing about your business, writing style, clients, or preferences, starting from zero each time.

The solution is to set up a local context system on your own machine, which takes only 20 minutes.

One folder, two markdown files, and a set of skills—that's all the configuration needed for Fable 5 to "know you."

It's done in four steps.

Step one, create a context folder, e.g., named `fable-workspace`, serving as the "single source of truth" it must read before starting any work.

The folder can contain items like: a one-page summary of business and priorities, standard operating procedures for frequent tasks, key information for ongoing projects, often-referenced strategic documents, plus a decision log.

Keep each file to one page; too much content eats up the context window.

Step two, create a memory file `claude-memory.md`, and leave an instruction: Whenever I mention important information about business, preferences, or situation, update the key points into it, keep it brief, and date it.

From then on, it updates itself. Mention a new client once, and it already knows in the next session.

Step three, create an instruction file `claude-instructions.md`, clearly stating behavioral rules for each session: read the memory file before starting work, check past decisions before giving advice, ask if unsure—don't guess, proactively report after finishing work and mark areas needing human review.

Step four, in Claude Code, use `/add` to point to this folder, or write into CLAUDE.md. Once connected, at the start of every session, it already comes loaded with your full context.

This configuration has another benefit: if you switch to another AI tool someday, you can directly package and take your context with you.

Regarding saving money, there's an 80/20 approach: only use Fable 5 for that 20% of tasks that truly leverage its strengths.

In Claude Code, Fable can also dispatch cheaper sub-agents to do rough work: it comes up with the plan, Sonnet, Haiku, etc., execute it, and finally, it returns to validate.

At this point, you'll realize Boris's "Night Shift AI Army" breaks down to just three things:

A model that works autonomously, a set of standards defining "done," and a cycle that runs on schedule.

The model and the cycle are already in place.

What's truly scarce is the person who can clearly explain to the model "what a finished task looks like."

References:

https://safe.ai/blog/significant-increase-in-digital-labor-automation

https://x.com/free_ai_guides/status/2073050543027638443

https://youtu.be/SlGRN8jh2RI

https://x.com/bcherny/status/2007179861115511237

This article is from WeChat public account "Xinzhiyuan", edited by: Yuanyu

Crypto di tendenza

Domande pertinenti

QWhat is the core concept that allows Claude Code's creator to manage thousands of AI agents simultaneously without chaos?

AThe core concept is the 'Loop'. It involves setting up timed, automated tasks (like code fixes, CI health checks, or user feedback collection) that run periodically (e.g., every minute, 5 minutes, or daily) with minimal human oversight. This enables continuous, self-directed work by AI agents.

QAccording to the article, how is the role of an 'engineer' being redefined in Boris's workflow?

AThe role is shifting from being a hands-on coder to a designer and manager of automated systems. The engineer sets up the systems (like Loops), defines goals, and acts as a reviewer/approver for the code (PRs) generated by AI agents, rather than writing the code line-by-line themselves.

QWhat is the critical component that prevents an autonomous AI loop from becoming a machine that generates bugs?

AThe critical component is a 'verification' or 'acceptance' mechanism, specifically the '/goal' command in Claude Code. A separate 'supervisor' model independently checks if the AI's work meets the predefined, concrete completion criteria after each step, creating a feedback loop that ensures quality and stops the process when the goal is achieved.

QWhat are the two key commands in Fable 5 that users must utilize to unlock its potential for autonomous work?

AThe two key commands are '/goal' and '/loop'. '/goal' is for tasks with a clear end state, where the AI iterates until the goal is met. '/loop' is for recurring, periodic tasks that run until manually stopped. Using them transforms Fable 5 from a chatbot into an autonomous worker.

QWhat practical setup does the article suggest to make Fable 5 'remember' a user's context across different sessions?

AIt suggests creating a local context system with a dedicated folder (e.g., 'fable-workspace'). This folder should contain concise Markdown files summarizing the business, priorities, operating procedures, and active projects. A 'claude-memory.md' file is used for the AI to self-update with important user information, and a 'claude-instructions.md' file defines session behavior rules. This folder is then linked to Claude Code via the '/add' command or a CLAUDE.md file.

Letture associate

Dialogue with Jia Hang | Looking Back at Two Decades of Chinese Payment Going Global

**Summary: A Conversation with Jia Hang on Two Decades of China's Payment Globalization** Jia Hang, a veteran with over twenty years in payments, reflects on China's attempts to build a global payment network through three key phases: UnionPay (card networks), Alipay+ (digital wallets), and now, stablecoins. His journey began at UnionPay International, aiming to establish China's card network abroad. While successful in following Chinese tourists ("where Chinese go, UnionPay goes"), it struggled to achieve true global scale. The core lesson: card networks like Visa/Mastercard's unassailable advantage isn't just technical standards, but their deeply entrenched **governance and profit-sharing models** that create powerful network effects. Competing as the "same species" is nearly impossible. At Ant Group, he led Alipay+, a strategy to bypass card networks by interconnecting local e-wallets worldwide. While innovative, it faced a similar ceiling. Mobile QR payments and card swipes were essentially **the same species competing for the same pie**, lacking a disruptive value proposition for users or a sustainable new incentive model to replace the card networks' established flywheel. Today, at Singapore's DCS, Jia focuses on stablecoin-based payments. He argues stablecoins represent a fundamental shift. They are not competing with Visa for consumer payments but challenging the **traditional banking and account system for value movement**. Products like "U Cards" (stablecoin-linked payment cards) are transitional, leveraging existing card networks for acceptance while building new rails. The real potential lies in stablecoins enabling seamless, low-cost global value transfer, potentially reorganizing the financial infrastructure around **accounts rather than cards**. Jia believes stablecoin adoption for local retail payments, cross-border transactions, and as high-yield savings vehicles is becoming irreversible. This could gradually reduce reliance on traditional fiat channels, especially in regions with weak currencies or capital controls. The quest for the "next global payment network" continues, now centered on whether stablecoins can successfully bridge Web2 and Web3, establish new governance, and create compelling user value beyond mere cost reduction.

marsbit11 min fa

Dialogue with Jia Hang | Looking Back at Two Decades of Chinese Payment Going Global

marsbit11 min fa

Circle's Stock Price Plunges 76%, Hong Kong Dollar Stablecoin Set to Launch Within Two Weeks

Circle's stock price has plunged approximately 76% from its 2023 peak, reflecting a major market revaluation. Despite this, Circle President Heath Tarbert emphasized the company's focus on long-term execution and its dominant position with USDC's $73 billion circulation across 34 blockchains. The competitive landscape is intensifying. A new consortium-backed stablecoin, Open USD, is attempting to challenge incumbents by sharing reserve yields with partners. More significantly, Visa's new stablecoin platform, initially supporting Open USD while also being compatible with USDC, could erode Circle's network effects. In response, Circle is expanding into real-world payments through partnerships like the one with Japan's JCB. Separately, Tether (USDT) faces a two-year compliance window under new U.S. regulations, requiring it to adjust its reserve composition away from assets like Bitcoin and loans towards cash and U.S. Treasuries. Meanwhile, in Hong Kong, Standard Chartered-backed fintech firm Dian Dian is poised to launch a licensed HKD-pegged stablecoin (HKDAP), moving the industry into a phase where the real test is integrating licensed stablecoins into actual payment flows and corporate treasury systems. The sharp decline in Circle's stock underscores a broader shift: the stablecoin market is moving from a winner-takes-all dynamic to a multi-player competitive arena where execution, compliance, and real-world utility are becoming paramount.

marsbit11 min fa

Circle's Stock Price Plunges 76%, Hong Kong Dollar Stablecoin Set to Launch Within Two Weeks

marsbit11 min fa

Amidst Capital's Encirclement, Decentralization is the Sole Defense for Public Blockchains

In a landscape dominated by power and profit motives, the author argues that decentralization is not merely one desirable feature among many in blockchain design—it is the singular, non-negotiable defense against corporate and capital capture. The article adopts a Machiavellian, realist perspective on human institutions, positing that businesses will inevitably attempt to co-opt any valuable network to protect their profits and dominance. While external attacks like 51% forks are often discussed, the greater existential risk is internal capture—the gradual erosion of a protocol’s neutrality by vested interests, as seen historically with platforms like Visa and Google. The piece critiques permissioned chains, highly centralized “permissionless” layer-1s, and layer-2s without sufficient decentralization (e.g., single sequencers) as inherently vulnerable. These compromised systems, promoted by established financial players, are framed as delaying tactics to stifle truly open networks that threaten existing high-fee, inefficient business models. Real-world examples, such as closed enterprise consortiums that exclude competitors, illustrate how such systems cement oligopolies rather than foster innovation. The author concludes that while decentralized protocols like Ethereum are imperfect and costly to operate, they represent the only viable long-term equilibrium. In a market where value naturally flows to the most secure and neutral settlement layer, only maximally decentralized public blockchains can resist being subsumed by capital and powerful incumbents.

Foresight News22 min fa

Amidst Capital's Encirclement, Decentralization is the Sole Defense for Public Blockchains

Foresight News22 min fa

Who Decides the Rules of Bitcoin? BIP-110 Ignites Governance Debate

Bitcoin's governance is once again at the center of a heated debate, this time ignited by BIP-110, the "Reduced Data Temporary Softfork." This proposal aims to curb non-monetary data (like inscriptions and Runes) by introducing seven new consensus-layer restrictions over a year, such as limiting new output scripts to 34 bytes and restoring the OP_RETURN cap to 83 bytes. The controversy stems from BIP-110's fundamental shift: it moves the battle against "spam" from node relay and miner policies to the consensus layer, rendering currently valid transactions invalid. Supporters, arguing that default policy governance has failed (highlighted by Bitcoin Core v30's relaxation of OP_RETURN limits), see this as necessary to protect node resources and Bitcoin's monetary focus. Opponents, led by figures like Michael Saylor and Adam Back, warn it dangerously centralizes governance. Saylor listed 110 reasons against it, criticizing its low 55% miner activation threshold and potential for chain splits. Back emphasized Bitcoin's "permissionless" ethos, arguing no single group should impose value judgments via consensus rules. Further complicating matters, technical critiques suggest BIP-110 may be technically circumventable, and a "BlockSlop" vulnerability in its upgrade path poses a consensus risk. The debate has drawn in diverse stakeholders: miners (with pools like Ocean signaling support and Foundry polling clients), node operators (like Bitcoin Knots), and new players like corporate treasury holder MicroStrategy (Saylor), whose market influence adds a novel dimension. Ultimately, BIP-110 acts as a governance stress test, exposing the unresolved question: who decides Bitcoin's rules? It pits the authority of miners, node operators, developers, and capital holders against each other, with each side claiming to defend Bitcoin's core principles of neutrality and security.

marsbit38 min fa

Who Decides the Rules of Bitcoin? BIP-110 Ignites Governance Debate

marsbit38 min fa

Trading

Spot

Articoli Popolari

Cosa è $S$

Comprendere SPERO: Una Panoramica Completa Introduzione a SPERO Mentre il panorama dell'innovazione continua a evolversi, l'emergere delle tecnologie web3 e dei progetti di criptovaluta gioca un ruolo fondamentale nel plasmare il futuro digitale. Un progetto che ha attirato l'attenzione in questo campo dinamico è SPERO, denotato come SPERO,$$s$. Questo articolo mira a raccogliere e presentare informazioni dettagliate su SPERO, per aiutare gli appassionati e gli investitori a comprendere le sue basi, obiettivi e innovazioni nei domini web3 e crypto. Che cos'è SPERO,$$s$? SPERO,$$s$ è un progetto unico all'interno dello spazio crypto che cerca di sfruttare i principi della decentralizzazione e della tecnologia blockchain per creare un ecosistema che promuove l'impegno, l'utilità e l'inclusione finanziaria. Il progetto è progettato per facilitare interazioni peer-to-peer in modi nuovi, fornendo agli utenti soluzioni e servizi finanziari innovativi. Al suo interno, SPERO,$$s$ mira a responsabilizzare gli individui fornendo strumenti e piattaforme che migliorano l'esperienza dell'utente nello spazio delle criptovalute. Questo include la possibilità di metodi di transazione più flessibili, la promozione di iniziative guidate dalla comunità e la creazione di percorsi per opportunità finanziarie attraverso applicazioni decentralizzate (dApps). La visione sottostante di SPERO,$$s$ ruota attorno all'inclusività, cercando di colmare le lacune all'interno della finanza tradizionale mentre sfrutta i vantaggi della tecnologia blockchain. Chi è il Creatore di SPERO,$$s$? L'identità del creatore di SPERO,$$s$ rimane piuttosto oscura, poiché ci sono risorse pubblicamente disponibili limitate che forniscono informazioni dettagliate sul suo fondatore o fondatori. Questa mancanza di trasparenza può derivare dall'impegno del progetto per la decentralizzazione—un ethos che molti progetti web3 condividono, dando priorità ai contributi collettivi rispetto al riconoscimento individuale. Centrando le discussioni attorno alla comunità e ai suoi obiettivi collettivi, SPERO,$$s$ incarna l'essenza dell'empowerment senza mettere in evidenza individui specifici. Pertanto, comprendere l'etica e la missione di SPERO rimane più importante che identificare un creatore singolo. Chi sono gli Investitori di SPERO,$$s$? SPERO,$$s$ è supportato da una varietà di investitori che vanno dai capitalisti di rischio agli investitori angelici dedicati a promuovere l'innovazione nel settore crypto. Il focus di questi investitori generalmente si allinea con la missione di SPERO—dando priorità a progetti che promettono avanzamenti tecnologici sociali, inclusività finanziaria e governance decentralizzata. Queste fondazioni di investitori sono tipicamente interessate a progetti che non solo offrono prodotti innovativi, ma contribuiscono anche positivamente alla comunità blockchain e ai suoi ecosistemi. Il supporto di questi investitori rafforza SPERO,$$s$ come un concorrente degno di nota nel dominio in rapida evoluzione dei progetti crypto. Come Funziona SPERO,$$s$? SPERO,$$s$ impiega un framework multifunzionale che lo distingue dai progetti di criptovaluta convenzionali. Ecco alcune delle caratteristiche chiave che sottolineano la sua unicità e innovazione: Governance Decentralizzata: SPERO,$$s$ integra modelli di governance decentralizzati, responsabilizzando gli utenti a partecipare attivamente ai processi decisionali riguardanti il futuro del progetto. Questo approccio favorisce un senso di proprietà e responsabilità tra i membri della comunità. Utilità del Token: SPERO,$$s$ utilizza il proprio token di criptovaluta, progettato per servire varie funzioni all'interno dell'ecosistema. Questi token abilitano transazioni, premi e la facilitazione dei servizi offerti sulla piattaforma, migliorando l'impegno e l'utilità complessivi. Architettura Stratificata: L'architettura tecnica di SPERO,$$s$ supporta la modularità e la scalabilità, consentendo un'integrazione fluida di funzionalità e applicazioni aggiuntive man mano che il progetto evolve. Questa adattabilità è fondamentale per mantenere la rilevanza nel panorama crypto in continua evoluzione. Coinvolgimento della Comunità: Il progetto enfatizza iniziative guidate dalla comunità, impiegando meccanismi che incentivano la collaborazione e il feedback. Nutrendo una comunità forte, SPERO,$$s$ può affrontare meglio le esigenze degli utenti e adattarsi alle tendenze di mercato. Focus sull'Inclusione: Offrendo basse commissioni di transazione e interfacce user-friendly, SPERO,$$s$ mira ad attrarre una base utenti diversificata, inclusi individui che potrebbero non aver precedentemente interagito nello spazio crypto. Questo impegno per l'inclusione si allinea con la sua missione generale di empowerment attraverso l'accessibilità. Cronologia di SPERO,$$s$ Comprendere la storia di un progetto fornisce preziose intuizioni sulla sua traiettoria di sviluppo e sui traguardi. Di seguito è riportata una cronologia suggerita che mappa eventi significativi nell'evoluzione di SPERO,$$s$: Fase di Concettualizzazione e Ideazione: Le idee iniziali che formano la base di SPERO,$$s$ sono state concepite, allineandosi strettamente con i principi di decentralizzazione e focus sulla comunità all'interno dell'industria blockchain. Lancio del Whitepaper del Progetto: Dopo la fase concettuale, è stato rilasciato un whitepaper completo che dettaglia la visione, gli obiettivi e l'infrastruttura tecnologica di SPERO,$$s$ per suscitare interesse e feedback dalla comunità. Costruzione della Comunità e Prime Interazioni: Sono stati effettuati sforzi attivi di outreach per costruire una comunità di early adopters e potenziali investitori, facilitando discussioni attorno agli obiettivi del progetto e ottenendo supporto. Evento di Generazione del Token: SPERO,$$s$ ha condotto un evento di generazione del token (TGE) per distribuire i propri token nativi ai primi sostenitori e stabilire una liquidità iniziale all'interno dell'ecosistema. Lancio della Prima dApp: La prima applicazione decentralizzata (dApp) associata a SPERO,$$s$ è stata attivata, consentendo agli utenti di interagire con le funzionalità principali della piattaforma. Sviluppo Continuo e Partnership: Aggiornamenti e miglioramenti continui alle offerte del progetto, inclusi partnership strategiche con altri attori nello spazio blockchain, hanno plasmato SPERO,$$s$ in un concorrente competitivo e in evoluzione nel mercato crypto. Conclusione SPERO,$$s$ rappresenta una testimonianza del potenziale del web3 e delle criptovalute di rivoluzionare i sistemi finanziari e responsabilizzare gli individui. Con un impegno per la governance decentralizzata, il coinvolgimento della comunità e funzionalità progettate in modo innovativo, apre la strada verso un panorama finanziario più inclusivo. Come per qualsiasi investimento nello spazio crypto in rapida evoluzione, si incoraggiano potenziali investitori e utenti a ricercare approfonditamente e a impegnarsi in modo riflessivo con gli sviluppi in corso all'interno di SPERO,$$s$. Il progetto mostra lo spirito innovativo dell'industria crypto, invitando a ulteriori esplorazioni delle sue innumerevoli possibilità. Mentre il percorso di SPERO,$$s$ è ancora in fase di sviluppo, i suoi principi fondamentali potrebbero effettivamente influenzare il futuro di come interagiamo con la tecnologia, la finanza e tra di noi in ecosistemi digitali interconnessi.

129 Totale visualizzazioniPubblicato il 2024.12.17Aggiornato il 2024.12.17

Cosa è $S$

Cosa è AGENT S

Agent S: Il Futuro dell'Interazione Autonoma in Web3 Introduzione Nel panorama in continua evoluzione di Web3 e criptovalute, le innovazioni stanno costantemente ridefinendo il modo in cui gli individui interagiscono con le piattaforme digitali. Uno di questi progetti pionieristici, Agent S, promette di rivoluzionare l'interazione uomo-computer attraverso il suo framework agentico aperto. Aprendo la strada a interazioni autonome, Agent S mira a semplificare compiti complessi, offrendo applicazioni trasformative nell'intelligenza artificiale (AI). Questa esplorazione dettagliata approfondirà le complessità del progetto, le sue caratteristiche uniche e le implicazioni per il dominio delle criptovalute. Cos'è Agent S? Agent S si presenta come un innovativo framework agentico aperto, progettato specificamente per affrontare tre sfide fondamentali nell'automazione dei compiti informatici: Acquisizione di Conoscenze Specifiche del Dominio: Il framework apprende in modo intelligente da varie fonti di conoscenza esterne ed esperienze interne. Questo approccio duale gli consente di costruire un ricco repository di conoscenze specifiche del dominio, migliorando le sue prestazioni nell'esecuzione dei compiti. Pianificazione su Lungo Orizzonte di Compiti: Agent S impiega una pianificazione gerarchica potenziata dall'esperienza, un approccio strategico che facilita la suddivisione e l'esecuzione efficiente di compiti complessi. Questa caratteristica migliora significativamente la sua capacità di gestire più sottocompiti in modo efficiente ed efficace. Gestione di Interfacce Dinamiche e Non Uniformi: Il progetto introduce l'Interfaccia Agente-Computer (ACI), una soluzione innovativa che migliora l'interazione tra agenti e utenti. Utilizzando Modelli Linguistici Multimodali di Grandi Dimensioni (MLLM), Agent S può navigare e manipolare senza sforzo diverse interfacce grafiche utente. Attraverso queste caratteristiche pionieristiche, Agent S fornisce un framework robusto che affronta le complessità coinvolte nell'automazione dell'interazione umana con le macchine, preparando il terreno per innumerevoli applicazioni nell'AI e oltre. Chi è il Creatore di Agent S? Sebbene il concetto di Agent S sia fondamentalmente innovativo, informazioni specifiche sul suo creatore rimangono elusive. Il creatore è attualmente sconosciuto, il che evidenzia sia la fase embrionale del progetto sia la scelta strategica di mantenere i membri fondatori sotto anonimato. Indipendentemente dall'anonimato, l'attenzione rimane sulle capacità e sul potenziale del framework. Chi sono gli Investitori di Agent S? Poiché Agent S è relativamente nuovo nell'ecosistema crittografico, informazioni dettagliate riguardanti i suoi investitori e sostenitori finanziari non sono documentate esplicitamente. La mancanza di approfondimenti pubblicamente disponibili sulle fondazioni di investimento o sulle organizzazioni che supportano il progetto solleva interrogativi sulla sua struttura di finanziamento e sulla roadmap di sviluppo. Comprendere il supporto è cruciale per valutare la sostenibilità del progetto e il suo potenziale impatto sul mercato. Come Funziona Agent S? Al centro di Agent S si trova una tecnologia all'avanguardia che gli consente di funzionare efficacemente in contesti diversi. Il suo modello operativo è costruito attorno a diverse caratteristiche chiave: Interazione Uomo-Computer Simile a Quella Umana: Il framework offre una pianificazione AI avanzata, cercando di rendere le interazioni con i computer più intuitive. Mimando il comportamento umano nell'esecuzione dei compiti, promette di elevare le esperienze degli utenti. Memoria Narrativa: Utilizzata per sfruttare esperienze di alto livello, Agent S utilizza la memoria narrativa per tenere traccia delle storie dei compiti, migliorando così i suoi processi decisionali. Memoria Episodica: Questa caratteristica fornisce agli utenti una guida passo-passo, consentendo al framework di offrire supporto contestuale mentre i compiti si sviluppano. Supporto per OpenACI: Con la capacità di funzionare localmente, Agent S consente agli utenti di mantenere il controllo sulle proprie interazioni e flussi di lavoro, allineandosi con l'etica decentralizzata di Web3. Facile Integrazione con API Esterne: La sua versatilità e compatibilità con varie piattaforme AI garantiscono che Agent S possa adattarsi senza problemi agli ecosistemi tecnologici esistenti, rendendolo una scelta attraente per sviluppatori e organizzazioni. Queste funzionalità contribuiscono collettivamente alla posizione unica di Agent S all'interno dello spazio crittografico, poiché automatizza compiti complessi e multi-fase con un intervento umano minimo. Man mano che il progetto evolve, le sue potenziali applicazioni in Web3 potrebbero ridefinire il modo in cui si svolgono le interazioni digitali. Cronologia di Agent S Lo sviluppo e le tappe di Agent S possono essere riassunti in una cronologia che evidenzia i suoi eventi significativi: 27 Settembre 2024: Il concetto di Agent S è stato lanciato in un documento di ricerca completo intitolato “Un Framework Agentico Aperto che Usa i Computer Come un Umano”, mostrando le basi per il progetto. 10 Ottobre 2024: Il documento di ricerca è stato reso pubblicamente disponibile su arXiv, offrendo un'esplorazione approfondita del framework e della sua valutazione delle prestazioni basata sul benchmark OSWorld. 12 Ottobre 2024: È stata rilasciata una presentazione video, fornendo un'idea visiva delle capacità e delle caratteristiche di Agent S, coinvolgendo ulteriormente potenziali utenti e investitori. Questi indicatori nella cronologia non solo illustrano i progressi di Agent S, ma indicano anche il suo impegno per la trasparenza e il coinvolgimento della comunità. Punti Chiave su Agent S Man mano che il framework Agent S continua a evolversi, diversi attributi chiave si distinguono, sottolineando la sua natura innovativa e il potenziale: Framework Innovativo: Progettato per fornire un uso intuitivo dei computer simile all'interazione umana, Agent S porta un approccio nuovo all'automazione dei compiti. Interazione Autonoma: La capacità di interagire autonomamente con i computer attraverso GUI segna un passo avanti verso soluzioni informatiche più intelligenti ed efficienti. Automazione di Compiti Complessi: Con la sua metodologia robusta, può automatizzare compiti complessi e multi-fase, rendendo i processi più veloci e meno soggetti a errori. Miglioramento Continuo: I meccanismi di apprendimento consentono ad Agent S di migliorare dalle esperienze passate, migliorando continuamente le sue prestazioni e la sua efficacia. Versatilità: La sua adattabilità attraverso diversi ambienti operativi come OSWorld e WindowsAgentArena garantisce che possa servire un'ampia gamma di applicazioni. Man mano che Agent S si posiziona nel panorama di Web3 e delle criptovalute, il suo potenziale per migliorare le capacità di interazione e automatizzare i processi segna un significativo avanzamento nelle tecnologie AI. Attraverso il suo framework innovativo, Agent S esemplifica il futuro delle interazioni digitali, promettendo un'esperienza più fluida ed efficiente per gli utenti in vari settori. Conclusione Agent S rappresenta un audace passo avanti nell'unione tra AI e Web3, con la capacità di ridefinire il modo in cui interagiamo con la tecnologia. Sebbene sia ancora nelle sue fasi iniziali, le possibilità per la sua applicazione sono vaste e coinvolgenti. Attraverso il suo framework completo che affronta sfide critiche, Agent S mira a portare le interazioni autonome al centro dell'esperienza digitale. Man mano che ci addentriamo nei regni delle criptovalute e della decentralizzazione, progetti come Agent S giocheranno senza dubbio un ruolo cruciale nel plasmare il futuro della tecnologia e della collaborazione uomo-computer.

583 Totale visualizzazioniPubblicato il 2025.01.14Aggiornato il 2025.01.14

Cosa è AGENT S

Come comprare S

Benvenuto in HTX.com! Abbiamo reso l'acquisto di Sonic (S) semplice e conveniente. Segui la nostra guida passo passo per intraprendere il tuo viaggio nel mondo delle criptovalute.Step 1: Crea il tuo Account HTXUsa la tua email o numero di telefono per registrarti il tuo account gratuito su HTX. Vivi un'esperienza facile e sblocca tutte le funzionalità,Crea il mio accountStep 2: Vai in Acquista crypto e seleziona il tuo metodo di pagamentoCarta di credito/debito: utilizza la tua Visa o Mastercard per acquistare immediatamente SonicS.Bilancio: Usa i fondi dal bilancio del tuo account HTX per fare trading senza problemi.Terze parti: abbiamo aggiunto metodi di pagamento molto utilizzati come Google Pay e Apple Pay per maggiore comodità.P2P: Fai trading direttamente con altri utenti HTX.Over-the-Counter (OTC): Offriamo servizi su misura e tassi di cambio competitivi per i trader.Step 3: Conserva Sonic (S)Dopo aver acquistato Sonic (S), conserva nel tuo account HTX. In alternativa, puoi inviare tramite trasferimento blockchain o scambiare per altre criptovalute.Step 4: Scambia Sonic (S)Scambia facilmente Sonic (S) nel mercato spot di HTX. Accedi al tuo account, seleziona la tua coppia di trading, esegui le tue operazioni e monitora in tempo reale. Offriamo un'esperienza user-friendly sia per chi ha appena iniziato che per i trader più esperti.

1.1k Totale visualizzazioniPubblicato il 2025.01.15Aggiornato il 2026.06.02

Come comprare S

Discussioni

Benvenuto nella Community HTX. Qui puoi rimanere informato sugli ultimi sviluppi della piattaforma e accedere ad approfondimenti esperti sul mercato. Le opinioni degli utenti sul prezzo di S S sono presentate come di seguito.

活动图片