- Add convoy-lifecycle.md design doc - Add formula-resolution.md design doc - Add mol-mall-design.md design doc - Add ready.go command implementation - Move dog-pool-architecture.md to docs/design/ - Update .gitignore for beads sync files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
54 lines
754 B
Plaintext
54 lines
754 B
Plaintext
# Binaries
|
|
/gt
|
|
*.exe
|
|
|
|
# Build
|
|
/dist/
|
|
/build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude Code local state
|
|
.claude/
|
|
|
|
# Test
|
|
coverage.out
|
|
*.test
|
|
|
|
# Local config
|
|
config.toml
|
|
!config.example.toml
|
|
gt
|
|
|
|
# Runtime state
|
|
state.json
|
|
.runtime/
|
|
|
|
# Beads runtime state (not tracked)
|
|
# Formulas ARE tracked for `go install @latest` - see bottom of file
|
|
.beads/redirect
|
|
.beads/issues.jsonl
|
|
.beads/interactions.jsonl
|
|
.beads/metadata.json
|
|
.beads/mq/
|
|
.beads/last-touched
|
|
.beads/daemon-*.log.gz
|
|
.beads/.sync.lock
|
|
.beads/sync_base.jsonl
|
|
.beads-wisp/
|
|
|
|
# Clone-specific CLAUDE.md (regenerated locally per clone)
|
|
CLAUDE.md
|
|
|
|
# Embedded formulas are committed so `go install @latest` works
|
|
# Run `go generate ./...` after modifying .beads/formulas/
|