WhisperGate MVP: no-reply API + plugin rule gate #1

Merged
hzhang merged 27 commits from feat/whispergate-mvp into main 2026-02-25 22:07:07 +00:00
2 changed files with 18 additions and 1 deletions
Showing only changes of commit 16fdb6600a - Show all commits

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: check check-rules up down smoke
check:
cd plugin && npm run check
check-rules:
node scripts/validate-rules.mjs
up:
./scripts/dev-up.sh
down:
./scripts/dev-down.sh
smoke:
./scripts/smoke-no-reply-api.sh

View File

@@ -20,7 +20,8 @@ The no-reply provider returns `NO_REPLY` for any input.
- `plugin/` — OpenClaw plugin (before_model_resolve hook) - `plugin/` — OpenClaw plugin (before_model_resolve hook)
- `no-reply-api/` — OpenAI-compatible minimal API that always returns `NO_REPLY` - `no-reply-api/` — OpenAI-compatible minimal API that always returns `NO_REPLY`
- `docs/` — rollout and configuration notes - `docs/` — rollout and configuration notes
- `scripts/` — smoke/dev helper scripts - `scripts/` — smoke/dev/helper checks
- `Makefile` — common dev commands (`make check`, `make check-rules`, `make up`)
--- ---