When AI's Bottleneck Is No Longer the Model: Perseus Yang's Open Source Ecosystem Building Practices and Reflections

marsbitОпубликовано 2026-04-13Обновлено 2026-04-13

Введение

In 2026, the AI industry's primary bottleneck is no longer model capability but rather the encoding of domain knowledge, agent-world interfaces, and toolchain maturity. The open-source community is rapidly bridging this gap, evidenced by projects like OpenClaw and Claude Code experiencing explosive growth in their Skill ecosystems. Perseus Yang, a contributor to over a dozen AI open-source projects, argues that Skill systems are the most underestimated infrastructure of the AI agent era. They enable non-coders to program AI by writing natural language SKILL.md files, transferring power from engineers to all professionals. His project, GTM Engineer Skills, demonstrates this by automating go-to-market workflows, proving Skills can extend far beyond engineering into areas like product strategy and business analysis. He also identifies a critical blind spot: while browser automation thrives, agent operations are nearly absent from mobile apps, the world's dominant computing interface. His project, OpenPocket, is an open-source framework that allows agents to operate Android devices via ADB. It features human-in-the-loop security, agent isolation, and the ability for agents to autonomously create and save new reusable Skills. Yang believes the value of open source lies not in the code itself, but in defining the infrastructure standards during this formative period. His work validates the SKILL.md format as a portable unit for agent capability and pioneers new architectures for...

Author: Liu Jun

In 2026, a consensus is forming in the AI industry: model capability is no longer the bottleneck. The gap lies outside the model—in the encoding of domain knowledge, in the interface between agents and the real world, in the maturity of toolchains. This gap is being filled by the open-source community, and the speed exceeds everyone's expectations. OpenClaw gained 60,000 GitHub stars within 72 hours, surpassing 350,000 three months later. The Claude Code Skill ecosystem grew from 50 to over 334 Skills within half a year. Hermes Agent is even more radical, enabling agents to autonomously build reusable skills. Data from Vela Partners shows that in the past 90 days, the combined categories of personal AI assistants and Agentic Skill plugins added 244,000 new stars. This is a Skill explosion.

Perseus Yang's work sits at the heart of this explosion. With a background in Mathematics and Computer Science from Cornell, a member of the Forbes Business Council, and a THINC Fellowship recipient, he has participated in and maintained over a dozen AI-related open-source projects on GitHub in recent years, covering areas such as agent skill expansion, mobile device-level control, AI engine optimization toolchains, GEO data analysis agents, content automation workflows, and payment protocol infrastructure. His characteristic is possessing both a deep engineering background and strong product intuition. He doesn't just write code; he defines what a tool should look like based on user needs, then builds it end-to-end and drives its adoption.

Here are several core judgments he has formed during this process.

First Judgment: The Skill System is the Most Underestimated Infrastructure in the AI Agent Era

After Anthropic released Agent Skills as an open standard at the end of 2025, OpenAI's Codex CLI also adopted the same SKILL.md format. OpenClaw's ClawHub registry has accumulated over 13,000 community-contributed Skills, and the Claude Code ecosystem is quickly following suit. The significance of Skills goes far beyond "adding plugins to agents." It essentially enables people who don't know how to code to participate in AI programming. An operations personnel can write a SKILL.md in natural language, enabling an agent to learn a new workflow. This is a paradigm shift: the true power of AI depends not on the model's parameter count, but on what domain knowledge is injected into the model, and Skills extend the power to inject knowledge from engineers to everyone.

But Perseus observed a problem. The vast majority of Skills are concentrated in the engineering field—code review, front-end design, DevOps, testing. Expertise in non-engineering fields has hardly been systematically encoded into Skills. This means the coverage of the Skill ecosystem is far from reaching its potential boundary.

This observation drove a series of his open-source work in the GTM (Go-To-Market) toolchain direction. The most representative is GTM Engineer Skills, a set of Claude Code and Codex skill sets covering the complete workflow of AI engine discoverability, which has accumulated over 600 stars on GitHub. It encodes work that traditionally requires collaboration between SEO experts, content strategists, and front-end developers into an automated process executable by a single person: website AI discoverability audit, content structure optimization, keyword research, a machine-parsable layer for data visualization. The auditor doesn't output suggestions; instead, it automatically detects the front-end framework and generates code fixes that can be directly submitted as a Pull Request. Around the same direction, he also built a supporting GEO analysis tool that can simultaneously send queries to ChatGPT, Claude, Gemini, and Perplexity to analyze brand mention rates, sentiment, market share, and competitive positioning, outputting interactive HTML reports and structured data.

