Claude Code之父的夜班AI军团,Fable 5两个命令搭好

marsbitPublished on 2026-07-20Last updated on 2026-07-20

Abstract

Claude Code创始人Boris Cherny分享了他完全依赖AI编程的实践:过去一年未手写一行代码,每天通过数百个AI智能体处理数十个PR,夜间更有数千个智能体自动工作。其核心方法是利用“循环(Loop)”机制,让AI按定时任务自主运行,如自动修复CI、整理用户反馈等,甚至AI会主动建议创建循环。 他认为,编程已从“写代码”转向“设计自动化系统”。在Anthropic,AI智能体已在Slack中自主协作,公司内几乎无人手写代码,各职能员工都通过调度AI工作。 关键在“验收”环节:通过/goal命令设定明确目标,并由独立模型监督验证,确保AI产出质量。普通人也可通过Fable 5的/goal和/loop命令实现类似自动化。建议配置本地上下文系统(如业务概要、记忆文件),让AI记住用户背景,并将Fable 5用于核心任务,辅以更经济模型处理琐事。 最终,高效利用AI取决于能否清晰定义“任务完成标准”,这正是当前人机协作的核心能力。

过去一年,他没再亲手写过一行代码。

他每天提交几十个PR,有一天冲到150个,创了个人纪录。

更离谱的是,他手上同时跑着几百个AI智能体,每晚还有几千个替他上夜班。

这是Claude Code之父Boris Cherny,前段时间在一场面向开发者的公开对谈上亲口说的。

他手机上开着Claude应用,左边一个小小的代码标签,里面同时挂着5到10个会话。

每个会话底下又是一堆智能体,白天几百个在跑,一到晚上,几千个开始干更深的活。

模型写了全部的代码,他一行都不碰。

对于他来说,编程这事,已经解决了。

一个人凭什么能管几千智能体?

一个人管几千个智能体,让它们同时在一个代码库里改代码,不失控、不打架、不成批制造垃圾。

Boris的秘诀,藏在一个词背后:循环(Loop)。

他说,Loop是他见过最简单、又最好用的东西,Loop才是未来。

Loop的本质,是让Claude用定时任务调度一个能重复跑的活,每分钟、每五分钟、每天,随你定。跑起来之后,基本不用管。

他手上有几十个Loop常年在转:

一个专门盯着他的PR,自动修持续集成(CI)、自动变基;

一个负责让CI保持健康,哪个测试不稳定,它自己去修;

还有一个每30分钟去X上扒一遍用户反馈,聚类整理好了再提交给他。

更关键的是,越到后面,连开Loop这一步都不太用Boris开口了。

有回他只让模型跑个数据查询,模型自己回了一句:我发现这份数据一直在变,那我起个Loop,每30分钟给你出份报告。

他说行,顺手发我Slack上。模型转头就把这事办了。

就在前段时间,Boris还说自己不再写prompt了,只写loop。

很快可能他连loop也不用写了。

智能体

正在改写「干活」这件事

这背后,是「干活」这件事本身变了。

过去是你写一句、AI答一句、你再写下一句;现在是你搭一个会自己找活、自己干活、自己交活的小系统,然后转身走开。

Anthropic前不久还上线了Routines,把同一套机制搬到服务器端,合上电脑,它照跑不误。

「工程师」这个角色,在Boris这儿也被改写了:

模型负责写代码,他负责搭系统、做验收。一天几十上百个PR从智能体手里冒出来,他真正的活儿,是判断哪些能合、哪些得打回去。

用他的话说,这并非「AI取代了工程师」,而是人正从操作执行者,变成自动化系统的设计者:重心从「把这一行代码写对」,挪到了「搭一套能自己把代码写对的系统」。

他甚至预测,再过一年,防提示注入、命令校验、人工审批这些安全环节都会没那么重要,因为模型会越来越自觉地做对的事。

而这套打法,早就不只是他一个人的玩法。

据Boris说,公司里几乎没有手写代码这回事了,连SQL都是模型写的。整个公司,找不出几行还是人敲出来的代码。

更魔幻的是另一幕。当他的几个Claude在Loop里写代码时,它们会自己跑到Slack上,跟同事的Claude聊天,对齐那些谁都还没想明白的地方。

一群AI在Slack群里开会,把活儿分清楚,各自回去干,这在Anthropic已经是日常。

更狠的是团队构成:工程经理、产品经理、设计师、数据科学家、财务、用户研究员,每一个人都在写代码。

职能还在,但人人都多了一层「调度AI去干活」的通用能力,成了跨学科的通才。

从写prompt到写loop

中间隔着一道验收

一个会自己无限干活的AI,凭什么不是一台高速产出bug的机器?

答案在一个被大多数人略过的环节:验收。

