Files
codex/bazel/schema/BUILD.bazel
Charlie Marsh b21f2e3081 Add a cacheable Bazel app-server schema bundle (#42174)
## What changed

- Add a `schema_bundle` rule that generates stable and experimental app-server
  schema directories as declared Bazel actions.
- Include the pinned `zstd` executable in the bundle so consumers can normalize
  generated JSON without a separate `bazel run` invocation.
- Expose the app-server protocol test binary as the schema generator and add the
  manual `//bazel/schema:public-schema-bundle` target.

GitOrigin-RevId: 0a7ce47258d297dbf20db78626f2843145ee1b49
2026-09-02 02:00:18 +00:00

9 lines
221 B
Python

load("//bazel/rules:schema_bundle.bzl", "schema_bundle")
schema_bundle(
name = "public-schema-bundle",
testonly = True,
generator = "//codex-rs/app-server-protocol:schema-generator",
tags = ["manual"],
)