• bitcoinBitcoin(BTC)$78,037.00-0.07%
  • ethereumEthereum(ETH)$2,186.310.34%
  • tetherTether(USDT)$1.000.01%
  • binancecoinBNB(BNB)$652.12-0.13%
  • rippleXRP(XRP)$1.410.45%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$86.31-0.01%
  • tronTRON(TRX)$0.3572671.57%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.040.73%
  • dogecoinDogecoin(DOGE)$0.1108341.65%
  • whitebitWhiteBIT Coin(WBT)$57.540.04%
  • USDSUSDS(USDS)$1.00-0.01%
  • HyperliquidHyperliquid(HYPE)$43.345.66%
  • cardanoCardano(ADA)$0.2551860.17%
  • leo-tokenLEO Token(LEO)$10.111.88%
  • zcashZcash(ZEC)$515.923.02%
  • bitcoin-cashBitcoin Cash(BCH)$411.34-0.90%
  • moneroMonero(XMR)$395.803.37%
  • chainlinkChainlink(LINK)$9.730.71%
  • CantonCanton(CC)$0.1526722.61%
  • the-open-networkToncoin(TON)$1.940.91%
  • stellarStellar(XLM)$0.150987-0.52%
  • USD1USD1(USD1)$1.00-0.02%
  • daiDai(DAI)$1.00-0.01%
  • Ethena USDeEthena USDe(USDE)$1.00-0.04%
  • litecoinLitecoin(LTC)$55.90-0.46%
  • suiSui(SUI)$1.060.96%
  • MemeCoreMemeCore(M)$3.160.46%
  • avalanche-2Avalanche(AVAX)$9.300.03%
  • hedera-hashgraphHedera(HBAR)$0.090803-0.70%
  • RainRain(RAIN)$0.0075162.56%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.05%
  • shiba-inuShiba Inu(SHIB)$0.000006-1.37%
  • crypto-com-chainCronos(CRO)$0.071039-0.37%
  • Global DollarGlobal Dollar(USDG)$1.00-0.01%
  • Circle USYCCircle USYC(USYC)$1.120.00%
  • tether-goldTether Gold(XAUT)$4,537.850.17%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • BittensorBittensor(TAO)$271.05-0.43%
  • uniswapUniswap(UNI)$3.561.66%
  • polkadotPolkadot(DOT)$1.270.35%
  • pax-goldPAX Gold(PAXG)$4,536.970.17%
  • mantleMantle(MNT)$0.64-0.04%
  • nearNEAR Protocol(NEAR)$1.532.65%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.060464-1.03%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.130.01%
  • Falcon USDFalcon USD(USDF)$1.000.01%
  • HTX DAOHTX DAO(HTX)$0.0000021.44%
  • okbOKB(OKB)$83.350.63%
  • OndoOndo(ONDO)$0.3518331.84%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Vercel Labs Introduces Zero, a Systems Programming Language Designed So AI Agents Can Read, Repair, and Ship Native Programs

May 17, 2026
in AI & Technology
Reading Time: 5 mins read
A A
Vercel Labs Introduces Zero, a Systems Programming Language Designed So AI Agents Can Read, Repair, and Ship Native Programs
ShareShareShareShareShare

Vercel Labs
01 / 09  ·  Overview

YOU MAY ALSO LIKE

A Coding Guide Implementing SHAP Explainability Workflows with Explainer Comparisons, Maskers, Interactions, Drift, and Black-Box Models

Nous Research Proposes Lighthouse Attention: A Training-Only Selection-Based Hierarchical Attention That Delivers 1.4–1.7× Pretraining Speedup at Long Context

Zero
The Programming Language
for Agents

An experimental systems language that gives AI agents structured diagnostics,
typed repair metadata, and machine-readable docs — alongside sub-10 KiB native binaries.

Systems Language
Agent-Native
v0.1.1
Apache-2.0
Experimental

Context
02 / 09  ·  Why Zero Exists

The Agent Repair Loop Problem

Most programming languages produce compiler output written for human readers — unstructured text that AI agents must parse to determine what failed and how to fix it. This creates a fragile loop.

  • Agent writes code — compiler emits an error as unstructured text
  • Agent parses text — error format can change between compiler versions
  • No repair hint — there’s no built-in concept of a “repair action”
  • Human steps in — the loop requires manual intervention to resolve errors

Zero was designed from day zero so agents can read the code, interpret the diagnostics, and repair the program — without human translation.

Core Feature
03 / 09  ·  JSON Diagnostics

Structured Compiler Output

Running zero check ——json emits machine-readable diagnostics instead of plain text. Every error includes a stable code, a human message, a line number, and a typed repair ID.

$ zero check --json
{
  "ok": false,
  "diagnostics": [{
    "code": "NAM003",
    "message": "unknown identifier",
    "line": 3,
    "repair": { "id": "declare-missing-symbol" }
  }]
}
  • code — stable identifier agents can match reliably (NAM003)
  • message — human-readable description of the error
  • repair — typed repair ID agents can act on without text parsing

Core Feature
04 / 09  ·  Repair Commands

zero explain & zero fix