The actual results demonstrate the product value of this toolset. Companies like Articuler AI and Axis Robotics used GTM Engineer Skills to complete the full process from research to Resource Center setup in a few hours, whereas such work traditionally requires dozens of hours of cross-team collaboration. This efficiency gap is not achieved by model capability, but by Perseus's deep understanding and productized breakdown of the GTM workflow: he broke down a vague "improve AI discoverability" requirement into standardized stages executable step-by-step by an agent, each with clear inputs, outputs, and quality checks. This toolchain is currently adopted by over a dozen startups and several Fortune 500 companies. The open-source tool is the entry point, the commercial product is the scaled extension, and both share the same technical core.

The project itself is valuable, but Perseus believes the proposition is more important: the capability boundary of the Skill system extends far beyond the engineering field. Product strategy, go-to-market, business analysis—any expertise that can be structurally described can be encoded into agent capabilities.

Second Judgment: AI Agent's Operational Boundary Should Not Stop at Browsers and APIs

The agent discussion in 2026 is dominated by browser agents and API integrations. LangGraph, CrewAI, and Google ADK constitute a thriving multi-agent orchestration ecosystem. But Perseus noticed a structural blind spot: most global digital activity happens in native mobile apps—social, payment, gaming, communication—and these apps lack public APIs and browser equivalents. Existing frameworks cannot operate WeChat, Douyin, WhatsApp, or Alipay. Mobile is the world's dominant computing interface, but the infrastructure for native mobile agents is almost zero.

Perseus's thinking is: Why is everyone teaching AI to operate browsers, but no one is seriously teaching it to operate phones? The prosperity of browser agents is largely because the web is naturally automation-friendly, with DOM, APIs, and mature toolchains like Playwright. But the phone is a completely different world. Native apps are black boxes, without structured interface descriptions; operations can only be performed by simulating human touches and swipes. The difficulty of this problem lies not in getting the LLM to understand whether a button should be pressed, but in building the entire execution layer infrastructure from scratch: device connection management, screen state parsing, device mutex between multiple agents, security boundaries for sensitive operations.

This judgment drove the birth of OpenPocket. It is an open-source framework that uses ADB to allow LLM-driven agents to autonomously operate Android devices, currently with about a dozen contributors and over 500 commits. What users are really doing with it speaks volumes: automatically managing social media accounts, replying to messages in IMs for you, handling payments and bills on the phone, even automatically playing mobile games. A typical scenario is: the user tells the agent in natural language "Open Slack every morning at 8 am to check in," and the agent will persistently run this task in an isolated session, turning a previously manual, repetitive daily operation into background automation.

Perseus made several key product and architectural choices in this project. First, agents can automatically create new Skills during runtime. When encountering an unfamiliar operation flow, it can save the learned steps as a reusable SKILL.md for direct调用 next time. This means the agent is not a tool with fixed capabilities, but a system that grows stronger with use. Second, all sensitive operations must be approved by a human, rather than letting the agent judge what is safe. In his view, the most dangerous thing about autonomous agents is not that they do the wrong thing, but that they do the wrong thing "confidently" while thinking they are right. Third, each agent is completely isolated, bound to an independent device, configuration, and session state, allowing multiple agents to run simultaneously without interfering with each other. If only TypeScript engineers can extend the agent's capabilities, this ecosystem will never grow large, so OpenPocket, like Claude Code, uses SKILL.md as the standard format for capability extension.

The entire system supports 29+ LLM configurations. Agent phones are completely isolated from users' personal phones, and all data remains local. In 2026, with OWASP listing "Tool Misuse" among the Top 10 Risks for Agentic AI and the high-risk obligations of the EU AI Act about to take effect, this local-first, human-in-the-loop design is not conservative but a prerequisite for agents entering real-world scenarios.

Third Judgment: The Value of Open Source Lies Not in the Code Itself, But in the Definition of Standards at the Infrastructure Layer

Perseus's understanding of open source is not "putting code on GitHub." He repeatedly mentions a viewpoint: The open-source AI ecosystem in 2026 is in a window where standards have not yet solidified. The architectural patterns and interface specifications adopted by the community now will become the industry's default infrastructure in the coming years. In this window, defining a niche is more important than optimizing an existing solution.

