Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ go test ./...

Uses CLI tools: `bd`, `claude`, `gh`, `git`, `mise` (optional), `zellij`

**Important**: The beads (`bd`) version in `mise.toml` must stay aligned with the version in `internal/mise/template/mise.tmpl`. Co queries the beads database directly via sqlc and expects specific schema columns. Version mismatches cause errors like "no such column: owner".

## Context Usage

Functions that execute external commands or perform I/O should accept `context.Context` as their first parameter:
Expand Down
3 changes: 2 additions & 1 deletion internal/mise/template/mise.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
[tools]
# Beads - Git-backed issue tracker for multi-session work
# Used for tracking issues, dependencies, and persistent memory
"aqua:steveyegge/beads" = "latest"
# Pinned to ensure schema compatibility with co's database queries
"aqua:steveyegge/beads" = "v0.49.2"

# Claude Code - Anthropic's CLI for Claude
# Used to run AI-powered coding sessions
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tools]
go = "1.25"
"aqua:steveyegge/beads" = "v0.49.0"
"aqua:steveyegge/beads" = "v0.49.2"
"go:golang.org/x/tools/cmd/deadcode" = "0.40.0"
"aqua:sqlc-dev/sqlc" = "1.28.0"
"aqua:golangci/golangci-lint" = "v2.8.0"
Expand Down
Loading