From cd1f90e54668e1ae09ff43f9f9d517617d03d32f Mon Sep 17 00:00:00 2001 From: viljarb Date: Wed, 4 Mar 2026 21:42:14 +0100 Subject: [PATCH] removing unneeded files --- .beads/.gitignore | 49 ------------------- .beads/README.md | 81 -------------------------------- .beads/backup/backup_state.json | 13 ----- .beads/backup/comments.jsonl | 0 .beads/backup/config.jsonl | 11 ----- .beads/backup/dependencies.jsonl | 0 .beads/backup/events.jsonl | 0 .beads/backup/issues.jsonl | 0 .beads/backup/labels.jsonl | 0 .beads/config.yaml | 55 ---------------------- .beads/dolt-monitor.pid | 1 - .beads/dolt-server.activity | 1 - .beads/dolt-server.port | 1 - .beads/hooks/post-checkout | 9 ---- .beads/hooks/post-merge | 9 ---- .beads/hooks/pre-commit | 9 ---- .beads/hooks/pre-push | 9 ---- .beads/hooks/prepare-commit-msg | 9 ---- .beads/interactions.jsonl | 0 .beads/metadata.json | 6 --- 20 files changed, 263 deletions(-) delete mode 100644 .beads/.gitignore delete mode 100644 .beads/README.md delete mode 100644 .beads/backup/backup_state.json delete mode 100644 .beads/backup/comments.jsonl delete mode 100644 .beads/backup/config.jsonl delete mode 100644 .beads/backup/dependencies.jsonl delete mode 100644 .beads/backup/events.jsonl delete mode 100644 .beads/backup/issues.jsonl delete mode 100644 .beads/backup/labels.jsonl delete mode 100644 .beads/config.yaml delete mode 100644 .beads/dolt-monitor.pid delete mode 100644 .beads/dolt-server.activity delete mode 100644 .beads/dolt-server.port delete mode 100755 .beads/hooks/post-checkout delete mode 100755 .beads/hooks/post-merge delete mode 100755 .beads/hooks/pre-commit delete mode 100755 .beads/hooks/pre-push delete mode 100755 .beads/hooks/prepare-commit-msg delete mode 100644 .beads/interactions.jsonl delete mode 100644 .beads/metadata.json diff --git a/.beads/.gitignore b/.beads/.gitignore deleted file mode 100644 index e6fb002..0000000 --- a/.beads/.gitignore +++ /dev/null @@ -1,49 +0,0 @@ -# Dolt database (managed by Dolt, not git) -dolt/ -dolt-access.lock - -# Runtime files -bd.sock -bd.sock.startlock -sync-state.json -last-touched - -# Local version tracking (prevents upgrade notification spam after git ops) -.local_version - -# Worktree redirect file (contains relative path to main repo's .beads/) -# Must not be committed as paths would be wrong in other clones -redirect - -# Sync state (local-only, per-machine) -# These files are machine-specific and should not be shared across clones -.sync.lock -export-state/ - -# Ephemeral store (SQLite - wisps/molecules, intentionally not versioned) -ephemeral.sqlite3 -ephemeral.sqlite3-journal -ephemeral.sqlite3-wal -ephemeral.sqlite3-shm - -# Dolt server management (auto-started by bd) -dolt-server.pid -dolt-server.log -dolt-server.lock - -# Legacy files (from pre-Dolt versions) -*.db -*.db?* -*.db-journal -*.db-wal -*.db-shm -db.sqlite -bd.db -daemon.lock -daemon.log -daemon-*.log.gz -daemon.pid -# NOTE: Do NOT add negation patterns here. -# They would override fork protection in .git/info/exclude. -# Config files (metadata.json, config.yaml) are tracked by git by default -# since no pattern above ignores them. diff --git a/.beads/README.md b/.beads/README.md deleted file mode 100644 index 0efd932..0000000 --- a/.beads/README.md +++ /dev/null @@ -1,81 +0,0 @@ -# Beads - AI-Native Issue Tracking - -Welcome to Beads! This repository uses **Beads** for issue tracking - a modern, AI-native tool designed to live directly in your codebase alongside your code. - -## What is Beads? - -Beads is issue tracking that lives in your repo, making it perfect for AI coding agents and developers who want their issues close to their code. No web UI required - everything works through the CLI and integrates seamlessly with git. - -**Learn more:** [github.com/steveyegge/beads](https://github.com/steveyegge/beads) - -## Quick Start - -### Essential Commands - -```bash -# Create new issues -bd create "Add user authentication" - -# View all issues -bd list - -# View issue details -bd show - -# Update issue status -bd update --claim -bd update --status done - -# Sync with Dolt remote -bd dolt push -``` - -### Working with Issues - -Issues in Beads are: -- **Git-native**: Stored in `.beads/issues.jsonl` and synced like code -- **AI-friendly**: CLI-first design works perfectly with AI coding agents -- **Branch-aware**: Issues can follow your branch workflow -- **Always in sync**: Auto-syncs with your commits - -## Why Beads? - -✨ **AI-Native Design** -- Built specifically for AI-assisted development workflows -- CLI-first interface works seamlessly with AI coding agents -- No context switching to web UIs - -🚀 **Developer Focused** -- Issues live in your repo, right next to your code -- Works offline, syncs when you push -- Fast, lightweight, and stays out of your way - -🔧 **Git Integration** -- Automatic sync with git commits -- Branch-aware issue tracking -- Intelligent JSONL merge resolution - -## Get Started with Beads - -Try Beads in your own projects: - -```bash -# Install Beads -curl -sSL https://raw.githubusercontent.com/steveyegge/beads/main/scripts/install.sh | bash - -# Initialize in your repo -bd init - -# Create your first issue -bd create "Try out Beads" -``` - -## Learn More - -- **Documentation**: [github.com/steveyegge/beads/docs](https://github.com/steveyegge/beads/tree/main/docs) -- **Quick Start Guide**: Run `bd quickstart` -- **Examples**: [github.com/steveyegge/beads/examples](https://github.com/steveyegge/beads/tree/main/examples) - ---- - -*Beads: Issue tracking that moves at the speed of thought* ⚡ diff --git a/.beads/backup/backup_state.json b/.beads/backup/backup_state.json deleted file mode 100644 index 3f4fac9..0000000 --- a/.beads/backup/backup_state.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "last_dolt_commit": "c9g8pdrmc772ehno0j9cl6jctkae10pg", - "last_event_id": 0, - "timestamp": "2026-03-04T15:37:01.95163713Z", - "counts": { - "issues": 0, - "events": 0, - "comments": 0, - "dependencies": 0, - "labels": 0, - "config": 11 - } -} \ No newline at end of file diff --git a/.beads/backup/comments.jsonl b/.beads/backup/comments.jsonl deleted file mode 100644 index e69de29..0000000 diff --git a/.beads/backup/config.jsonl b/.beads/backup/config.jsonl deleted file mode 100644 index 4608759..0000000 --- a/.beads/backup/config.jsonl +++ /dev/null @@ -1,11 +0,0 @@ -{"key":"auto_compact_enabled","value":"false"} -{"key":"compact_batch_size","value":"50"} -{"key":"compact_parallel_workers","value":"5"} -{"key":"compact_tier1_days","value":"30"} -{"key":"compact_tier1_dep_levels","value":"2"} -{"key":"compact_tier2_commits","value":"100"} -{"key":"compact_tier2_days","value":"90"} -{"key":"compact_tier2_dep_levels","value":"5"} -{"key":"compaction_enabled","value":"false"} -{"key":"issue_prefix","value":"LazyPM-LPM-79-refactored"} -{"key":"schema_version","value":"6"} diff --git a/.beads/backup/dependencies.jsonl b/.beads/backup/dependencies.jsonl deleted file mode 100644 index e69de29..0000000 diff --git a/.beads/backup/events.jsonl b/.beads/backup/events.jsonl deleted file mode 100644 index e69de29..0000000 diff --git a/.beads/backup/issues.jsonl b/.beads/backup/issues.jsonl deleted file mode 100644 index e69de29..0000000 diff --git a/.beads/backup/labels.jsonl b/.beads/backup/labels.jsonl deleted file mode 100644 index e69de29..0000000 diff --git a/.beads/config.yaml b/.beads/config.yaml deleted file mode 100644 index fe6eeae..0000000 --- a/.beads/config.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# Beads Configuration File -# This file configures default behavior for all bd commands in this repository -# All settings can also be set via environment variables (BD_* prefix) -# or overridden with command-line flags - -# Issue prefix for this repository (used by bd init) -# If not set, bd init will auto-detect from directory name -# Example: issue-prefix: "myproject" creates issues like "myproject-1", "myproject-2", etc. -# issue-prefix: "" - -# Use no-db mode: load from JSONL, write back after each command -# When true, bd will use .beads/issues.jsonl as the source of truth -# instead of the Dolt database -# no-db: false - -# Enable JSON output by default -# json: false - -# Feedback title formatting for mutating commands (create/update/close/dep/edit) -# 0 = hide titles, N > 0 = truncate to N characters -# output: -# title-length: 255 - -# Default actor for audit trails (overridden by BD_ACTOR or --actor) -# actor: "" - -# Export events (audit trail) to .beads/events.jsonl on each flush/sync -# When enabled, new events are appended incrementally using a high-water mark. -# Use 'bd export --events' to trigger manually regardless of this setting. -# events-export: false - -# Multi-repo configuration (experimental - bd-307) -# Allows hydrating from multiple repositories and routing writes to the correct JSONL -# repos: -# primary: "." # Primary repo (where this database lives) -# additional: # Additional repos to hydrate from (read-only) -# - ~/beads-planning # Personal planning repo -# - ~/work-planning # Work planning repo - -# JSONL backup (periodic export for off-machine recovery) -# Auto-enabled when a git remote exists. Override explicitly: -# backup: -# enabled: false # Disable auto-backup entirely -# interval: 15m # Minimum time between auto-exports -# git-push: false # Disable git push (export locally only) -# git-repo: "" # Separate git repo for backups (default: project repo) - -# Integration settings (access with 'bd config get/set') -# These are stored in the database, not in this file: -# - jira.url -# - jira.project -# - linear.url -# - linear.api-key -# - github.org -# - github.repo diff --git a/.beads/dolt-monitor.pid b/.beads/dolt-monitor.pid deleted file mode 100644 index 7115c6b..0000000 --- a/.beads/dolt-monitor.pid +++ /dev/null @@ -1 +0,0 @@ -140984 \ No newline at end of file diff --git a/.beads/dolt-server.activity b/.beads/dolt-server.activity deleted file mode 100644 index 0b61709..0000000 --- a/.beads/dolt-server.activity +++ /dev/null @@ -1 +0,0 @@ -1772655415 \ No newline at end of file diff --git a/.beads/dolt-server.port b/.beads/dolt-server.port deleted file mode 100644 index d83f380..0000000 --- a/.beads/dolt-server.port +++ /dev/null @@ -1 +0,0 @@ -13901 \ No newline at end of file diff --git a/.beads/hooks/post-checkout b/.beads/hooks/post-checkout deleted file mode 100755 index 206fe24..0000000 --- a/.beads/hooks/post-checkout +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env sh -# --- BEGIN BEADS INTEGRATION v0.57.0 --- -# This section is managed by beads. Do not remove these markers. -if command -v bd >/dev/null 2>&1; then - export BD_GIT_HOOK=1 - bd hooks run post-checkout "$@" - _bd_exit=$?; if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi -fi -# --- END BEADS INTEGRATION --- diff --git a/.beads/hooks/post-merge b/.beads/hooks/post-merge deleted file mode 100755 index 73fc60c..0000000 --- a/.beads/hooks/post-merge +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env sh -# --- BEGIN BEADS INTEGRATION v0.57.0 --- -# This section is managed by beads. Do not remove these markers. -if command -v bd >/dev/null 2>&1; then - export BD_GIT_HOOK=1 - bd hooks run post-merge "$@" - _bd_exit=$?; if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi -fi -# --- END BEADS INTEGRATION --- diff --git a/.beads/hooks/pre-commit b/.beads/hooks/pre-commit deleted file mode 100755 index 90dc813..0000000 --- a/.beads/hooks/pre-commit +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env sh -# --- BEGIN BEADS INTEGRATION v0.57.0 --- -# This section is managed by beads. Do not remove these markers. -if command -v bd >/dev/null 2>&1; then - export BD_GIT_HOOK=1 - bd hooks run pre-commit "$@" - _bd_exit=$?; if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi -fi -# --- END BEADS INTEGRATION --- diff --git a/.beads/hooks/pre-push b/.beads/hooks/pre-push deleted file mode 100755 index 7c3dd9b..0000000 --- a/.beads/hooks/pre-push +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env sh -# --- BEGIN BEADS INTEGRATION v0.57.0 --- -# This section is managed by beads. Do not remove these markers. -if command -v bd >/dev/null 2>&1; then - export BD_GIT_HOOK=1 - bd hooks run pre-push "$@" - _bd_exit=$?; if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi -fi -# --- END BEADS INTEGRATION --- diff --git a/.beads/hooks/prepare-commit-msg b/.beads/hooks/prepare-commit-msg deleted file mode 100755 index a9023a4..0000000 --- a/.beads/hooks/prepare-commit-msg +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env sh -# --- BEGIN BEADS INTEGRATION v0.57.0 --- -# This section is managed by beads. Do not remove these markers. -if command -v bd >/dev/null 2>&1; then - export BD_GIT_HOOK=1 - bd hooks run prepare-commit-msg "$@" - _bd_exit=$?; if [ $_bd_exit -ne 0 ]; then exit $_bd_exit; fi -fi -# --- END BEADS INTEGRATION --- diff --git a/.beads/interactions.jsonl b/.beads/interactions.jsonl deleted file mode 100644 index e69de29..0000000 diff --git a/.beads/metadata.json b/.beads/metadata.json deleted file mode 100644 index f494974..0000000 --- a/.beads/metadata.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "database": "dolt", - "backend": "dolt", - "dolt_mode": "server", - "dolt_database": "LazyPM_LPM_79_refactored" -} \ No newline at end of file