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 <noreply@paperclip.ing>
This commit is contained in:
dotta 2026-03-29 01:04:53 -05:00
parent f1b6d33f0a
commit 627a4d7995
3 changed files with 6 additions and 4 deletions

View file

@ -39,6 +39,7 @@ Before making changes, read in this order:
- `releases/`: release notes - `releases/`: release notes
- `patches/`: pnpm dependency patches - `patches/`: pnpm dependency patches
- `docker/`: Docker configuration - `docker/`: Docker configuration
- `report/`: generated analysis and audit reports
## 4. Dev Setup (Auto DB) ## 4. Dev Setup (Auto DB)

View file

@ -11,8 +11,8 @@ We really appreciate both small fixes and thoughtful larger changes.
- Pick **one** clear thing to fix/improve - Pick **one** clear thing to fix/improve
- Touch the **smallest possible number of files** - Touch the **smallest possible number of files**
- Make sure the change is very targeted and easy to review - Make sure the change is very targeted and easy to review
- All automated checks pass (including Greptile comments) - All automated checks pass (CI typecheck, tests, build)
- No new lint/test failures - No new test failures
These almost always get merged quickly when they're clean. 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 - Clear description of what & why
- Proof it works (manual testing notes) - Proof it works (manual testing notes)
- All tests passing - 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. PRs that follow this path are **much** more likely to be accepted, even when they're large.

View file

@ -37,6 +37,7 @@ Built-in adapters:
- `claude_local`: runs your local `claude` CLI - `claude_local`: runs your local `claude` CLI
- `codex_local`: runs your local `codex` CLI - `codex_local`: runs your local `codex` CLI
- `opencode_local`: runs your local `opencode` CLI - `opencode_local`: runs your local `opencode` CLI
- `gemini_local`: runs your local Gemini CLI
- `hermes_local`: runs your local `hermes` CLI - `hermes_local`: runs your local `hermes` CLI
- `cursor`: runs Cursor in background mode - `cursor`: runs Cursor in background mode
- `pi_local`: runs an embedded Pi agent locally - `pi_local`: runs an embedded Pi agent locally
@ -44,7 +45,7 @@ Built-in adapters:
- `process`: generic shell command adapter - `process`: generic shell command adapter
- `http`: calls an external HTTP endpoint - `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 ## 3.2 Runtime behavior