# Glossary {#root}

@status:doc/work @audience:user,author,dev,agent

[p01] One definition per term, and the only place a term is defined. Every other page links here the first time it uses a word from this list.

## adaptation {#adaptation}

[p02] A version of documentation in another language: a separate package that mirrors the source block for block and is free sentence by sentence. This manual says «translation» and «adaptation» for the same thing. See *translation*.

> [p03] **The source language is English.** `org.vibevm.core/vibevm-docs` carries `[i18n].canonical = "en"`. Every other language, Russian included, is an **adaptation** published as its own package (§5): a mirror block for block, free sentence for sentence, with its own jokes and its own glossary of terms. Machine translation may produce a draft and never the text.
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#STYLE-SOURCE-LANGUAGE>

## agent session {#agent-session}

[p04] One run of a coding agent in a project, from the moment it reads its instruction file to the moment it stops. The boot lane is what vibe prepares for the start of a session.

## anchor {#anchor}

[p05] The identifier of a section or a fact inside a specification, the part after `#` in an address. Once published, an anchor never changes; a rename leaves a tombstone.

> [p06] **Anchors are immutable; a rename is a tombstone** — for published documentation pages as for specs, and for translations, which must match their source.
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#INV-ANCHORS-IMMUTABLE>

## block number {#block-number}

[p07] The ordinal `pNN` every block of a documentation page receives at build time; the same in the web page, the Markdown and the XML, so a human and an agent cite one place. It names the current text and may shift after an edit, like a line number.

> [p08] **Numbered blocks.** Every flow block of the pivot — paragraph, list, table, fence, quote, `example`, `rule`, `note`, `figure`, `prompt`; a heading keeps its own id and is not numbered (clarified 2026-09-12 at implementation, following `PIPE-NUMBERING`) — receives an ordinal number and the id `pNN` **at build time** in the Rust pipeline (§10), never by a client script. The number is the block's position in the **current** text of the page, counted before `when` filtering, so that `p12` names the same block in the build for any platform and agent and in every translation; gaps in the rendered output are accepted. The number appears in the HTML island, in the `.md` and `.xml` projections (as `[p12]` at the start of the block) and in `llms-full.txt`, so a human and an agent cite one place. After an edit an old `#p12` may point at a neighbouring block, as a link to a file line does after an edit; this is accepted and nothing tries to «remember» it. Headings keep their named anchors `{#id}` above the number; named anchors are immutable and renamed only by tombstone, positional `pNN` live by the current text.
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#READER-NUMBERED-BLOCKS>

## boot lane {#boot-lane}

[p09] The ordered reading list an agent follows at the start of a session: the managed block in the instruction file, then `STATIC.md` in full, then the entries of `INDEX.md`. Computed by vibe from the dependency graph, never written by hand.

> [p10] **Session-start order:** the `CLAUDE.md` / `AGENTS.md` / `GEMINI.md` redirect → `vibevm/vibespecs/boot/STATIC.xml` (if present) → `vibevm/vibespecs/boot/INDEX.md` and the entries it names, in order.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-009#SESSION-START-ORDER>

## boot snippet {#boot-snippet}

[p11] A package's contribution to the boot lane: one short text declared in `[boot_snippet]` with a category, read at every session start by every consumer. Documentation packages have none.

> [p12] `[boot_snippet]` (package-role) drops the `filename` field (the `NN-` target name) and gains `category` (§2.5); `source` — the path to the boot file inside the package — is retained. It may carry an optional suggested `link` default, and an optional **`when`** activation condition — the declaration site for §2.3's dynamic-entry `when`, closing the gap Phase 4 flagged. For v1 the only `when` is an operating-system match, the wire string `"os:<name>"` with `<name>` one of `windows` / `macos` / `linux`; a snippet carrying a `when` is `dynamic` (§2.4). The package author owns this declaration: whether a boot snippet is OS-specific is the author's knowledge, not the consumer's.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-009#SCHEMA-BOOT-SNIPPET>

## capability {#capability}

[p13] An abstract ability a package provides or requires, written `namespace:name` with an optional version constraint; the resolver matches requirers with providers at install time.