Loop能自己跑而不自嗨,靠的是一套「目标驱动」机制,在Claude Code里对应/goal命令。

你给它一个目标,比如「/tests/下所有单测通过、lint干净」,它每干完一步,就有一个独立的小模型来判一次:到了没?没到,接着干;到了,停。

这个负责打分的「监工模型」,不是那个干活的模型。

这个简单的设计,恰恰是整个loop的心脏。

没有它,一个跑一整晚的Loop,很可能就是一台睡着了还在批量提交垃圾代码的机器,而且提得理直气壮。

Boris早就验证过这一点。

他此前分享工作流时给过一条建议:想把Claude Code榨到极致,最重要的一步,就是给它一个能验证自己工作的方式。

一旦有了这个反馈闭环,产出质量通常能翻2到3倍。

一个「让AI自己检查自己」的动作,抵得上换一代模型。

这套循环普通人也能用

前面那套循环,已经被做成了产品,普通人照样能上手。

Fable 5发布后,一份在X上流传很广的教程,作者实测3周后称:大多数人像用普通Claude那样用Fable 5,等于白白浪费了它真正值得付费的东西。

该作者先点出Fable 5区别于以往所有Claude模型的三项能力。

教程总结的Fable 5三大能力:长期自主干活、自我校验、读懂密集图表。

第一项,它能连着干几天的活,而非几分钟。

以往的模型都是短跑选手,Fable 5是第一个为「长期自主干活」而生的模型。

在Claude Code里,你可以把一个跨越多天的项目整个丢给它,它自己分阶段规划、自己派子智能体、一直干到达标为止。

第二项,它会自己查自己。任务干完,它不急着交差,先给自己写测试、跑测试、抓出错误、修完,才说一声「做完了」。

第三项,是读懂密集图表的能力。

据作者实测,财报里的表格、PDF里嵌的图、架构图、仪表盘截图,以往Opus 4.8偶尔会认错列、看混坐标轴的地方,Fable 5能稳定读对。

而要把这些能力真正用起来,靠的就是两个命令:/goal和/loop。

不用它们,你是在花2倍的价钱买一个聊天机器人;用上它们,你买到的是一个自主干活的员工。

/goal奔着终点跑,到了自己停;/loop按点反复跑,直到你喊停。

/goal的机制,是你定义结果,它负责迭代。它能不能跑好,有条铁律:把「完成标准」写具体,而且必须给一条失败退路。

比如,「改进这段代码」是个坏目标,因为没法验证;「/tests/下所有测试通过,只许改/src里的文件,修3次还不过就停下来汇报」是个好目标,因为每一条都能核对。

/loop则不奔某个终点,而是按点反复跑,跑到你喊停。

比如每30分钟查一遍错误日志,把严重级别的挑出来用大白话汇报;或者每小时扫一遍收件箱,摘要新邮件、把该回的草稿先拟好。

分工口诀就三句:有明确终点,用/goal;按周期重复,用/loop;要一直跑到某个条件达成,两个叠着用。

放手之前,还有句最实在的告诫:先把花费的上限设好。一个没封顶的/goal撞上难题,token能烧得飞快。

让它记住你:20分钟的本地配置

教程还提到一步,多数指南都跳过了,偏偏最要紧。

Fable 5不会记住你。每次开新会话,它对你的业务、文风、客户、偏好一无所知,一切从零开始。

解法是在自己机器上搭一套本地上下文系统,只用20分钟就能搭完。

一个文件夹、两个markdown文件、一组技能,就是让Fable 5「认识你」的全部配置。

一共分四步。

第一步,建一个上下文文件夹,比如叫fable-workspace,当作它每次开工前必读的「单一事实源」。

文件夹中可以放如下内容:一页纸的业务和优先事项概要、常干活儿的操作规程、在办项目的关键信息、常引用的战略文档,再加一份决策日志。

每个文件压在一页内,内容太多反而吃掉上下文窗口。

第二步,建一个记忆文件claude-memory.md,再留一条指令:每当我聊到业务、偏好或处境的重要信息,就把要点更新进去,写短点,标上日期。

从此它自我更新,你提过一次新客户,下次会话它已经知道。

第三步,建一个指令文件claude-instructions.md,写清每次会话的行为守则:开工前先读记忆文件、给建议前先翻旧决策、拿不准就问别瞎猜、干完活主动汇报并标出需要人过目的地方。

第四步,在Claude Code里用/add指向这个文件夹,或写进CLAUDE.md。连上之后,每次会话一开场,它就已经带着你的全部背景。

这套配置还有个好处:哪天换了别的AI工具,上下文直接打包带走。

省钱方面,有一套二八打法:只把Fable 5用在那20%真正吃它长处的活上。

在Claude Code里,Fable还能自己派更省钱的子智能体去干粗活:它出方案,Sonnet、Haiku这些去执行,最后再由它回来验收。

