Commit 55b6ae33 authored by Jan Reimes's avatar Jan Reimes
Browse files

chore(gitignore, config, metadata): update configurations and ignore patterns

* Set no-daemon to true in config.yaml for direct database access
* Update last_bd_version to 0.49.4 in metadata.json
* Add beads-up task to config.toml for installing beads to virtual environment
parent f6a2a6bf
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -36,6 +36,10 @@ beads.right.meta.json
# These files are machine-specific and should not be shared across clones
.sync.lock
sync_base.jsonl
export-state/

# Process semaphore slot files (runtime concurrency limiting)
sem/

# NOTE: Do NOT add negation patterns (e.g., !issues.jsonl) here.
# They would override fork protection in .git/info/exclude, allowing
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ issue-prefix: "tdc"
# no-db: false

# Disable daemon for RPC communication (forces direct database access)
# no-daemon: false
no-daemon: true

# Disable auto-flush of database to JSONL after mutations
# no-auto-flush: false
+1 −1
Original line number Diff line number Diff line
{
  "database": "beads.db",
  "jsonl_export": "issues.jsonl",
  "last_bd_version": "0.49.1"
  "last_bd_version": "0.49.4"
}
 No newline at end of file
+5 −1
Original line number Diff line number Diff line
@@ -36,3 +36,7 @@ run = ["cls", "uv run specify init --here --ai {{usage.ai_agent}} --script {{usa
run = ["cls",
    "uvx --from https://github.com/jr2804/mcp-config-converter.git mcp-config-converter convert .vscode/mcp.json --provider{% if args %} {{ args }}{% endif %}"
]

[tasks.beads-up]
description = "Installs beads (bd.exe) to virtual environment's scripts directory"
run = ["bin install https://github.com/steveyegge/beads {{env.VIRTUAL_ENV}}/scripts/"]
 No newline at end of file