> [p14] **Decision.** A package's identity is the tuple `(kind, name, version, content_hash)`. The `content_hash` is a digest over the deterministically-ordered concatenation of `(rel_path_bytes || 0x00 || file_bytes || 0x00)` for every file in the package directory, and **the value names the recipe that produced it** ([PROP-044 §4.7](../../common/PROP-044-change-native-formats.xml#machinery)): `sha256-tree/1:<hex>` is recipe 1, whose exclusion list, path normalisation and traversal order are carried as data in `formats/hash_recipes/1.toml`; the bare `sha256:<hex>` is recipe 0, the pre-recipe form, frozen verbatim in code — not configurable, because a frozen recipe that can be edited is not frozen — so that values written before recipes were named stay readable. Two hashes are comparable only **at the same recipe**; comparing across recipes answers a question nobody asked, and is never done silently. [PROP-024 §2.2](../../common/PROP-024-code-bearing-packages.xml#shippable-tree) re-scopes this to the package's **shippable tree** — its source, minus build output (`.git/`, `.vibe/`, `target/`, `node_modules/`, `.vibeignore` globs) — so a code-bearing package's identity is its source, not its build state; that exclusion lands with the code that implements it. The URL used to fetch the content is **informational** — recorded in the lockfile for debuggability, not for identity.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-002#IDENTITY-TUPLE>

## community documentation {#community}

[p15] Documentation of a package that declares its subject but is not named by the subject: shown on the site with its publisher, below the official shelf. See *official documentation*.

> [p16] **Official** documentation is the one whose edges converge: the subject named the package and the package declared the subject. **Community** documentation has only the edge from the documentation. An edge from the subject alone reads «not published or an error», and the site shows a warning.
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#REL-OFFICIAL-IS-CONVERGENCE>

## companion {#companion}

[p17] A package tied to another by name for the default case of officiality and by nothing else: the documentation `<name>-docs` of a package, or the translation `<docname>-<lang>` of a documentation. A companion keeps its own version line and stays outside family unison.

> [p18] **`<family>-docs`** — the *documentation companion* (`kind = "doc"`,
>   [PROP-057 §3](PROP-057-documentation-packages-and-site.xml)): the
>   official-by-default documentation of the family's subject, in the subject's
>   group. Unlike the three code roles it is a **companion, not a member**: it
>   is never pinned by the aggregator, it does not take part in the family's
>   unison (§2.2), it keeps its own version line, and it states compatibility
>   with its subject through the version constraint of its `[[documents]]`
>   table. Its translations follow the same companion form, one package per
>   language, named `<family>-docs-<lang>` with a lower-case BCP-47 tag
>   (`rust-ai-native-docs-ru`). Amended 2026-09-11.
>
> <spec://org.vibevm.core/vibevm/common/PROP-028#ROLE-DOCS>

## contribution {#contribution}

[p19] A binding of a handler to an extension point, declared as an `[[extension]]` table in a package or a project; the unit the lifecycle runs and reports.

> [p20] A **contribution** binds a handler to a point. It is declared as an `[[extension]]` table — in a **package** manifest (the package ships and offers the behaviour) or in the **project** manifest (the host adds its own). The shape is one grammar for every family:
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#CONTRIB-GRAMMAR>

## coordinate {#coordinate}

[p21] The name of a package: a group, a slash and a name, `org.vibevm.world/wal`, with `@version` when a version is meant. The kind is not part of it.

> [p22] **Decision.** Package identity becomes `(group, name, version, content_hash)`. `kind` **leaves the identity tuple**.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-008#IDENTITY-TUPLE>

## deploy profile {#deploy-profile}

[p23] A named, ordered list of targets and the providers that apply packaged artifacts to them; `vibe deploy` runs one profile, `vibe undeploy` reverses it.

> [p24] Deploy profiles select ordered targets; plan is read-only. The engine owns provider selection, collision locks, intent/checkpoints, receipts, three-digest recovery, inverse sequencing and exact resource ownership. `vibe-bin` plus isolated Claude/Codex/OpenCode skill/plugin adapters implement plan/apply/verify/recover/remove without touching foreign neighbours. Evidence: `0a42456e`, `45d88e80`, `ae36ac48`.
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#R8-DEPLOY-RUNTIME>

