Stop tracking local AI assistant context

CLAUDE.md is a working note for the local editing setup, not project
documentation. This repository is publicly readable, so it does not belong in
the tree. The file stays on disk and is now ignored, together with the other
assistant context files.
This commit is contained in:
2026-08-14 22:32:47 +02:00
parent 09a0a07fdb
commit 4e784e336e
2 changed files with 7 additions and 29 deletions
+7
View File
@@ -1,3 +1,10 @@
__pycache__/
*.pyc
.worktrees/
# Local AI assistant context - not for publication
CLAUDE.md
AGENTS.md
GEMINI.md
.claude/
.cursor/
-29
View File
@@ -1,29 +0,0 @@
# autoresearch
> **Status: MVP complete** — all core components built and tested.
Autonomous research loop for Claude Code. Runs inside tmux, one window per project.
## Key files
- `bin/start.sh` — tmux session orchestrator (start/stop/status)
- `bin/check_budget.py` — Anthropic API budget checker
- `bin/log_view.py` — formatted log viewer (overview pane, left)
- `bin/metrics.py` — metrics summary (overview pane, right)
- `~/.claude/autoresearch.yaml` — main config
- `~/.claude/skills/autoresearch/skill.md` — /autoresearch skill
- `~/.claude/skills/autoresearch-loop/skill.md` — /autoresearch-loop (ralph-loop payload)
## Run
```
bin/start.sh # start tmux session
bin/start.sh stop # stop all windows
bin/start.sh status # show running experiments
```
## Plans
`docs/plans/` contains design and implementation documents for this project.
## Logs
- `~/.claude/autoresearch/log.jsonl` — append-only experiment log
- Each line: `{ "ts": "ISO8601", "project": "...", "exp": "NNNN", "metric_before": 0.0, "metric_after": 0.0, "kept": true, "files_changed": ["..."] }`