From 0a224983fd086272ed59ab21ccc0ce83bbec6af2 Mon Sep 17 00:00:00 2001 From: orion Date: Wed, 25 Feb 2026 13:47:19 +0000 Subject: [PATCH] docs: add changelog and expose test-api command in readme --- CHANGELOG.md | 11 +++++++++++ README.md | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..29cd97f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +## 0.1.0-mvp + +- Added no-reply API service (`/v1/chat/completions`, `/v1/responses`, `/v1/models`) +- Added optional bearer auth (`AUTH_TOKEN`) +- Added WhisperGate plugin with deterministic rule gate +- Added discord-specific 🔚 prompt injection for bypass/end-symbol paths +- Added containerization (`Dockerfile`, `docker-compose.yml`) +- Added helper scripts for smoke/dev lifecycle and rule validation +- Added no-touch config rendering and integration docs diff --git a/README.md b/README.md index 0776e83..bd8e78f 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ The no-reply provider returns `NO_REPLY` for any input. - `no-reply-api/` — OpenAI-compatible minimal API that always returns `NO_REPLY` - `docs/` — rollout and configuration notes - `scripts/` — smoke/dev/helper checks -- `Makefile` — common dev commands (`make check`, `make check-rules`, `make up`) +- `Makefile` — common dev commands (`make check`, `make check-rules`, `make test-api`, `make up`) +- `CHANGELOG.md` — milestone summary ---