Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ codex-status

### codex-metrics

Show live runtime metrics (request counts, latency, errors, retries, and safe mode).
Show live runtime metrics (request counts, latency, errors, retries, and safe mode), plus local-only reliability KPIs computed from local audit events in a best-effort 24h, retention-bounded window.

```text
codex-metrics
Expand Down Expand Up @@ -554,6 +554,7 @@ codex-dashboard
| `codex-remove` | Remove account entry | `codex-remove index=3` |
| `codex-export` | Export account backups | `codex-export` |
| `codex-import` | Dry-run or apply imports | `codex-import path="~/backup/accounts.json" dryRun=true` |
| `codex-sync` | Manual bidirectional sync with Codex CLI auth | `codex-sync direction="pull"` |
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

---

Expand Down
11 changes: 11 additions & 0 deletions docs/privacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,16 @@ All data is stored **locally on your machine**:
- **Purpose:** Reduce GitHub API calls and improve performance
- **TTL:** 15 minutes (automatically refreshes when stale)

### Audit Logs (Local Reliability Metrics)
- **Location:** `~/.opencode/logs/audit.log` (rotated as `audit.1.log`, `audit.2.log`, etc.)
- **Contents:** Local operation lifecycle events used by `codex-metrics` for best-effort 24h reliability KPIs (bounded by local log retention)
- **Includes:**
- Operation class/name (`request`, `auth`, `tool`, `sync`, `startup`, `ui_event`)
- Timing and outcome (`start`, `success`, `failure`, `retry`, `recovery`)
- Error category and HTTP status (when available)
- **Does not include:** prompt text, model responses, OAuth tokens, or secrets
- **Scope:** Local-only; never transmitted to third parties

### Debug Logs
- **Location:** `~/.opencode/logs/codex-plugin/`
- **Contents:** Request/response metadata logs (only when `ENABLE_PLUGIN_REQUEST_LOGGING=1` is set)
Expand Down Expand Up @@ -114,6 +124,7 @@ rm -rf ~/.opencode/cache/
### Delete Logs
```bash
rm -rf ~/.opencode/logs/codex-plugin/
rm -f ~/.opencode/logs/audit*.log
```

### Revoke OAuth Access
Expand Down
Loading