4d014e2f45
Reviewing the project used to mean re-stating what to look at every time. docs/REVIEW.md now holds that agenda once — nine areas, each anchored to this codebase — and both entry points point at it rather than copying it: the /review-project command in .claude/commands, and a section in CLAUDE.md so a plain-language review request lands in the same place. STANDARDS.md gains a "Config file compatibility" section. The project has applied the same rule three times (Theme, JobListView, TimeoutSeconds) without ever writing it down: a new Config field is omitempty and its zero value means the previous behavior, a meaningful zero is never backfilled on load, and an unrecognised enum value reads as the default through one shared helper. With no migration step and hand-editable files, that is what keeps older configs working. Also removes docs/PLAN-compact-job-list.md, implemented in edabc57 — everything but the version bump, which now waits for the release along with the rest of the Unreleased section. .claude/settings.local.json is ignored so the shared command can be tracked without per-developer permissions. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
30 lines
763 B
Plaintext
30 lines
763 B
Plaintext
# Build outputs
|
|
dist/
|
|
|
|
# Persistent Go build cache for Docker-based release builds.
|
|
.gocache/
|
|
|
|
# Generated Windows resource compiled from packaging/windows/gosentry.rc.
|
|
cmd/gosentry/*.syso
|
|
|
|
# Local binaries that may be produced by ad-hoc go build commands.
|
|
*.exe
|
|
*.test
|
|
|
|
# Runtime files created next to the executable during local runs.
|
|
gosentry.json
|
|
jobs.json
|
|
logs/
|
|
|
|
# Go workspace/cache files that should stay local if a developer creates them.
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Claude Code per-developer settings. The shared command in .claude/commands is
|
|
# tracked; locally granted tool permissions are not.
|
|
.claude/settings.local.json
|
|
|
|
# GoodSync metadata. This is intentionally kept because the directory is local
|
|
# to the user's file synchronization setup.
|
|
_gsdata_/
|