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>
20 lines
177 B
Plaintext
20 lines
177 B
Plaintext
node_modules/
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
|
|
# Editor / OS
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# bv (beads viewer) local config and caches
|
|
.bv/
|