## effective set {#effective-set}

[p25] The packages that the visibility marks admit from your root: what version resolution sees, what the lock file records and what the dependency tree holds. A private edge of a package that is not your root lies outside it.

> [p26] Version resolution operates on `E(R)` only: private edges of non-root packages contribute no constraints, fetch nothing, and cannot conflict. `vibe.lock` records `E(R)` — the lock of a consumer no longer contains other packages' dev-world entries. Version unification (one node per `(group, name)`, PROP-003/017) is unchanged *within* the effective set. A welcome simplification vs code ecosystems: the Cargo-RFC-1977 problem («may private deps duplicate at different versions?») does not arise — an invisible package has no copies at all.
>
> <spec://org.vibevm.core/vibevm/common/PROP-050#RESOLVE-EFFECTIVE-ONLY>

## embedded registry {#embedded-registry}

[p27] The in-tree packages of a source-built vibe, consulted automatically as a registry: first for a developer's build, after the declared registries for a distributed one.

> [p28] This PROP makes the in-tree `packages/` of a source-installed `vibe` an
> **ambient default registry** — resolved automatically, with zero configuration
> in the consuming project.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-030#AMBIENT-DEFAULT>

## extension point {#extension-point}

[p29] A named place in the lifecycle a contribution binds to: a phase, a slot inside a phase, or a position in the boot compiler, written `family:name`.

> [p30] An **extension point** is a string `<family>:<name>`. Three families: **`phase:`** — the default-lifecycle phases and `clean` (project-scoped moments: `phase:build`, `phase:create`, …); **`compile:`** — the compiler's two tiers: the §7.2 staged positions (`compile:source`, `compile:document`, `compile:lane`, `compile:emitted`) and the §7.4 pass tier's single point `compile:pass`, whose position inside the pipeline is carried by the contribution's `pass = { … }` declaration; **`slot:`** — the per-package materialisation moments that already exist as PROP-020 (`slot:pre-install`, `slot:post-install`), re-stated in this vocabulary without changing their semantics, timing, or manifest spelling ([`[hooks]`](../modules/vibe-workspace/PROP-020-install-hooks.xml#manifest) keeps working verbatim; it is now sugar for two `slot:` contributions).
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#POINT-GRAMMAR>

## fact {#fact}

[p31] One anchored unit of a specification with a status: a rule, a decision, a lead-in. In XML an element named after its id with `fact="true"`; in Markdown a paragraph opening with `@fact:ID`. The addressable atom an agent cites.

> [p32] **Decision (ADR-part; owner ruling 2026-08-22,
> verbatim): «сконвертируй и факты тоже. Предлагаю такой формат
> `<fact-name fact="true" ...>`. Таким образом кастомный XML-парсер всегда
> может найти соответствующие элементы».** A fact serialises with its ID
> as the element name, carrying the DISCRIMINATOR attribute —
> `<THE-LAW fact="true" status="impl/done">body</THE-LAW>` — so a reader
> that knows nothing of the vocabulary still finds every fact by one
> attribute test. The recognition law: an element IS a fact iff its name
> is `fact` (the generic form, which stays in the dialect) or it carries
> `fact="true"`. The named form is emitted whenever the id passes the
> same elementability predicate sections use (fact-id grammar already
> forbids leading digits, so the fallback tail is vocabulary collisions
> only); the typed-fact fence binding stays by id and does not change.
> The owner's second clause binds the scanners: the progress machinery
> must work when a fact's SOURCE — not a materialised copy — is authored
> XML; the host lane holds by construction (XML sources enter progress
> through the canonical MD projection) and is PINNED by explicit tests
> (an observed .xml source scans unit-for-unit equal to its MD twin),
> while the specmap engine's native reader learns the named form
> mirror-wise. The converter recipe bumps again (`specdoc/2` →
> `specdoc/3`); the host re-materialises once, after both shapes land.
> The owner's third clause (2026-08-22, same sitting) binds the boot
> lanes: «статические и динамические лоадеры должны хорошо работать с
> новым синтаксисом фактов» — pinned at the transition's landing by (a)
> the static-splice determinism test running over a NAMED-shape snippet
> whose projected facts survive into STATIC, (b) the vibe-spec
> normal-closure byte-equality test running over BOTH serialisations
> (generic and named) of one dependency, and (c) the polygon re-run at
> specdoc/3, whose control package auto-adopts the named shape through
> to_xml — INDEX targets, STATIC splice and every machine loader then
> exercise the final syntax end-to-end; the agent half of the dynamic
> router is §5a's measurement, deliberately run AFTER this transition so
> it measures the shape that ships. Landed: the recipe is `specdoc/3`,
> the host's 37 slots re-materialised once with named facts live (the
> redbook README golden pins 45), the recognition law holds in both
> readers with `fact="false"` a loud error, progress holds full
> ParsedDoc parity between an XML source and its hand-pinned MD twin
> across two scans, and pins (a)–(c) are in the tree — the splice
> snippet ships `<BOOT-RULE fact="true">`, the normal closure compiles
> three lanes byte-equal, the polygon re-ran 3/3. A live lesson worth
> its line: XML reserves every case-insensitive `xml`-prefixed name, so
> `XMLBOOT` cannot be an element — the predicate refuses it and the
> generic form carries such ids.
>
> <spec://org.vibevm.core/vibevm/common/PROP-045#NAMED-FACT-ELEMENTS>

