mirror of
https://github.com/garrytan/gbrain.git
synced 2026-07-31 04:07:52 +00:00
Agent tools (Claude Code, Codex, …) support a *.local.md counterpart to the committed CLAUDE.md/AGENTS.md for personal, per-clone instruction overrides that load after the committed file and are meant to stay uncommitted. gbrain already ignores other workspace-local agent artifacts (.context/, .claude/), so this fills the remaining gap for the two root-level override files. Explicit filenames rather than a *.local.md glob, matching the existing commented, specific style.
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
node_modules/
|
|
bin/
|
|
.DS_Store
|
|
*.log
|
|
.env
|
|
.env.*
|
|
!.env.*.example
|
|
# Bun --compile temp artifacts. Each build emits a new hash-named .bun-build
|
|
# file in cwd; glob catches all of them.
|
|
*.bun-build
|
|
.gstack/
|
|
supabase/.temp/
|
|
.claude/skills/
|
|
# admin/dist/ is the React SPA bundle. CLAUDE.md says it's committed for
|
|
# self-contained binaries (the bun --compile path embeds it via
|
|
# `import path from 'admin/dist/index.html' with { type: 'file' }`).
|
|
# Build via: cd admin && bun install && bun run build.
|
|
admin/node_modules/
|
|
.idea
|
|
eval/reports/
|
|
eval/data/world-v1/world.html
|
|
|
|
# BrainBench amara-life-v1 Opus cache (regenerate via eval:generate-amara-life)
|
|
eval/data/amara-life-v1/_cache/
|
|
|
|
# claw-test E2E build cache (shim + scratch outputs)
|
|
test/.cache/
|
|
|
|
.claude/
|
|
export/
|
|
|
|
# Conductor workspace-local agent artifacts: plans, todos, run-unit-parallel
|
|
# failure logs and per-shard test output. v0.26.4 (run-unit-parallel.sh)
|
|
# writes .context/test-failures.log + .context/test-summary.txt +
|
|
# .context/test-shards/. Workspace-local by design — never committed.
|
|
.context/
|
|
|
|
# Local agent instruction overrides (CLAUDE.local.md / AGENTS.local.md) — personal,
|
|
# per-clone, loaded after the committed CLAUDE.md/AGENTS.md. Never committed.
|
|
CLAUDE.local.md
|
|
AGENTS.local.md
|
|
|
|
# Tier 3 PGLite snapshot fixture (built on demand by build:pglite-snapshot)
|
|
test/fixtures/pglite-snapshot.tar
|
|
test/fixtures/pglite-snapshot.version
|
|
|
|
# Private brain reports — never check these in (per CLAUDE.md privacy rule)
|
|
reports/network-intelligence/
|