到这一步你会发现,Boris那套「夜间AI军团」拆开无非三样:

一个会自己干活的模型、一套定义「做完」的标准、一个按时运转的循环。

模型和循环都已具备。

真正稀缺的,是那个能和模型说清「任务做完是什么样」的人。

参考资料:

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

本文来自微信公众号“新智元”,编辑:元宇

Trending Cryptos

Related Questions

QBoris Cherny是如何管理数千个AI智能体在同一个代码库中工作的?

ABoris Cherny 通过使用“循环”(Loop)机制来管理数千个AI智能体。Loop是一个能让Claude以定时任务(如每分钟、每五分钟、每天)重复执行某项工作的系统。他部署了数十个常驻Loop,例如自动修复CI、保持测试健康、定期收集用户反馈等。更关键的是,他构建了一个“目标驱动”的验收机制(如/goal命令),为每个任务设置明确、可验证的终点,并让一个独立的“监工模型”来检查任务是否达标,从而确保智能体高效、有序地工作,避免产生无效代码或陷入混乱。

Q文章中提到Fable 5的哪两项核心命令至关重要?它们分别用于什么场景?

AFable 5 两项核心命令是 `/goal` 和 `/loop`。/goal 用于有明确终点的任务,它让AI朝着一个定义好的目标(如“所有测试通过”)迭代工作,直到达成目标后自动停止。/loop 用于周期性重复的任务,它让AI按照设定好的时间间隔(如每30分钟)重复执行某项工作(如检查错误日志),直到被手动叫停。文章总结的分工口诀是:有明确终点用/goal;按周期重复用/loop;要一直跑到某个条件达成,则可以将两者叠加使用。

Q为了让Fable 5能“记住”用户,需要如何配置本地上下文系统?

A为了让Fable 5“记住”用户,需要在本地机器上搭建一个上下文系统,大致分为四步:1. 创建一个上下文文件夹(如 fable-workspace),作为“单一事实源”,存放业务概要、操作规程、项目信息、决策日志等一页内的文档。2. 创建一个记忆文件(claude-memory.md),并指令AI在会话中自动将重要信息(如新客户、偏好)以简短要点形式更新进去。3. 创建一个指令文件(claude-instructions.md),写明每次会话的行为守则,如先读记忆文件、参考旧决策、主动汇报等。4. 在Claude Code中使用 /add 命令指向这个文件夹,或将其路径写入 CLAUDE.md 文件。这样每次新会话开始,AI就已携带用户的全部背景信息。

Q根据文章观点,在AI自动化时代,“工程师”的角色发生了怎样的转变?

A在AI自动化时代,“工程师”的角色正从代码的直接编写者和执行者,转变为自动化系统的设计者和验收者。具体来说,模型(AI)负责实际的代码编写工作,而人的核心工作变成了:1. 设计和搭建能够自主找活、干活、交活的智能体系统(如设置Loop)。2. 为任务定义清晰、可验证的完成标准(即验收条件)。3. 审阅AI提交的大量工作成果(如PR),判断哪些可以合并,哪些需要打回修改。重心从“亲手把这一行代码写对”,转移到了“搭建一套能自己把代码写对的系统”。

Q文章中提到的“目标驱动”验收机制(如/goal)如何提升AI工作的质量?

A“目标驱动”的验收机制(如/goal命令)通过设立明确的、可验证的终点,并引入独立的“监工模型”进行评判,大幅提升了AI工作的质量。其核心原理是建立了一个反馈闭环:1. 它将模糊的指令(如“改进代码”)转化为具体、可衡量的目标(如“/tests/下所有测试通过”)。2. AI每完成一步,监工模型就会检查是否达到目标,若未达到则继续工作或修正。3. 这防止了AI在无监督下长时间运行却偏离方向或产生大量无效成果。Boris Cherny 验证,有了这个自我检查的闭环,产出质量通常能提升2到3倍,其效果堪比升级一代模型。

Related Reads

After Three Consecutive Quarters of Decline, Can the Crypto Market Find a Window for Stabilization in Q3?

