From 19f21cdb0be77864ca634245fd2d8e3e11523b98 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 26 Aug 2026 04:57:07 +0000 Subject: [PATCH] docs(deployment): name the environment as what `os environments bind --build` updates MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `content/docs/deployment/cli.mdx:1532` still read "before updating the project" — the one site on the page the v5.0 `project` -> `environment` rename (ADR-0006, no aliases) never reached, while the page's own Cloud Environments command table directly above it already uses the post-rename vocabulary. The noun is verified against the command's behaviour, not just the neighbouring text: in `packages/cli/src/commands/environments/bind.ts`, `--build` spawns `compile --output ` and the write that follows is `client.projects.update(, { metadata })` — a PATCH of the environment record's `artifact_path`. The thing updated after the compile is the environment, so `environment` is the accurate noun and not merely the mechanically renamed one. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01UjM2ia8Av1v5NqfqQEQmC6 --- content/docs/deployment/cli.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/deployment/cli.mdx b/content/docs/deployment/cli.mdx index b2ccecb7ed..08475fb96f 100644 --- a/content/docs/deployment/cli.mdx +++ b/content/docs/deployment/cli.mdx @@ -1529,7 +1529,7 @@ os environments bind --artifact ./dist/objectstack.json os environments bind --artifact ./dist/objectstack.json --build ``` -`--build` runs `objectstack compile` before updating the project. `--reseed` +`--build` runs `objectstack compile` before updating the environment. `--reseed` is reserved for the server-side reseed endpoint; use it only when that endpoint is available in your deployment.