Two CLI subcommands complete the agent repair loop without requiring agents to parse prose documentation.

zero explain

zero explain NAM003

Returns a structured explanation of any diagnostic code. Agents look up NAM003 directly — no doc scraping.

zero fix

zero fix --plan --json add.0

Emits a machine-readable fix plan describing exactly what changes to make — no inference required.

Together, zero explain and zero fix --plan --json let agents understand errors and act on them without human translation of compiler output.

Core Feature
05 / 09  ·  Agent Guidance

zero skills: Version-Matched Agent Guidance

Most tools require agents to scrape external documentation that may be out of sync with the installed compiler. Zero solves this with zero skills — guidance served directly from the CLI, matched to the installed version.

zero skills get zero --full

Returns focused workflows for:

  • Zero syntax — language fundamentals for the current version
  • Diagnostics — how to interpret and act on compiler output
  • Builds & packages — manifest structure, targets, and output
  • Testing & agent edit loops — validation and repair workflow patterns

Language Design
06 / 09  ·  Capability-Based I/O

Explicit Effects & Capability-Based I/O

In Zero, if a function touches the outside world, its signature says so. There is no hidden global process object, no implicit async, and no magic globals.

pub fun main(world: World) -> Void raises {
  check world.out.write("hello from zero\n")
}
  • world: World — capability object; grants access to I/O, filesystem, network
  • check — handles fallible operations; surfaces failure up the call stack
  • raises — marks that the function can propagate errors — visible in the signature
  • Compile-time enforcement — unavailable capabilities are rejected at compile time, not runtime

Language Design
07 / 09  ·  Memory & Size

Predictable Memory & Tiny Binaries

Zero targets environments where binary size and memory predictability matter. There is no hidden runtime tax.

Binary Target

< 10 KiB

Native executables via static dispatch, no mandatory GC, no mandatory event loop

Cross-Compilation

zero build --emit exe \
  --target linux-musl-x64 \
  add.0 --out .zero/out/add

  • zero size --json — reports artifact size before code generation when possible
  • No hidden allocator — allocation is explicit and visible in code
  • C ABI exports — target-aware interop metadata for C boundaries

Quick Start
08 / 09  ·  Getting Started

Install & Run Zero

Install the compiler with a single curl command:

curl -fsSL https://zerolang.ai/install.sh | bash
export PATH="$HOME/.zero/bin:$PATH"
zero --version

Check, run, and build your first program:

zero check examples/hello.0
zero run   examples/add.0
zero build --emit exe --target linux-musl-x64 \
  examples/add.0 --out .zero/out/add

Create a new package:

zero new cli hello
cd hello
zero check .  &&  zero test .  &&  zero run .

Status
09 / 09  ·  Current State

What’s Available & What’s Not

  • v0.1.1 (Experimental) — compiler, stdlib, and language spec are not stable yet
  • No package registry — ecosystem breadth is early-stage
  • Cross-compilation — limited to the documented target subset
  • VS Code extension — syntax highlighting for .0 files ships in the repo
  • Contributors — Chris Tate & Matt Van Horn (Vercel Labs)
Docs & Install

zerolang.ai

Source

github.com/vercel-labs/zero

Zero is a working experiment worth tracking for AI engineers interested in agent-native toolchain design — not yet a production dependency.

Credit: Source link

ShareTweetSendSharePin

Related Posts

A Coding Guide Implementing SHAP Explainability Workflows with Explainer Comparisons, Maskers, Interactions, Drift, and Black-Box Models
AI & Technology

A Coding Guide Implementing SHAP Explainability Workflows with Explainer Comparisons, Maskers, Interactions, Drift, and Black-Box Models

May 17, 2026
Nous Research Proposes Lighthouse Attention: A Training-Only Selection-Based Hierarchical Attention That Delivers 1.4–1.7× Pretraining Speedup at Long Context
AI & Technology

Nous Research Proposes Lighthouse Attention: A Training-Only Selection-Based Hierarchical Attention That Delivers 1.4–1.7× Pretraining Speedup at Long Context

May 16, 2026
The enterprise risk nobody is modeling: AI is replacing the very experts it needs to learn from
AI & Technology

The enterprise risk nobody is modeling: AI is replacing the very experts it needs to learn from

May 16, 2026
Celestial Lights And If Destruction Be Our Lot
AI & Technology

Celestial Lights And If Destruction Be Our Lot

May 16, 2026
Next Post
To Critics, Trump Remarks Reveal a Billionaire Out of Touch – The New York Times

To Critics, Trump Remarks Reveal a Billionaire Out of Touch - The New York Times

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
Razr Fold, Bose Lifestyle Ultra Speaker, Ultrahuman Ring Pro And More

Razr Fold, Bose Lifestyle Ultra Speaker, Ultrahuman Ring Pro And More

May 16, 2026
Jerome Powell: The Least Boring and Useless Fed Chairman

Jerome Powell: The Least Boring and Useless Fed Chairman

May 16, 2026
Telefonica Brasil Q1: Why The Pullback Looks Overdone

Telefonica Brasil Q1: Why The Pullback Looks Overdone

May 14, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!