The cryptocurrency market has just concluded its worst-performing quarter since 2022, with total capitalization dropping 12.6% to $2.1 trillion. All core metrics indicate capital is leaving the sector, not just rotating within it. Bitcoin fell 14.2% and Ethereum dropped 25.4% in Q2, breaking their previous correlation with US tech stocks. A key driver is the reversal in US spot Bitcoin ETF flows, which saw a net outflow of approximately $4.67 billion in Q2, including a record monthly outflow near $4.5 billion in June. While recent data suggests long-term holders are accumulating again, sustained ETF outflows mean continued selling pressure. Market focus is now singularly on the Federal Reserve. The upcoming July FOMC meeting is seen as the most critical event for Q3. A dovish signal could support Bitcoin reclaiming a $68,000-$84,000 range, while a hawkish stance might establish a new trading band around $50,000-$56,000. Additionally, regulatory uncertainty persists, with the progress of the crucial *CLARITY Act* stalling in the Senate, reducing its perceived 2026 passage probability to 40-45%. Despite the broad downturn, a few sectors showed growth. Prediction markets saw nominal volume surge 48.7% year-over-year to $113.8 billion, and tokenized collectibles transaction volume rose 143% quarterly to $1.4 billion. The Real-World Asset (RWA) tokenization sector also continued steady growth, now representing ~$28.1 billion in on-chain value. The market's foundation for an extreme crash appears limited, with Bitcoin price hovering near its 200-week moving average. However, the trading paradigm has shifted from narrative-driven speculation to decisions based on price action, policy developments, and interest rate expectations, making a broad sentiment-driven rally unlikely in the near term.

marsbit2h ago

After Three Consecutive Quarters of Decline, Can the Crypto Market Find a Window for Stabilization in Q3?

marsbit2h ago

BIT Trading Moment: BTC Still Suppressed by Weekly 200 EMA, Rejection May Restart Decline; Storage and Semiconductors that Surged Last Night Begin Falling in Evening Trading

**Crypto & Stock Market Wrap: Bitcoin Tests Resistance, Stocks Retreat After AI Surge** Bitcoin consolidates around $66,000, facing key resistance near $68,000—an area seen as a major psychological and technical hurdle where previous rallies have failed. Analysts note the cryptocurrency is caught between its 200-week moving average (~$63,333) and 200-week EMA (~$68,328). A clear break above $68k is needed to signal a stronger bullish trend, while a rejection could lead to a retest of $63k support. Market sentiment remains cautious, with low futures open interest pointing to a low-liquidity rebound rather than a full bull market. Bitcoin spot ETFs saw another $203 million inflow. US stock futures pointed lower after a strong Tuesday session led by a massive rebound in semiconductors and memory stocks. The rally was fueled by renewed optimism about AI-driven hardware demand, with Micron, SanDisk, and SK Hynix surging. However, those gains reversed in pre-market trading. Super Micro Computer (SMCI) soared over 20% after hours on strong guidance and a record backlog. Other standouts included Rocket Lab and nuclear energy plays Oklo and X-Energy. Rising oil prices (Brent above $91) and climbing Treasury yields (10-year near 4.64%), however, are reigniting inflation concerns and acting as a headwind for equities. In Asia, markets were mixed. South Korea's KOSPI pared early gains to close slightly higher as semiconductor stocks like SK Hynix gave back initial surges. Japan's Nikkei edged lower as the yen hit a fresh 38-year low against the dollar, raising fears of potential market intervention. Key events to watch include the Samsung Galaxy launch, AMD's AI event, and a slew of major tech earnings from Alphabet, Tesla, and IBM after the close on Wednesday, followed by the ECB meeting and Intel's earnings on Thursday.

marsbit2h ago

BIT Trading Moment: BTC Still Suppressed by Weekly 200 EMA, Rejection May Restart Decline; Storage and Semiconductors that Surged Last Night Begin Falling in Evening Trading

marsbit2h ago

Former CFTC Chairman, Circle President Tarbert: Preaching Long-Termism While Cashing Out $30 Million Himself

Former CFTC Chairman and Circle President Heath Tarbert has consistently advocated for a long-term vision in public, urging patience from investors as Circle’s stock price has fallen significantly from its peak. However, it has been revealed that since Circle’s IPO, Tarbert has continuously sold his CRCL shares through pre-arranged trading plans, cashing out approximately $30 million, without making any public market purchases. This contrast between his public messaging and personal actions has drawn criticism. Tarbert joined Circle in July 2023 as Chief Legal Officer, leveraging his regulatory experience to help guide the company through its IPO and expansion. Despite promoting stablecoins as long-term infrastructure, he established a 10b5-1 trading plan just before Circle went public, leading to substantial stock sales over the following year. In March 2026, he initiated another plan to sell more shares. His career trajectory highlights a pattern of moving between high-level regulatory roles and influential positions in the financial sector. After resigning as CFTC Chairman in early 2021, he joined Citadel Securities as Chief Legal Officer just 27 days later, during a period of intense regulatory scrutiny for the firm. He later joined Circle, aiding its efforts to navigate regulatory challenges for its public listing. While Tarbert's expertise in policy and compliance is valuable to companies like Circle, his actions—advocating long-term confidence while personally divesting—raise questions about the alignment between his public statements and his private financial decisions, leaving investors who followed his advice to bear the market risks.

marsbit2h ago

Former CFTC Chairman, Circle President Tarbert: Preaching Long-Termism While Cashing Out $30 Million Himself

