vercel-labs-skills
The CLI for the open agent skills ecosystem. Supports OpenCode, Claude Code, Codex, Cursor, and 75 more.
The programming language for agents. Zerolang is an experimental graph-native programming language where the semantic graph is the program database. Humans ask for outcomes. Agents query the graph, submit checked edits, and prove the result.
$ npx -y skills add vercel-labs/zero --agent claude-code
What's inside
The programming language for agents.
Zerolang is an experimental graph-native programming language where the semantic graph is the program database. Humans ask for outcomes. Agents query the graph, submit checked edits, and prove the result.
Safety warning
Zerolang is experimental. Expect breaking changes, rough edges, and security issues. Run it in isolated workspaces, not against production systems or sensitive data.
The expected workflow is a normal conversation:
build hello world for zerolang
The agent should use the compiler, not guess from source text:
zero init
zero patch --op 'addMain' --op 'addCheckWrite fn="main" text="hello from zero\n"'
zero run
The result is still reviewable as a text projection:
pub fn main(world: World) -> Void raises {
check world.out.write("hello from zero\n")
}
That .0 file is a projection of zero.graph. Humans can read it, review it, and occasionally edit it. Agents should normally keep using zero query and zero patch.
Traditional agent coding loops treat text as the source of truth:
flowchart LR
A[agent writes text] --> B[check]
B --> C[format]
C --> D[build]
D --> E[inspect failures]
E --> A
Zerolang moves the agent closer to the compiler:
flowchart LR
A[agent queries graph] --> B[agent submits checked patch]
B --> C{compiler accepts?}
C -- invalid or stale --> A
C -- valid --> D[agent runs task validation]
D --> E[human reviews projection when useful]
The graph gives agents explicit handles: symbols, node IDs, graph hashes, types, effects, ownership facts, capabilities, imports, call edges, and target facts. Edits can target semantic structure instead of line ranges. Stale graph hashes, unexpected field values, invalid shapes, and type errors fail before the store is written.
zero.graph is the checked compiler input for graph-first packages..0 files are human-readable projections, not the normal agent authoring surface.zero patch applies checked graph edits and rejects stale or invalid changes.zero query, zero inspect, zero check, zero test, and zero run expose compiler facts through agent-friendly commands.zero import and zero export make the projection boundary explicit, so human text edits do not silently diverge from the graph.Install the compiler:
curl -fsSL https://zerolang.ai/install.sh | bash
export PATH="$HOME/.zero/bin:$PATH"
zero --version
Install the agent bootstrap skill:
npx skills add vercel-labs/zerolang
The compiler bundles version-matched skills for agents:
zero skills
zero skills get agent
zero skills get graph
zero skills get language
zero skills get stdlib
For most package work:
zero query
zero patch --op help
zero patch --op 'addMain'
zero check
zero test
zero run -- <args>
The default input is the current directory. Use . only when you want to be explicit.
When a human wants to review projection text:
zero export
zero verify-projection
When a human intentionally edits a projection:
zero import
zero check
The graph-first model should reduce agent guessing without relaxing the runtime goals:
Build the local compiler:
pnpm install
make -C native/zero-c
bin/zero --version
Useful checks:
pnpm run docs:build
pnpm run conformance
pnpm run native:test
pnpm run command-contracts
For local iteration:
pnpm run conformance:local -- --list
pnpm run conformance:local -- --shard 1/4
pnpm run command-contracts:local
Read the docs at zerolang.ai.
The CLI for the open agent skills ecosystem. Supports OpenCode, Claude Code, Codex, Cursor, and 75 more.
Give coding agents access to any package's source code.
Comprehensive Vercel ecosystem plugin — relational knowledge graph, skills for every major product, specialized agents, and Vercel conventions. Turns any AI agent into a Vercel expert.
FAQ
zerolang is a Claude Code plugin with 1 hand-picked skill for development work, indexed on Flowy. Install it with the command on its page. It includes zero. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
Is this plugin yours?
Claim it with GitHubSubmit a pluginPromote it