Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Chock changelog

## Unreleased
## 0.11.1 — The plugins page tells a gate from a guard

- **The generated plugins page tells a gate from a guard.** `chock marketplace build` wrote one
fixed paragraph per tree describing every enforcing package as a `PreToolUse` guard script
Expand All @@ -13,6 +13,11 @@
own hooks file wires, in that client's spelling. Where a client records no write-tool
vocabulary the page says the gate runs at the turn's end only and the write itself is not
judged. The page renderer moves to its own module, `chock.plugin.catalog_page`.
- **Documentation matches the code again.** A full audit of `README.md` and `docs/` against
the source: the coverage-grade vocabulary (eight levels, and no agent reaches `enforced`),
the adapter files `chock init` actually writes, a schema-valid example manifest, and the
surface, vendor and format counts. `chock plugin build`'s summary line for the Cursor format
now names its `preToolUse` and `stop` gate events beside `beforeShellExecution`.

## 0.11.0 — A policy's gate rides in its plugin, and Cursor gates a write and reports at the turn's end

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ abstract: >-
type: software
authors:
- name: Open Coder AI
version: 0.11.0
version: 0.11.1
license: Apache-2.0
repository-code: https://github.com/open-coder-ai/chock
url: https://github.com/open-coder-ai/chock
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ inputs:
version:
description: Chock version to install
required: false
default: "0.11.0"
default: "0.11.1"

runs:
using: composite
Expand Down
Binary file modified docs/assets/social-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/assets/social-preview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ chock init .
Use the action in a workflow:

```yaml
- uses: open-coder-ai/chock@v0.11.0
- uses: open-coder-ai/chock@v0.11.1
with:
command: check
version: 0.11.0
version: 0.11.1
```

The action installs the pinned version via `pipx` and runs the command. The `v1` major
Expand Down
2 changes: 1 addition & 1 deletion docs/reviewer-evidence.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ un-forkable.) Add a step using this repository's `action.yml`:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: open-coder-ai/chock@v0.11.0
- uses: open-coder-ai/chock@v0.11.1
with:
command: review require --base origin/main
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "chock"
# Version contract (docs/compatibility.md): PATCH releases are emitter-byte-identical;
# MINOR releases may change compiled output. 0.1.0 is the first public release; the
# 0.0.1a0 pre-release exists only because PyPI names are claimed by uploading.
version = "0.11.0"
version = "0.11.1"
description = "Governance-as-code for AI coding agents: write a rule once, enforce it on git hooks, CI, and every agent"
readme = "README.md"
# PEP 639 SPDX expression; needs setuptools >= 77 (pinned in build-system below).
Expand Down
Loading