marsbit2h ago

Gate Research Institute: The 'Wall Street-ization' Wave of Crypto Financial Products – Competition or Integration?

The article titled "Gate Research Institute: Are Crypto Financial Products Sparking a 'Wall Street' Wave—Competition or Convergence?" explores the evolving relationship between the crypto ecosystem and traditional finance (TradFi). The piece begins by reflecting on Bitcoin's original 2009 vision of decentralization, disintermediation, and moving away from banks. It then contrasts this with the 2024 landscape, where key crypto assets like Bitcoin are increasingly held through Wall Street products like ETFs issued by giants like BlackRock. The article questions whether this signifies that TradFi is systematically taking over the rights to issue, price, custody, and distribute crypto financial assets. The core argument is that this is not a zero-sum takeover but rather a bidirectional convergence where each side addresses the other's weaknesses. Crypto offers 24/7 global markets, programmable settlement, and open access but lacks compliant channels, institutional-grade custody, deep fiat liquidity, and mainstream distribution. TradFi possesses these but is constrained by legacy systems, limited operating hours, and slow settlement. Two primary convergence paths are highlighted: * **Path A (CEX to TradFi):** Exemplified by Gate, which has progressed from offering tokenized stocks and CFDs to providing direct, real stock trading (US, Hong Kong, South Korea) within its platform, using USDT. * **Path B (TradFi to Crypto):** Exemplified by Robinhood, which has integrated crypto trading, acquired exchanges like Bitstamp, and is moving traditional assets like stocks onto the blockchain via tokenization and its own Layer 2. Both paths are ultimately competing to become the next-generation, unified financial account—a "super account" where users can seamlessly trade cryptocurrencies, stocks, ETFs, RWA (Real World Assets), and tokenized treasury products in one interface. The growth of RWA and tokenized treasuries (e.g., BlackRock's BUIDL) is presented as the asset-layer fusion, providing stable, yield-bearing assets on-chain and acting as a bridge between the two worlds. In conclusion, the "Wall Street-ization" of crypto is framed as a mutual transformation. Decentralized ideals persist in the protocol layer, while at the application layer, a more efficient, global, and accessible unified capital market is emerging from this convergence. The future competition lies not between crypto exchanges and stockbrokers, but between platforms vying to offer the most comprehensive asset coverage, liquidity, and user experience within a single account.

marsbit2h ago

Gate Research Institute: The 'Wall Street-ization' Wave of Crypto Financial Products – Competition or Integration?

marsbit2h ago

Trading

Spot

Hot Articles

What is SONIC

Sonic: Pioneering the Future of Gaming in Web3 Introduction to Sonic In the ever-evolving landscape of Web3, the gaming industry stands out as one of the most dynamic and promising sectors. At the forefront of this revolution is Sonic, a project designed to amplify the gaming ecosystem on the Solana blockchain. Leveraging cutting-edge technology, Sonic aims to deliver an unparalleled gaming experience by efficiently processing millions of requests per second, ensuring that players enjoy seamless gameplay while maintaining low transaction costs. This article delves into the intricate details of Sonic, exploring its creators, funding sources, operational mechanics, and the timeline of significant events that have shaped its journey. What is Sonic? Sonic is an innovative layer-2 network that operates atop the Solana blockchain, specifically tailored to enhance the existing Solana gaming ecosystem. It accomplishes this through a customised, VM-agnostic game engine paired with a HyperGrid interpreter, facilitating sovereign game economies that roll up back to the Solana platform. The primary goals of Sonic include: Enhanced Gaming Experiences: Sonic is committed to offering lightning-fast on-chain gameplay, allowing players and developers to engage with games at previously unattainable speeds. Atomic Interoperability: This feature enables transactions to be executed within Sonic without the need to redeploy Solana programmes and accounts. This makes the process more efficient and directly benefits from Solana Layer1 services and liquidity. Seamless Deployment: Sonic allows developers to write for Ethereum Virtual Machine (EVM) based systems and execute them on Solana’s SVM infrastructure. This interoperability is crucial for attracting a broader range of dApps and decentralised applications to the platform. Support for Developers: By offering native composable gaming primitives and extensible data types - dining within the Entity-Component-System (ECS) framework - game creators can craft intricate business logic with ease. Overall, Sonic's unique approach not only caters to players but also provides an accessible and low-cost environment for developers to innovate and thrive. Creator of Sonic The information regarding the creator of Sonic is somewhat ambiguous. However, it is known that Sonic's SVM is owned by the company Mirror World. The absence of detailed information about the individuals behind Sonic reflects a common trend in several Web3 projects, where collective efforts and partnerships often overshadow individual contributions. Investors of Sonic Sonic has garnered considerable attention and support from various investors within the crypto and gaming sectors. Notably, the project raised an impressive $12 million during its Series A funding round. The round was led by BITKRAFT Ventures, with other notable investors including Galaxy, Okx Ventures, Interactive, Big Brain Holdings, and Mirana. This financial backing signifies the confidence that investment foundations have in Sonic’s potential to revolutionise the Web3 gaming landscape, further validating its innovative approaches and technologies. How Does Sonic Work? Sonic utilises the HyperGrid framework, a sophisticated parallel processing mechanism that enhances its scalability and customisability. Here are the core features that set Sonic apart: Lightning Speed at Low Costs: Sonic offers one of the fastest on-chain gaming experiences compared to other Layer-1 solutions, powered by the scalability of Solana’s virtual machine (SVM). Atomic Interoperability: Sonic enables transaction execution without redeployment of Solana programmes and accounts, effectively streamlining the interaction between users and the blockchain. EVM Compatibility: Developers can effortlessly migrate decentralised applications from EVM chains to the Solana environment using Sonic’s HyperGrid interpreter, increasing the accessibility and integration of various dApps. Ecosystem Support for Developers: By exposing native composable gaming primitives, Sonic facilitates a sandbox-like environment where developers can experiment and implement business logic, greatly enhancing the overall development experience. Monetisation Infrastructure: Sonic natively supports growth and monetisation efforts, providing frameworks for traffic generation, payments, and settlements, thereby ensuring that gaming projects are not only viable but also sustainable financially. Timeline of Sonic The evolution of Sonic has been marked by several key milestones. Below is a brief timeline highlighting critical events in the project's history: 2022: The Sonic cryptocurrency was officially launched, marking the beginning of its journey in the Web3 gaming arena. 2024: June: Sonic SVM successfully raised $12 million in a Series A funding round. This investment allowed Sonic to further develop its platform and expand its offerings. August: The launch of the Sonic Odyssey testnet provided users with the first opportunity to engage with the platform, offering interactive activities such as collecting rings—a nod to gaming nostalgia. October: SonicX, an innovative crypto game integrated with Solana, made its debut on TikTok, capturing the attention of over 120,000 users within a short span. This integration illustrated Sonic’s commitment to reaching a broader, global audience and showcased the potential of blockchain gaming. Key Points Sonic SVM is a revolutionary layer-2 network on Solana explicitly designed to enhance the GameFi landscape, demonstrating great potential for future development. HyperGrid Framework empowers Sonic by introducing horizontal scaling capabilities, ensuring that the network can handle the demands of Web3 gaming. Integration with Social Platforms: The successful launch of SonicX on TikTok displays Sonic’s strategy to leverage social media platforms to engage users, exponentially increasing the exposure and reach of its projects. Investment Confidence: The substantial funding from BITKRAFT Ventures, among others, emphasizes the robust backing Sonic has, paving the way for its ambitious future. In conclusion, Sonic encapsulates the essence of Web3 gaming innovation, striking a balance between cutting-edge technology, developer-centric tools, and community engagement. As the project continues to evolve, it is poised to redefine the gaming landscape, making it a notable entity for gamers and developers alike. As Sonic moves forward, it will undoubtedly attract greater interest and participation, solidifying its place within the broader narrative of blockchain gaming.

1.9k Total ViewsPublished 2024.04.04Updated 2024.12.03

What is SONIC

What is $S$

Understanding SPERO: A Comprehensive Overview Introduction to SPERO As the landscape of innovation continues to evolve, the emergence of web3 technologies and cryptocurrency projects plays a pivotal role in shaping the digital future. One project that has garnered attention in this dynamic field is SPERO, denoted as SPERO,$$s$. This article aims to gather and present detailed information about SPERO, to help enthusiasts and investors understand its foundations, objectives, and innovations within the web3 and crypto domains. What is SPERO,$$s$? SPERO,$$s$ is a unique project within the crypto space that seeks to leverage the principles of decentralisation and blockchain technology to create an ecosystem that promotes engagement, utility, and financial inclusion. The project is tailored to facilitate peer-to-peer interactions in new ways, providing users with innovative financial solutions and services. At its core, SPERO,$$s$ aims to empower individuals by providing tools and platforms that enhance user experience in the cryptocurrency space. This includes enabling more flexible transaction methods, fostering community-driven initiatives, and creating pathways for financial opportunities through decentralised applications (dApps). The underlying vision of SPERO,$$s$ revolves around inclusiveness, aiming to bridge gaps within traditional finance while harnessing the benefits of blockchain technology. Who is the Creator of SPERO,$$s$? The identity of the creator of SPERO,$$s$ remains somewhat obscure, as there are limited publicly available resources providing detailed background information on its founder(s). This lack of transparency can stem from the project's commitment to decentralisation—an ethos that many web3 projects share, prioritising collective contributions over individual recognition. By centring discussions around the community and its collective goals, SPERO,$$s$ embodies the essence of empowerment without singling out specific individuals. As such, understanding the ethos and mission of SPERO remains more important than identifying a singular creator. Who are the Investors of SPERO,$$s$? SPERO,$$s$ is supported by a diverse array of investors ranging from venture capitalists to angel investors dedicated to fostering innovation in the crypto sector. The focus of these investors generally aligns with SPERO's mission—prioritising projects that promise societal technological advancement, financial inclusivity, and decentralised governance. These investor foundations are typically interested in projects that not only offer innovative products but also contribute positively to the blockchain community and its ecosystems. The backing from these investors reinforces SPERO,$$s$ as a noteworthy contender in the rapidly evolving domain of crypto projects. How Does SPERO,$$s$ Work? SPERO,$$s$ employs a multi-faceted framework that distinguishes it from conventional cryptocurrency projects. Here are some of the key features that underline its uniqueness and innovation: Decentralised Governance: SPERO,$$s$ integrates decentralised governance models, empowering users to participate actively in decision-making processes regarding the project’s future. This approach fosters a sense of ownership and accountability among community members. Token Utility: SPERO,$$s$ utilises its own cryptocurrency token, designed to serve various functions within the ecosystem. These tokens enable transactions, rewards, and the facilitation of services offered on the platform, enhancing overall engagement and utility. Layered Architecture: The technical architecture of SPERO,$$s$ supports modularity and scalability, allowing for seamless integration of additional features and applications as the project evolves. This adaptability is paramount for sustaining relevance in the ever-changing crypto landscape. Community Engagement: The project emphasises community-driven initiatives, employing mechanisms that incentivise collaboration and feedback. By nurturing a strong community, SPERO,$$s$ can better address user needs and adapt to market trends. Focus on Inclusion: By offering low transaction fees and user-friendly interfaces, SPERO,$$s$ aims to attract a diverse user base, including individuals who may not previously have engaged in the crypto space. This commitment to inclusion aligns with its overarching mission of empowerment through accessibility. Timeline of SPERO,$$s$ Understanding a project's history provides crucial insights into its development trajectory and milestones. Below is a suggested timeline mapping significant events in the evolution of SPERO,$$s$: Conceptualisation and Ideation Phase: The initial ideas forming the basis of SPERO,$$s$ were conceived, aligning closely with the principles of decentralisation and community focus within the blockchain industry. Launch of Project Whitepaper: Following the conceptual phase, a comprehensive whitepaper detailing the vision, goals, and technological infrastructure of SPERO,$$s$ was released to garner community interest and feedback. Community Building and Early Engagements: Active outreach efforts were made to build a community of early adopters and potential investors, facilitating discussions around the project’s goals and garnering support. Token Generation Event: SPERO,$$s$ conducted a token generation event (TGE) to distribute its native tokens to early supporters and establish initial liquidity within the ecosystem. Launch of Initial dApp: The first decentralised application (dApp) associated with SPERO,$$s$ went live, allowing users to engage with the platform's core functionalities. Ongoing Development and Partnerships: Continuous updates and enhancements to the project's offerings, including strategic partnerships with other players in the blockchain space, have shaped SPERO,$$s$ into a competitive and evolving player in the crypto market. Conclusion SPERO,$$s$ stands as a testament to the potential of web3 and cryptocurrency to revolutionise financial systems and empower individuals. With a commitment to decentralised governance, community engagement, and innovatively designed functionalities, it paves the way toward a more inclusive financial landscape. As with any investment in the rapidly evolving crypto space, potential investors and users are encouraged to research thoroughly and engage thoughtfully with the ongoing developments within SPERO,$$s$. The project showcases the innovative spirit of the crypto industry, inviting further exploration into its myriad possibilities. While the journey of SPERO,$$s$ is still unfolding, its foundational principles may indeed influence the future of how we interact with technology, finance, and each other in interconnected digital ecosystems.

156 Total ViewsPublished 2024.12.17Updated 2024.12.17

What is $S$

What is AGENT S

Agent S: The Future of Autonomous Interaction in Web3 Introduction In the ever-evolving landscape of Web3 and cryptocurrency, innovations are constantly redefining how individuals interact with digital platforms. One such pioneering project, Agent S, promises to revolutionise human-computer interaction through its open agentic framework. By paving the way for autonomous interactions, Agent S aims to simplify complex tasks, offering transformative applications in artificial intelligence (AI). This detailed exploration will delve into the project's intricacies, its unique features, and the implications for the cryptocurrency domain. What is Agent S? Agent S stands as a groundbreaking open agentic framework, specifically designed to tackle three fundamental challenges in the automation of computer tasks: Acquiring Domain-Specific Knowledge: The framework intelligently learns from various external knowledge sources and internal experiences. This dual approach empowers it to build a rich repository of domain-specific knowledge, enhancing its performance in task execution. Planning Over Long Task Horizons: Agent S employs experience-augmented hierarchical planning, a strategic approach that facilitates efficient breakdown and execution of intricate tasks. This feature significantly enhances its ability to manage multiple subtasks efficiently and effectively. Handling Dynamic, Non-Uniform Interfaces: The project introduces the Agent-Computer Interface (ACI), an innovative solution that enhances the interaction between agents and users. Utilizing Multimodal Large Language Models (MLLMs), Agent S can navigate and manipulate diverse graphical user interfaces seamlessly. Through these pioneering features, Agent S provides a robust framework that addresses the complexities involved in automating human interaction with machines, setting the stage for myriad applications in AI and beyond. Who is the Creator of Agent S? While the concept of Agent S is fundamentally innovative, specific information about its creator remains elusive. The creator is currently unknown, which highlights either the nascent stage of the project or the strategic choice to keep founding members under wraps. Regardless of anonymity, the focus remains on the framework's capabilities and potential. Who are the Investors of Agent S? As Agent S is relatively new in the cryptographic ecosystem, detailed information regarding its investors and financial backers is not explicitly documented. The lack of publicly available insights into the investment foundations or organisations supporting the project raises questions about its funding structure and development roadmap. Understanding the backing is crucial for gauging the project's sustainability and potential market impact. How Does Agent S Work? At the core of Agent S lies cutting-edge technology that enables it to function effectively in diverse settings. Its operational model is built around several key features: Human-like Computer Interaction: The framework offers advanced AI planning, striving to make interactions with computers more intuitive. By mimicking human behaviour in tasks execution, it promises to elevate user experiences. Narrative Memory: Employed to leverage high-level experiences, Agent S utilises narrative memory to keep track of task histories, thereby enhancing its decision-making processes. Episodic Memory: This feature provides users with step-by-step guidance, allowing the framework to offer contextual support as tasks unfold. Support for OpenACI: With the ability to run locally, Agent S allows users to maintain control over their interactions and workflows, aligning with the decentralised ethos of Web3. Easy Integration with External APIs: Its versatility and compatibility with various AI platforms ensure that Agent S can fit seamlessly into existing technological ecosystems, making it an appealing choice for developers and organisations. These functionalities collectively contribute to Agent S's unique position within the crypto space, as it automates complex, multi-step tasks with minimal human intervention. As the project evolves, its potential applications in Web3 could redefine how digital interactions unfold. Timeline of Agent S The development and milestones of Agent S can be encapsulated in a timeline that highlights its significant events: September 27, 2024: The concept of Agent S was launched in a comprehensive research paper titled “An Open Agentic Framework that Uses Computers Like a Human,” showcasing the groundwork for the project. October 10, 2024: The research paper was made publicly available on arXiv, offering an in-depth exploration of the framework and its performance evaluation based on the OSWorld benchmark. October 12, 2024: A video presentation was released, providing a visual insight into the capabilities and features of Agent S, further engaging potential users and investors. These markers in the timeline not only illustrate the progress of Agent S but also indicate its commitment to transparency and community engagement. Key Points About Agent S As the Agent S framework continues to evolve, several key attributes stand out, underscoring its innovative nature and potential: Innovative Framework: Designed to provide an intuitive use of computers akin to human interaction, Agent S brings a novel approach to task automation. Autonomous Interaction: The ability to interact autonomously with computers through GUI signifies a leap towards more intelligent and efficient computing solutions. Complex Task Automation: With its robust methodology, it can automate complex, multi-step tasks, making processes faster and less error-prone. Continuous Improvement: The learning mechanisms enable Agent S to improve from past experiences, continually enhancing its performance and efficacy. Versatility: Its adaptability across different operating environments like OSWorld and WindowsAgentArena ensures that it can serve a broad range of applications. As Agent S positions itself in the Web3 and crypto landscape, its potential to enhance interaction capabilities and automate processes signifies a significant advancement in AI technologies. Through its innovative framework, Agent S exemplifies the future of digital interactions, promising a more seamless and efficient experience for users across various industries. Conclusion Agent S represents a bold leap forward in the marriage of AI and Web3, with the capacity to redefine how we interact with technology. While still in its early stages, the possibilities for its application are vast and compelling. Through its comprehensive framework addressing critical challenges, Agent S aims to bring autonomous interactions to the forefront of the digital experience. As we move deeper into the realms of cryptocurrency and decentralisation, projects like Agent S will undoubtedly play a crucial role in shaping the future of technology and human-computer collaboration.

824 Total ViewsPublished 2025.01.14Updated 2025.01.14

What is AGENT S

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of S (S) are presented below.

活动图片