소스 정보
- 저장소
- vercel-labs/zerolang
- 최근 소스 활동
- 2026년 6월 13일 04:44
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5,339
- 포크
- 339
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/vercel-labs/zerolang --skill zero명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | zero |
| description | Install Zero and load version-matched workflows with zero skills. |
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
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 stubagent (~4 KB): read-edit-verify loop, zero query usage, edit surfaces, verificationlanguage (~6 KB): syntax, types, effects, control flow, genericsgraph (~9 KB): zero.graph store, query/view, patch operations, import/export/mergediagnostics (~4 KB): reading diagnostics, zero explain, typed fix planspackages (~5 KB): manifests, package layout, creation and repairbuilds (~5 KB): build/run, targets, profiles, emitted artifactstesting (~3 KB): test blocks, filters, runtime checksstdlib (~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.
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.
SOC 직업 분류 기준