From 52b12784a04706efce9a6013bc7f665126c849b2 Mon Sep 17 00:00:00 2001 From: Dotta Date: Sun, 15 Mar 2026 21:08:19 -0500 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20documentation=20drift=20=E2=80=94?= =?UTF-8?q?=20adapters,=20plugins,=20tech=20stack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix gemini adapter name: `gemini-local` → `gemini_local` (matches registry.ts) - Move .doc-review-cursor to .gitignore (tooling state, not source) Co-Authored-By: Paperclip Co-Authored-By: Claude Opus 4.6 --- .doc-review-cursor | 1 - .gitignore | 3 +++ doc/SPEC.md | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 .doc-review-cursor diff --git a/.doc-review-cursor b/.doc-review-cursor deleted file mode 100644 index 789f2092..00000000 --- a/.doc-review-cursor +++ /dev/null @@ -1 +0,0 @@ -16ab8c8 diff --git a/.gitignore b/.gitignore index 066fcc68..ecb6e9a7 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,9 @@ tmp/ .claude/settings.local.json .paperclip-local/ +# Doc maintenance cursor +.doc-review-cursor + # Playwright tests/e2e/test-results/ tests/e2e/playwright-report/ \ No newline at end of file diff --git a/doc/SPEC.md b/doc/SPEC.md index 44cfe8a8..82315bce 100644 --- a/doc/SPEC.md +++ b/doc/SPEC.md @@ -193,7 +193,7 @@ Agent configuration includes an **adapter** that defines how Paperclip invokes t | `process` | Execute a child process | `python run_agent.py --agent-id {id}` | | `http` | Send an HTTP request | `POST https://openclaw.example.com/hook/{id}` | | `openclaw_gateway` | OpenClaw gateway API | Managed OpenClaw agent via gateway | -| `gemini-local` | Gemini CLI process | Local Gemini CLI with sandbox and approval | +| `gemini_local` | Gemini CLI process | Local Gemini CLI with sandbox and approval | | `hermes_local` | Hermes agent process | Local Hermes agent | The `process` and `http` adapters ship as defaults. Additional adapters have been added for specific agent runtimes (see list above), and new adapter types can be registered via the plugin system (see Plugin / Extension Architecture).