## family {#family}

[p33] A set of packages sharing a name stem that move in unison: the bundle `<family>`, the language guide `<family>-lang`, the server `<family>-mcp`. A change to any member bumps every member to one version.

> [p34] A **package family** is a set of packages sharing a `<family>` stem and
> delivering one coherent capability across three roles:
>
> <spec://org.vibevm.core/vibevm/common/PROP-028#FAMILY-DEF>

## feature {#feature}

[p35] An optional, additive content set of a package, declared in `[features]` and activated at install; features may depend on features.

> [p36] **Decision.** A package's `vibe-package.toml` gains a `[features]` table describing optional, conditionally-activated components:
>
> <spec://org.vibevm.core/vibevm/modules/vibe-resolver/PROP-003#FEATURES-TABLE>

## fingerprint {#fingerprint}

[p37] The hash of a package's shippable tree, the identity half of a package version, recorded as `content_hash` in the lock file and verified on every fetch.

> [p38] `content_hash` is unchanged — computed over package file bytes per [PROP-002 §2.1](PROP-002-decentralized-registry.xml#identity). `group` lives in `vibe.toml`, so it influences the hash only as ordinary file content; the tuple lists it explicitly so that changing `group` yields a different package.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-008#HASH-UNCHANGED>

## freshness fingerprint {#freshness-fingerprint}

[p39] The hash of a phase run's declared inputs, recorded under `.vibe/`; a phase whose freshness fingerprint did not change is skipped on the next run.

> [p40] **Every phase execution owns a fingerprint** — a hash over its declared inputs (for install: manifest+sources, already built; for build: the slot sources + project sources the preset names; for create: the prompt documents + their spec closure). A phase whose fingerprint matches the recorded one **skips**, reporting `fresh` per contribution — the Gradle up-to-date property grafted onto the Maven ritual. This is the design answer to «если vibe.toml не поменялся, инсталлировать пакеты не нужно», generalised to all nine phases because create (tokens) and build (native compile time) are even more expensive than install.
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#PHASE-FINGERPRINT>

## friend closure {#friend-closure}

[p41] The packages a project has befriended, directly with `friend = true` or a `friends` line, or through a chain of friends-only edges. A friends-only dependency reaches only the projects whose friend closure contains its provider.

> [p42] `access = "friends-only"` — `Q` seeps through `P` only into consumers whose friend closure contains `P` (§2.4): those who deliberately named `P` (directly or transitively) a friend. The curated middle.
>
> <spec://org.vibevm.core/vibevm/common/PROP-050#ACCESS-FRIENDS>

## git source {#git-source}

[p43] A dependency declared by a git repository and a tag, commit or branch instead of a registry; identity and fingerprint discipline are the same, and a branch is re-walked on update.

> [p44] **Identity.** Identical content-hash discipline as registry-resolved (§2.1): identity is `(kind, name, version, content_hash)`; the URL is informational. Two projects that pull the same git-source from different mirrors and produce the same `content_hash` are bit-identical installs. Force-pushed tag rewrite caught as `IntegrityError`.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-002#GS-IDENTITY>

## handler {#handler}

[p45] What a contribution runs: a built-in, a script, a binary, a native library, or an agent prompt.

> [p46] A contribution's `handler.kind` is one of five. Two wrap machinery that exists; three are new. All five are legal at every `phase:`/`slot:` point; the `compile:` family accepts `builtin` and `native` only (§8.5 explains why).
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#HANDLER-KINDS>

## hook {#hook}

[p47] A package's `pre-install` or `post-install` script, run in the package's slot; installing the package is the consent to run it, and its effects are not tracked.

> [p48] A package may declare `pre-install` / `post-install` scripts in its manifest.
>   vibevm runs them at fixed points in the install pipeline, in the package's own
>   materialised slot, choosing the right interpreter for the host OS.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-020#WHAT-HOOKS-ARE>

## index (of a registry) {#index-registry}

[p49] A repository beside a registry's packages that records every published version's summary and fingerprint; a cache that speeds search and cold installs and is never the truth.

> [p50] **Decision.** Package repositories are the **source of truth** for content (manifests, files, tags). The index is a **derived hot cache**, regeneratable from the authoritative package state.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-index/PROP-005#REPOS-AUTHORITATIVE>

## kind {#kind}

[p51] What a package is for, one of eight: `flow`, `feat`, `stack`, `tool`, `lang`, `mcp`, `doc`, `app`. Metadata, not identity; the set grows only by amendment.

> [p52] `kind ∈ {flow, feat, stack, tool, mcp, lang, doc, app}` — eight kinds; `mcp` shipped with [PROP-027](../modules/vibe-mcp/PROP-027-mcp-packages.xml); `doc` and `app` admitted by [PROP-057](PROP-057-documentation-packages-and-site.xml) through the `VIBEVM-SPEC.md` §4.1 amendment of 2026-09-12 (pending the owner's ratification at the merge of the docs-2026-09 branch; the code learns the two kinds in that campaign's phase 2). (§Invariants `INV-VOCABULARY` in this file carries the same list.)
>
> <spec://org.vibevm.core/vibevm/common/PROP-000#KIND-SET>

## lifecycle {#lifecycle}

[p53] The fixed order of build steps vibe runs: the one-phase `clean` lifecycle and the nine-phase `default` lifecycle from `validate` to `deploy`. See *phase*.

> [p54] vibe has **two** lifecycles. **`clean`** — one phase, exactly PROP-053. **`default`** — nine phases, in this fixed order:
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#LIFECYCLES>

## link type {#link-type}

[p55] How a dependency's boot snippet enters a consumer's lane: `static`, compiled into `STATIC.md`, or `dynamic`, listed in `INDEX.md` and read on demand; set by the consumer, suggested by the package.

> [p56] **Decision.** Each dependency declares an **inclusion type**, set by the consumer in its `vibe.toml` on the `[requires.packages]` entry:
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-009#INCLUSION-TYPES>

## lock file {#lock-file}

[p57] `vibe.lock`: the recorded resolution, one per workspace, with every package's exact version, fingerprint and provenance. Written by vibe, committed by you.

> [p58] With the freshness check, **`vibe install` becomes lockfile-respecting**: unchanged `[requires]` ⇒ the locked versions are honoured verbatim.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-011#LOCKFILE-RESPECTING>

## managed block {#managed-block}

[p59] The region between the lines `<vibevm>` and `</vibevm>` at the end of `CLAUDE.md`, `AGENTS.md` and `GEMINI.md`, the only part of those files vibe writes; it points an agent at the boot lane.

> [p60] **Decision.** `vibe` owns exactly one **managed block** inside each agent instruction file — a contiguous region bounded by an opening and a closing marker.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-012#ONE-BLOCK-LAW>

## manifest {#manifest}

[p61] `vibe.toml`: the one file you write to describe a project, a package or a workspace; its tables decide the node's role.

> [p62] **Decision.** `vibe-package.toml` is **retired as a distinct filename**. Every node — project root, workspace member, published package — carries a single `vibe.toml`; the role is expressed by which sections are present. This is the cargo model: one `Cargo.toml` carries `[package]` and/or `[workspace]`.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-007#ONE-MANIFEST>

## MCP server {#mcp-server}

[p63] A program an agent talks to over the Model Context Protocol. vibe's own server exposes a project's packages; a package of kind `mcp` delivers servers of its own.

> [p64] An **`mcp` package** is one whose primary deliverable is one or more
> Model Context Protocol servers.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-mcp/PROP-027#MCP-KIND-DEF>

## mirror {#mirror}

[p65] An alternative address for the same registry, tried for availability and verified against the same fingerprints; never recorded in the lock file.

> [p66] A `[[mirror]]` is an **availability copy of the same source** — same naming, same identity, same `content_hash`. The mirror walk falls through on **any availability failure** (`NetworkUnreachable`, `AuthFailed` on the mirror, server error, `content_hash` mismatch). `RepoNotFound` from a mirror bubbles up to the registry-walk layer (same policy as if the canonical primary had said `UnknownPackage`), because absence-of-package is a registry-level fact, not a mirror-level one.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-002#MIRROR-WALK-SEMANTICS>

## official documentation {#official}

[p67] Documentation whose edges converge: the subject names the package in `[documentation]` or by the `-docs` convention, and the package names the subject in `[[documents]]`. One may be primary. Computed at every render, stored nowhere as a flag.

> [p68] Officiality is never stored as a flag: it is computed from the convergence of edges at every render. A field `official = true` in a manifest or an index is a design error.
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#REL-NO-OFFICIAL-FLAG>

## override {#override}

[p69] A replacement source for one coordinate that short-circuits the registries; marked in the lock file so nobody mistakes it for a published version. The same word names the `[override]` table that rewrites the visibility marks of edges you do not own.

> [p70] **Decision.** `[[override]]` bypasses the registry layer for a named pkgref:
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-002#OVERRIDE-SHORT-CIRCUIT>

> [p71] **Owner-ruled (2026-08-23): `override` is lawful in any manifest, not only the root** («разрешён не только в корневом манифесте, а где угодно»). Any node `N` may carry an `[override]` table whose entries rewrite *foreign* edges — their `access`, `friend`, presence (`exclude = true`), or a target's `allow-friends` — and the rewrite acts wherever `N` stands on the chain: an aggregator repairs or reshapes a member's edge for **all of its own consumers**, exactly as it curates its delivery with `exclude`. The threat model follows the owner's earlier ruling: a deliberate break-in is not an attack (the developer can edit any file on disk anyway); this is the official verb that replaces reflection-style hacks — and it stays **quiet** (pull-based provenance only).
>
> <spec://org.vibevm.core/vibevm/common/PROP-050#OVERRIDE-ANYWHERE>

## package {#package}

[p72] The unit vibe installs: a folder with a manifest and the text or tools it delivers, published as its own repository, identified by its coordinate, version and content hash. A package is a project made installable.

> [p73] **Decision.** A package has the identical on-disk shape as a consumer project:
>
> <spec://org.vibevm.core/vibevm/common/PROP-024#PKG-PROJECT-LAW>

## phase {#phase}

[p74] One step of a lifecycle: `validate`, `install`, `generate`, `build`, `test`, `create`, `verify`, `package`, `deploy`. Naming a phase runs every phase before it.

> [p75] `vibe <phase>` executes every default-lifecycle phase up to and including the named one, in order — the Maven ritual verbatim. `vibe clean <phase>` runs the clean lifecycle first, then the default lifecycle up to `<phase>` (§4.4). A phase with no contributions and no built-in binding **completes as a no-op** — Maven's empty-phase law, which is what makes nine slots cost nothing for a prompt-only project (its `deploy` chain degenerates to validate+install).
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#INVOKE-RUNS-PRIORS>

## project {#project}

[p76] Any folder with a `vibe.toml`; a consumer of packages, marked by a `[project]` table, or a workspace of them.

> [p77] `[package]` and `[project]` are **mutually exclusive** in one file — a node is either a publishable package or a plain project, not both. (Decision 7-α from the design session: keep the two sections distinct rather than folding `[project]` into a `[package]` with optional `kind`. Explicitness wins; `kind` stays strictly mandatory wherever `[package]` appears.)
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-007#PACKAGE-XOR-PROJECT>

## provider {#provider}

[p78] What answers how a mechanism runs: a built-in or a package-supplied implementation of a build, package or deploy step, or a model endpoint behind an agent handler. Selected by exact route or pin.

> [p79] A real installed package may displace a builtin deploy mechanism through an exact route/pin. The engine reuses ABI-1, R5 prebuilt/source record and immutable-image carriage, admits the generated mechanism manifest and exact operation, and invokes all six deploy operations while retaining plan/receipt/recovery ownership. Restart plan/recovery/undeploy re-resolve once at the command boundary and exact-compare the durable sidecar binding, existing record/image/digest/path without build, repair, publication or builtin fallback. Evidence: `854707a1`, `9465291e`, `24b1fe4a`, `269bec0d`, `370ea177`, `a24e4aff`, `d475963c`.
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#R8-NATIVE-DEPLOY-PROVIDER>

## receipt {#receipt}

[p80] The record a deploy writes for every resource it created: what, where, under which generation, owned by which profile. The only authority for removal.

> [p81] Deploy profiles select ordered targets; plan is read-only. The engine owns provider selection, collision locks, intent/checkpoints, receipts, three-digest recovery, inverse sequencing and exact resource ownership. `vibe-bin` plus isolated Claude/Codex/OpenCode skill/plugin adapters implement plan/apply/verify/recover/remove without touching foreign neighbours. Evidence: `0a42456e`, `45d88e80`, `ae36ac48`.
>
> <spec://org.vibevm.core/vibevm/common/PROP-054#R8-DEPLOY-RUNTIME>

## registry {#registry}

[p82] A hosting organisation where packages are published, one repository per package; a project lists the registries it trusts in order.

> [p83] Each package is its **own** git repository — no monorepo. Per-package maintainer permissions are hosting-native (a package repo's owner controls access); no central merge queue.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-002#SHAPE-OWN-REPO>

## relay {#relay}

[p84] The mailbox under `.vibe/agentic/` where vibe parks an instruction it cannot execute itself; the agent drains it with `vibe command`.

> [p85] **Decision.** When a reasoning operation runs under the relay backend, it
>   does not act. It writes an `Intent` — a markdown prompt with light
>   frontmatter (id, source command, created-at, status) — to a **single-slot
>   mailbox**, the project-local `.vibe/agentic/command.md` (§3), and returns a
>   pointer telling the caller to drain it.
>
> <spec://org.vibevm.core/vibevm/common/PROP-018#RELAY-PARKS>

## scrape {#scrape}

[p86] The terminal removal of the vibe layer from a project, by contract, with a plan and a health proof; not to be confused with `clean`.

> [p87] Scrape
>     is the terminal cleaning operation defined here: it removes the selected
>     VibeVM repository layer while preserving the native product. The command
>     vocabulary deliberately reserves attach and
>     detach for a future live-tool relationship such as connecting
>     and disconnecting a debugger. Scrape is never an alias for that future
>     runtime operation, and no detach spelling is accepted by this command.
>
> <spec://org.vibevm.core/vibevm/common/PROP-056#SCRAPE-TERM-BOUNDARY>

## skill {#skill}

[p88] A file a package declares in `[[skill]]` that teaches an agent something; `vibe skill install` projects it into the agents' skill folders.

> [p89] **Decision.** Installing a skill into an agent is a **projection**: read the
>   declared skill body from the package (in `vibedeps/…` once installed) or an
>   external source authenticated by the package's matching lock record, and
>   write it into each target agent's skill directory in that agent's own
>   convention (`.claude/skills/<name>/…`, `.opencode/skills/<name>/…`,
>   `.agents/skills/<name>/…` — the paths PROP-015 §2.6 already resolves).
>
> <spec://org.vibevm.core/vibevm/common/PROP-018#PROJECTION-DEF>

## specification {#specification}

[p90] The normative text of a package or a project under `vibevm/vibespecs/`: addressable units with statuses, in Markdown or the XML dialect. What documentation quotes and never restates.

> [p91] <spec://org.vibevm.world/addressable-specs/flows/addressable-specs/ADDRESSABLE-SPECS-PROTOCOL#THE-SPEC-TREE-IS-THE-ONLY-CHANNEL>

## store {#store}

[p92] The machine-wide cache of fetched package versions under `~/.vibe/cache/`, keyed by identity, shared by every project, emptied only on request.

> [p93] **Decision (override clause corrected 2026-08-20 to the later, more specific ruling).** The package store is **machine-global**, not project-scoped — one store per machine at `<settings-home>/cache`, relocated only with the settings home (`$VIBE_SETTINGS`); **no store-specific override exists** — [`##THE-STORE-IS-DOT-VIBE-CACHE`](#layout) is the governing ruling. (`VIBE_REGISTRY_CACHE`, which this decision originally named, governs the registry **clone** cache — a different layer that keeps its own job.)
>
> <spec://org.vibevm.core/vibevm/modules/vibe-registry/PROP-010#CACHE-MACHINE-GLOBAL>

## subject {#subject}

[p94] A package that a documentation package documents, named in its `[[documents]]` table with a version range.

> [p95] `[[documents]]` is REQUIRED in a `doc` package, may list several subjects, and its `version` is a semver constraint.
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#REL-DOCUMENTS-REQUIRED>

## subskill {#subskill}

[p96] A selectable cut of a package's content, activated by the consumer's context, such as the library version a project uses.

> [p97] Per §2.7 of [PROP-004](../../../legacy-spec/research/PROP-004-tessl-comparative-research.md#purl), Tessl's headline marketing claim — version-matched documentation — rides on the `describes` field at the tile level. vibevm goes one step further: the field is available **on subskills as well as packages**. A `flow:wal` package as a whole may not bind to any one library, but its `subskills/stack/rust/` cut binds specifically to `pkg:cargo/sqlx@0.8.0`; another `subskills/stack/rust-diesel/` cut binds to `pkg:cargo/diesel@2.x`. The two coexist in the same package, and the activation channel `context.if_describes_match` selects the right one for the consumer's actual library version.
>
> <spec://org.vibevm.core/vibevm/modules/vibe-resolver/PROP-003#DESCRIBES-ON-SUBSKILLS>

## traceability map {#traceability-map}

[p98] `specmap.json`: the generated graph of specification units, tagged code items and the edges between them, checked by the build and queried by `vibe explain`, `vibe query` and `vibe select`.

> [p99] **Invariants are machine-checked.** Dangling references, uncovered requirements, orphan code, and — the load-bearing one — **staleness**: a spec unit carries a revision + content hash; when it changes, every edge pinned to the old revision flips to *suspect* until re-affirmed.
>
> <spec://org.vibevm.ai-native/core-ai-native/mechanisms/PROP-014#FORCE-INVARIANTS-ARE-MACHINE-CHECKED>

## translation {#translation}

[p100] A separate documentation package in another language that names its source in `[translates]` and mirrors its tree; official when published by the source's group under `<docname>-<lang>`. See *adaptation*.

> [p101] An **official** translation is one that declared `translates` on the source and is published by the **same group** as the source under the name `<docname>-<lang>`; everything else is a community translation (§6).
>
> <spec://org.vibevm.core/vibevm/common/PROP-057#LOC-OFFICIAL-TRANSLATION>

## version constraint {#version-constraint}

[p102] What a manifest asks for: a range such as `^1.0`, an exact `=1.2.0`, or nothing for the newest stable. The lock file records the one version the resolver chose within it.

> [p103] `flow:wal@^0.3` → semver range.
>
> <spec://org.vibevm.core/vibevm/common/PROP-000#CF-RANGE>

## workspace {#workspace}

[p104] A repository developing several packages together, declared by a `[workspace]` table listing member paths; one lock file at the root and one unified resolution across members.

> [p105] **Decision.** A `vibe.toml` may carry a `[workspace]` table declaring member packages:
>
> <spec://org.vibevm.core/vibevm/modules/vibe-workspace/PROP-007#WORKSPACE-TABLE>

