From d82a0b28a92cd52ca77f7381b34750cc6ddb41e0 Mon Sep 17 00:00:00 2001 From: Kit Langton Date: Fri, 28 Aug 2026 17:18:47 -0400 Subject: [PATCH] docs: clarify release workflow (#46025) --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index 2f025f9c68e..9e7a45deb74 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,6 +1,7 @@ - After changing the public Protocol or Server `HttpApi`, run `bun run generate` from `packages/client`. Do not edit generated client files directly. - Keep runtime dependencies directed from Schema to Core and Protocol, then from Core and Protocol to Server. Client runtime code may depend on Schema and Protocol but never Core or Server; `sdk` composes Client, Core, and Server. - Current implementation changes belong in `packages/core`, `packages/cli`, `packages/server`, `packages/protocol`, `packages/schema`, and related generated client surfaces when required. +- This repository does not use Changesets. Do not add `.changeset` files; follow the existing release workflow instead. - The default branch in this repo is `v2`. - Base all new branches and worktrees on `v2`, or `origin/v2` when the local `v2` ref is unavailable. Do not base them on `dev`. - Local `main` ref may not exist; use `v2` or `origin/v2` for diffs.