Specifically, his Skill project pushed forward something technically meaningful: proving that the SKILL.md format is not just a container for engineering tools, but a sufficiently general standard for encoding domain knowledge. When the same SKILL.md can be loaded and executed by Claude Code, OpenAI Codex CLI, and OpenClaw, it de facto becomes the "portable capability unit" of the AI agent ecosystem. Perseus stuffed the complete workflow of go-to-market—a non-engineering field—into this format and successfully ran end-to-end automation from audit to code fix. This is a significant validation of the generality of the entire Skill standard.

His mobile agent project addresses an architectural gap at the agent execution layer. Existing agent frameworks rely on structured interfaces at the tool-calling level, either APIs or DOM. OpenPocket must operate in an environment without any structured interface, relying purely on screen pixel parsing and touch event injection. This forced the project to redesign the agent's perception-decision-execution loop from the ground up, including real-time parsing of device state, device mutex protocols for multiple agents, and automatic recovery mechanisms after operation failures. These are not simple adaptations of existing agent frameworks, but an architectural solution independently evolved for the problem of "autonomous operation in API-less environments."

The engineering design of the two projects is worth mentioning separately. OpenPocket adopts a three-layer separated architecture of Manager, Gateway, and Agent Runtime, where each layer can be iterated independently, and community contributors only need to focus on the layer they are familiar with. Each Skill within GTM Engineer Skills follows a staged pipeline design internally, where the output of the previous stage is the input of the next, with mandatory quality check gates in between. The workflow can be interrupted and resumed at any stage, and errors can be pinpointed to a specific stage. The purpose of these architectural choices is the same: to make the open-source project trustworthy for real users in production environments.

From a product perspective, these two projects also share a commonality: Perseus always places "who will use it" and "how to extend it" at the forefront of architectural decisions. The target users of GTM Engineer Skills are not engineers but growth teams, so each Skill has clear input-output contracts and built-in quality checks, allowing non-technical users to understand what the agent is doing. OpenPocket's SKILL.md extension mechanism, natural language scheduled tasks, and multi-channel access (Telegram, Discord, WhatsApp, CLI) are all designed to lower the barrier to entry for non-engineering users. In his view, if an open-source infrastructure project can only be used by engineers, its ceiling is the size of the engineering community. The truly leveraged design is to enable the boundary of agent capabilities to be expanded collectively by practitioners from all fields.

This pattern runs through his multiple projects. It's not about doing application-layer development on existing frameworks, but identifying missing components in the infrastructure layer of the agent ecosystem and then building them.

The Bigger Picture

The open-source AI ecosystem in 2026 is experiencing a moment similar to the early cloud-native ecosystem of the 2010s: standards and tools at the infrastructure layer are being defined, and these definitions will constrain the entire industry's development path for years to come. In this window, every Skill format adopted by the community, every agent architectural pattern validated, every ecosystem gap filled, is participating in shaping the next interface layer of AI.

What Perseus Yang is doing is simple: using engineering capability and product thinking to explore the paradigm at the technological frontier of the AI era. Models will continue to become more powerful, but who defines how agents should interact with the real world, who decides in what form domain knowledge should be encoded and distributed—the answers to these questions will not grow out of models. They can only be figured out bit by bit by people who build things.

Связанные с этим вопросы

QAccording to the article, what is the current bottleneck in the AI industry as of 2026?

AThe bottleneck is no longer the model capabilities themselves, but rather the gap in encoding domain knowledge, creating interfaces for agents and the real world, and the maturity of toolchains.

QWhat is the significance of the SKILL.md format, as discussed in the article?

AThe SKILL.md format is an open standard that allows non-coders to participate in AI programming. It enables anyone to define a new workflow for an AI agent using natural language, making it a portable unit of capability that can be executed across different AI platforms like Claude Code and OpenAI Codex CLI.

QWhat problem did Perseus Yang identify with the current landscape of AI agents and mobile applications?

AHe identified a structural blind spot: while most digital activity happens within native mobile apps (like WeChat, TikTok, WhatsApp, Alipay), these apps lack public APIs and are not accessible to browser-based agents. This creates a significant gap, as there is almost no infrastructure for native mobile AI agents.

QWhat are the key architectural and safety features of the OpenPocket project?

