Commit Graph

2 Commits

Author SHA1 Message Date
teernisse
66f8cc3eb4 Add beads issue tracking infrastructure
Initialize beads (br) for dependency-aware issue tracking in this project.
Beads provides a lightweight task database with graph-aware triage, used
for coordinating work on the JSONL-first discovery feature.

Files added:
- .beads/config.yaml: Project configuration (issue prefix, defaults)
- .beads/issues.jsonl: Issue database with JSONL-first discovery tasks
- .beads/metadata.json: Beads metadata (commit correlation, etc.)
- .beads/.gitignore: Ignore SQLite databases, lock files, temp files

Also ignore .bv/ (beads viewer local state) in project .gitignore.

Beads is non-invasive: it never executes git/jj commands. The .beads/
directory is manually committed alongside code changes.

Usage:
- br ready --json: Find unblocked work
- br update <id> --status in_progress: Claim a task
- br close <id> --reason "done": Complete a task
- bv --robot-triage: Get graph-aware recommendations

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-28 00:53:59 -05:00
afd228eab7 Add .gitignore for standard project artifacts
Ignore node_modules, dist output, TypeScript build info,
environment files, editor configs, and OS metadata files.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 09:25:38 -05:00