Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
afed805
/{.gitignore,AGENTS.md}: ignore beads stuff
coffeegoddd Feb 3, 2026
96f9edc
/GITBLOBSTORE_DESIGN.md: design doc
coffeegoddd Feb 3, 2026
505e9e5
/GITBLOBSTORE_DESIGN.md: update with git internals info
coffeegoddd Feb 3, 2026
f42421c
/go/store/blobstore/internal/git/runner.go: internal git runner
coffeegoddd Feb 3, 2026
418a46b
/go/store/blobstore/internal/git: wip, add read api
coffeegoddd Feb 3, 2026
6ef9931
/go/store/blobstore/internal/git: wip, add unimplemented write api
coffeegoddd Feb 3, 2026
089ccfb
/go/store/blobstore/git_blobstore.go: wip, support all range
coffeegoddd Feb 3, 2026
838a9f4
/go/store/blobstore/git_blobstore.go: wip, implement ranges
coffeegoddd Feb 3, 2026
0b327d0
/go/store/blobstore/git_blobstore.go: wip, normalize paths
coffeegoddd Feb 3, 2026
7b72763
/go/store/testutils/gitrepo: wip, adding tests
coffeegoddd Feb 3, 2026
363dac9
/go/store/blobstore: wip, gitblobstore tests
coffeegoddd Feb 3, 2026
ecdaff9
/go/store/nbs/git_blobstore_read_smoke_test.go: smoke test for git bl…
coffeegoddd Feb 3, 2026
a7fa1f6
/go/{store, utils}: formatting
coffeegoddd Feb 3, 2026
b612145
/go/store/blobstore/internal/git/runner.go: fix comment
coffeegoddd Feb 3, 2026
2c6ffcd
/go/store/{blobstore,testutils}: some comment updates
coffeegoddd Feb 3, 2026
12ce028
/go/store/{blobstore,nbs,testutils}: fix copyright headers
coffeegoddd Feb 3, 2026
54debec
/{AGENTS.md,GITBLOBSTORE_DESGIN.md}: remove md files
coffeegoddd Feb 4, 2026
b79b3e5
/go/store/blobstore/internal/git/runner.go: formatting
coffeegoddd Feb 4, 2026
d25fcea
/go/store/blobstore/internal/git: addressing pr feedback
coffeegoddd Feb 4, 2026
b45fce3
/go/store/blobstore/internal/git/runner.go: remove buffer slices
coffeegoddd Feb 4, 2026
83a31e2
/go/store/blobstore: more feedback
coffeegoddd Feb 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ integration-tests/bats/batsee_results
CLAUDE.md

*~
.dir-locals.el
.dir-locals.el
.beads
.gitattributes

26 changes: 26 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Agent Instructions

This project uses **bd** (beads) for issue tracking. Run `bd onboard` to get started.

## Quick Reference

```bash
bd ready # Find available work
bd show <id> # View issue details
bd update <id> --status in_progress # Claim work
bd close <id> # Complete work
bd sync # Sync with git
```

## Landing the Plane (Session Completion)

**When ending a work session**, you MUST complete ALL steps below. Work is NOT complete until `git push` succeeds.

**MANDATORY WORKFLOW:**

1. **File issues for remaining work** - Create issues for anything that needs follow-up
2. **Run quality gates** (if code changed) - Tests, linters, builds
3. **Update issue status** - Close finished work, update in-progress items
4. **Clean up** - Clear stashes, prune remote branches
5. **Hand off** - Provide context for next session

Loading
Loading