AKey features include: agents that can autonomously create new Skills from learned operations; a requirement for human approval on sensitive operations; complete isolation of each agent with its own device and session state; and a design that keeps all operations local to the device for security and privacy.

QHow does Perseus Yang view the role of open source in the current AI ecosystem?

AHe believes the value of open source lies not just in sharing code, but in defining the architectural patterns and interface standards that will become the default infrastructure for the entire industry. He focuses on identifying and building missing components at the infrastructure layer to shape how agents interact with the real world.

Похожее

Dalio's Latest Warning: Don't Get Carried Away by AI, Real Returns on US Stocks in the Next 5-10 Years Could Be -5% to -10%

Ray Dalio, founder of Bridgewater Associates, warns investors against excessive concentration in AI stocks. He argues the current market, dominated by a few AI giants, mirrors historical patterns where revolutionary new technologies lead to high risk, volatility, and uncertainty. While acknowledging AI's transformative potential, Dalio emphasizes that most investors fail at this stage of the cycle by over-concentrating in a handful of leading companies. He cites inherent risks: companies cannot accurately forecast investment needs or external shocks (e.g., monetary policy, geopolitics, taxes), face potential disruption from future technologies and international competition (notably from China), and experience significant price swings. Dalio's core advice is diversification, calling it his "Holy Grail of Investing." He presents a mathematical case that a well-diversified portfolio of 15-20 uncorrelated, good bets offers a superior risk-adjusted return compared to a concentrated position. Dalio also offers a cautious outlook, suggesting U.S. stocks may deliver real returns of -5% to -10% over the next 5-10 years based on valuation and bubble indicators. He concludes that in the face of high uncertainty, the prudent strategy is not to avoid betting entirely, but to avoid large, concentrated bets where one lacks sufficient informational edge. Instead, investors should build a strategically balanced, diversified portfolio.

marsbit46 мин. назад

Dalio's Latest Warning: Don't Get Carried Away by AI, Real Returns on US Stocks in the Next 5-10 Years Could Be -5% to -10%

marsbit46 мин. назад

Rain Valuation Approaches $20 Billion: The Battle for U-Cards Extends to Rewards Systems

Rain, a stablecoin payments infrastructure company, is shifting the competitive focus for U Cards from simple issuance to user retention and repeated usage. On June 15, Rain launched "Rain Rewards," an embedded loyalty program capability within its card-issuing infrastructure. This allows partner businesses—like fintech platforms and neobanks—to configure branded loyalty points, earning rules, redemptions, and merchant promotions directly within their card products. The system, built from the 2025 acquisition of Uptop, ensures points are only issued upon final transaction settlement, preventing liabilities from refunds. Trials, such as with Avalanche Card, reportedly boosted spending by 25% among enrolled users. Founded by Farooq Malik and Charles Yoo-Naut, Rain evolved from a tool for managing Web3 company expenses into a full-stack enterprise platform. It is a Principal Member of Visa and Mastercard, enabling partners to issue stablecoin-backed cards and wallets while leveraging traditional payment networks. Notably, the popular U Card Plasma One is issued by Rain under Visa's authority. Rain also integrates with Visa's stablecoin settlement pilot, using USDC for network settlement. Rain's rapid funding reflects growing institutional interest in stablecoin payment infrastructure. It raised a $245 million Series A in March 2025, a $58 million Series B in August 2025, and a $250 million Series C in January of this year, reaching a $19.5 billion valuation. Annualized transaction volume exceeds $3 billion, serving over 200 partners including Western Union and Nuvei. Beyond cards, Rain is expanding into programmable payments. Its June 2026 "Agent Control Layer" allows businesses to set spending rules—like merchant categories, amounts, and frequency—for AI agents before transactions occur. This positions Rain not as a single product but as an operating system for stablecoin payments, handling everything from card issuance and wallet management to rewards, on/off-ramps, and automated compliance. The goal is to enable seamless, often invisible, real-world spending of on-chain assets.

Foresight News49 мин. назад

Rain Valuation Approaches $20 Billion: The Battle for U-Cards Extends to Rewards Systems

Foresight News49 мин. назад

Google TPU Shipments Revised Up by 50%

