zero

작성자: vercel

Zero를 설치하고 zero 스킬로 버전이 일치하는 워크플로우를 로드합니다.

npx skills add https://github.com/vercel-labs/zerolang --skill zero

Zero

Zero is an agent-first programming language. zero.graph is the program; .0 files are projections of it. Edit through zero patch.

Install this skill once in an agent's skill manager. Keep it thin; Zero's own CLI serves the version-matched workflow for each installed compiler.

Use the zero already on PATH or at ~/.zero/bin/zero when one exists; environments often pin a specific compiler, and replacing it silently breaks version-matched stores and workflows. Install only when zero is missing:

command -v zero >/dev/null 2>&1 || { curl -fsSL https://zerolang.ai/install.sh | bash; }
export PATH="$PATH:$HOME/.zero/bin"
zero --version

Version-Matched Skills

This file is only a discovery stub. Do not treat it as the full Zero workflow or as command reference.

Before editing, checking, testing, or repairing Zero code, ask the installed compiler for the skill content that matches that exact binary:

zero skills
zero skills get zero
zero skills get zero --full
zero skills get stdlib --topic std.time   # one section instead of the whole topic

If the user has multiple Zero binaries, use the same binary that will run the project:

/path/to/zero skills
/path/to/zero skills get zero --full

Use zero skills get <name> to load only what the task needs, and fetch each topic at most once per session: the content is fixed for a given compiler binary, so refetching a loaded topic returns the same text. Topics and approximate served sizes:

  • zero (~2 KB): this discovery stub
  • agent (~4 KB): read-edit-verify loop, zero query usage, edit surfaces, verification
  • language (~6 KB): syntax, types, effects, control flow, generics
  • graph (~9 KB): zero.graph store, query/view, patch operations, import/export/merge
  • diagnostics (~4 KB): reading diagnostics, zero explain, typed fix plans
  • packages (~5 KB): manifests, package layout, creation and repair
  • builds (~5 KB): build/run, targets, profiles, emitted artifacts
  • testing (~3 KB): test blocks, filters, runtime checks
  • stdlib (~39 KB): full signature reference, including ready-made validators: std.time (RFC 3339 incl. the exact leap-second rule), std.inet (IPv4/IPv6/hostname), std.regex (ECMA subset), std.unicode (strict UTF-8). Check here before hand-writing any parsing or validation logic. Fetch one module's section (~1 KB) with zero skills get stdlib --topic <prefix>, e.g. --topic std.time.

Before hand-writing any parsing or validation, check the stdlib catalog: zero skills get stdlib --topic <module> serves one section (std.time covers RFC 3339 incl. leap seconds).

Edit through the graph: zero patch covers everything from surgical in-function text edits (--replace-in-fn <fn> --old <text> --new <text>, Edit semantics) to complete helper creation (upsertFunction ... end) and whole function bodies (--replace-fn <fn> --body-file - with a heredoc). Direct .0 text edits are a last resort for changes no patch op expresses; package commands refresh zero.graph from edited source, but patch keeps the loop faster and preserves node identity. Read one function with zero view --fn <name> instead of whole files. Prefer concise text output during interactive agent work; use --json only for automation, exact spans, contracts, or machine-readable diagnostics.

Common Entry Points

zero query [graph-or-package]
zero patch [graph-or-package] --op '<operation>'
zero check [graph-or-package]
zero test [graph-or-package]
zero run [graph-or-package] -- <args>
zero diff [graph-or-package]
zero explain <diagnostic-code>
zero fix --plan [graph-or-package]

In a Zero repository checkout, prefer bin/zero when the task is about that checkout rather than the globally installed compiler.

vercel의 다른 스킬

benchmark-sandbox
vercel
Vercel Sandbox에서 vercel-plugin eval 시나리오를 로컬 WezTerm 패널 대신 실행합니다. Claude Code와 플러그인이 사전 설치된 임시 마이크로VM을 프로비저닝합니다.
official
emil-design-eng
vercel
이 스킬은 Emil Kowalski의 UI 폴리시, 컴포넌트 디자인, 애니메이션 결정, 그리고 소프트웨어를 훌륭하게 만드는 보이지 않는 세부 사항에 대한 철학을 인코딩합니다.
official
vercel-react-best-practices
vercel
Vercel Engineering의 React 및 Next.js 성능 최적화 가이드라인입니다. 이 스킬은 React/Next.js 코드를 작성, 검토 또는 리팩토링할 때 사용해야 합니다.
official
vercel-react-best-practices
vercel
Vercel Engineering의 React 및 Next.js 성능 최적화 가이드라인입니다. 이 스킬은 React/Next.js 코드를 작성, 검토 또는 리팩토링할 때 사용해야 합니다.
official
write-guide
vercel
점진적인 예제를 통해 실제 사용 사례를 가르치는 기술 가이드를 제작합니다. 개념은 독자가 필요로 할 때만 소개됩니다.
official
release
vercel
Vercel-plugin 릴리스 — 게이트 실행, 버전 업, 아티팩트 생성, 커밋 및 푸시. "릴리스", "배포", "버전 업 및 푸시", "릴리스 생성" 요청 시 사용.
official
deepsec
vercel
dev3000에서 체크아웃한 Vercel 프로젝트에 대해 DeepSec을 실행합니다. 원클릭 DeepSec 설정, 프로젝트 컨텍스트 부트스트래핑, 제한된 1차 처리 등에 사용합니다.
official
backport-pr
vercel
병합된 Next.js 풀 리퀘스트를 canary에서 next-16-2와 같은 이전 릴리스 브랜치로 백포트합니다. 사용자가 백포트, 체리픽 또는 열기를 요청할 때 사용합니다…
official