Skip to content
Draft
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
66 changes: 66 additions & 0 deletions .beads/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Dolt database and runtime state managed by bd, not git
dolt/
embeddeddolt/
proxieddb/
dolt-access.lock

# Checkout-local config and identity. Copy config.yaml.example when using Beads.
config.yaml
metadata.json

# Generated local docs/export snapshots
README.md
issues.jsonl
events.jsonl

# Runtime files
bd.sock
bd.sock.startlock
sync-state.json
last-touched
.exclusive-lock
daemon.*
interactions.jsonl
push-state.json
*.lock

# Credentials and local version tracking
.beads-credential-key
.local_version
proxied_server_client_info.json

# Worktree redirect and sync state
redirect
.sync.lock
export-state/
export-state.json

# Ephemeral store
ephemeral.sqlite3
ephemeral.sqlite3-journal
ephemeral.sqlite3-wal
ephemeral.sqlite3-shm

# Dolt server management
dolt-server.pid
dolt-server.log
dolt-server.lock
dolt-server.port
dolt-server.activity
dolt-pprof/

# Recovery and backup data
*.corrupt.backup/
backup/

# Per-project environment file
.env

# Legacy files
*.db
*.db?*
*.db-journal
*.db-wal
*.db-shm
db.sqlite
bd.db
8 changes: 8 additions & 0 deletions .beads/config.yaml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Beads Configuration File
# Copy this file to .beads/config.yaml when using Beads in this checkout.
# Keep .beads/config.yaml local; do not commit it.
# This file configures default behavior for bd commands in this repository.
# Runtime identity and database state stay checkout-local and ignored.

federation.remote: "git+https://github.com/EntityProcess/allagents-beads.git"
sync.remote: "git+https://github.com/EntityProcess/allagents-beads.git"
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ temp/
.worktrees/
allagents.worktrees/

# Beads local Dolt database and runtime files
.beads/
# Beads local config and runtime files
.beads/*
!.beads/
!.beads/.gitignore
!.beads/config.yaml.example

# Ralph runtime files (not config)
.ralph/.call_count
Expand Down