From 627a4d7995c8b71c7305572735547b0856deab78 Mon Sep 17 00:00:00 2001 From: dotta Date: Sun, 29 Mar 2026 01:04:53 -0500 Subject: [PATCH] docs: nightly accuracy fixes 2026-03-29 - CONTRIBUTING.md: remove references to Greptile bot (not configured in CI) and fix "lint" mention (no linter in CI pipeline) - docs/agents-runtime.md: add missing gemini_local adapter to built-in list - AGENTS.md: add report/ directory to repo map Co-Authored-By: Paperclip --- AGENTS.md | 1 + CONTRIBUTING.md | 6 +++--- docs/agents-runtime.md | 3 ++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 49109ab8..3d59fad7 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -39,6 +39,7 @@ Before making changes, read in this order: - `releases/`: release notes - `patches/`: pnpm dependency patches - `docker/`: Docker configuration +- `report/`: generated analysis and audit reports ## 4. Dev Setup (Auto DB) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1eba95e3..ad4ffd69 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,8 +11,8 @@ We really appreciate both small fixes and thoughtful larger changes. - Pick **one** clear thing to fix/improve - Touch the **smallest possible number of files** - Make sure the change is very targeted and easy to review -- All automated checks pass (including Greptile comments) -- No new lint/test failures +- All automated checks pass (CI typecheck, tests, build) +- No new test failures These almost always get merged quickly when they're clean. @@ -27,7 +27,7 @@ These almost always get merged quickly when they're clean. - Clear description of what & why - Proof it works (manual testing notes) - All tests passing - - All Greptile + other PR comments addressed + - All PR review comments addressed PRs that follow this path are **much** more likely to be accepted, even when they're large. diff --git a/docs/agents-runtime.md b/docs/agents-runtime.md index f3672723..1b4a273a 100644 --- a/docs/agents-runtime.md +++ b/docs/agents-runtime.md @@ -37,6 +37,7 @@ Built-in adapters: - `claude_local`: runs your local `claude` CLI - `codex_local`: runs your local `codex` CLI - `opencode_local`: runs your local `opencode` CLI +- `gemini_local`: runs your local Gemini CLI - `hermes_local`: runs your local `hermes` CLI - `cursor`: runs Cursor in background mode - `pi_local`: runs an embedded Pi agent locally @@ -44,7 +45,7 @@ Built-in adapters: - `process`: generic shell command adapter - `http`: calls an external HTTP endpoint -For local CLI adapters (`claude_local`, `codex_local`, `opencode_local`, `hermes_local`), Paperclip assumes the CLI is already installed and authenticated on the host machine. +For local CLI adapters (`claude_local`, `codex_local`, `opencode_local`, `gemini_local`, `hermes_local`), Paperclip assumes the CLI is already installed and authenticated on the host machine. ## 3.2 Runtime behavior