Recent industry research indicates a significant upward revision in the shipments of Google's TPU (Tensor Processing Unit) chips. Previous expectations for 2027 were set at around 10 million units, but new estimates now point to 15 million units, a 50% increase. This substantial boost directly translates to higher demand across the entire supporting supply chain. Google's TPU clusters utilize a standardized all-optical interconnect architecture. Consequently, key hardware components are deeply integrated and scaled in fixed ratios with the chips. The 15 million TPU target will drive corresponding demand increases for NPO optical engines (roughly a 1:1 match), 1.6T optical modules, OCS optical switches, high-end server power supplies, fiber optics & MPO connectors, and liquid cooling solutions. Among these, liquid cooling is highlighted as the sector experiencing the most significant transformation and offering the most stable potential for excess returns. As next-generation TPU chips reach power levels where traditional air cooling is insufficient, liquid cooling becomes essential. 2026 is forecasted as the first year of substantial adoption for Google's liquid cooling solutions. This shift, coupled with delivery and capacity bottlenecks faced by incumbent overseas manufacturers, is creating a prime window for domestic Chinese suppliers to enter and secure Google's core supply chain. The market size for Google-specific liquid cooling is projected to potentially triple from a baseline of hundreds of billions to around 300 billion units by 2028. The logic for the fiber optic sector is also being rewritten. Once considered a cyclical commodity tied to telecom operator procurement, fiber is now a strategic and scarce resource for AI Data Centers (AIDC). A severe supply-demand imbalance, driven by the long lead time for preform production (18-24 months) and surging demand from cloud giants, is supporting strong performance. Chinese fiber manufacturers are well-positioned to capture a significant share of global AIDC demand, with exports potentially reaching 200-300 million core kilometers in 2026. Overall, the investment focus within the AI computing industry is shifting from pure "chip performance speculation" towards the more certain incremental growth in computing infrastructure and its supporting ecosystem. The upward revision in Google TPU shipments, along with the potential for further doubling by 2028, is seen as solidifying performance visibility for the entire supporting supply chain over the next two years.

marsbit2 ч. назад

Google TPU Shipments Revised Up by 50%

marsbit2 ч. назад

Торговля

Спот
Фьючерсы

Популярные статьи

Как купить S

Добро пожаловать на HTX.com! Мы сделали приобретение Sonic (S) простым и удобным. Следуйте нашему пошаговому руководству и отправляйтесь в свое крипто-путешествие.Шаг 1: Создайте аккаунт на HTXИспользуйте свой адрес электронной почты или номер телефона, чтобы зарегистрироваться и бесплатно создать аккаунт на HTX. Пройдите удобную регистрацию и откройте для себя весь функционал.Создать аккаунтШаг 2: Перейдите в Купить криптовалюту и выберите свой способ оплатыКредитная/Дебетовая Карта: Используйте свою карту Visa или Mastercard для мгновенной покупки Sonic (S).Баланс: Используйте средства с баланса вашего аккаунта HTX для простой торговли.Третьи Лица: Мы добавили популярные способы оплаты, такие как Google Pay и Apple Pay, для повышения удобства.P2P: Торгуйте напрямую с другими пользователями на HTX.Внебиржевая Торговля (OTC): Мы предлагаем индивидуальные услуги и конкурентоспособные обменные курсы для трейдеров.Шаг 3: Хранение Sonic (S)После приобретения вами Sonic (S) храните их в своем аккаунте на HTX. В качестве альтернативы вы можете отправить их куда-либо с помощью перевода в блокчейне или использовать для торговли с другими криптовалютами.Шаг 4: Торговля Sonic (S)С легкостью торгуйте Sonic (S) на спотовом рынке HTX. Просто зайдите в свой аккаунт, выберите торговую пару, совершайте сделки и следите за ними в режиме реального времени. Мы предлагаем удобный интерфейс как для начинающих, так и для опытных трейдеров.

1.5k просмотров всегоОпубликовано 2025.01.15Обновлено 2026.06.02

Как купить S

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

Он решает проблемы масштабируемости, совместимости между блокчейнами и стимулов для разработчиков с помощью технологических инноваций.

2.3k просмотров всегоОпубликовано 2025.04.09Обновлено 2025.04.09

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

HTX Learn — ваш проводник в мир перспективных проектов, и мы запускаем специальное мероприятие "Учитесь и Зарабатывайте", посвящённое этим проектам. Наше новое направление .

1.8k просмотров всегоОпубликовано 2025.04.10Обновлено 2025.04.10

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на S (S) представлены ниже.

活动图片