Skip to content
Merged
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
3f7b6aa
feat: add SQLite production database migration with conversion script
zainfathoni Oct 27, 2025
9732039
docs: add comprehensive VPS deployment guide for Hetzner Cloud with S…
zainfathoni Nov 9, 2025
07866db
chore: add .env.prod to gitignore for VPS deployment
zainfathoni Nov 9, 2025
2b03233
chore(deps): upgrade playwright to latest and fix fixtures
zainfathoni Dec 14, 2025
3b74bcf
chore: add playwright-report to gitignore
zainfathoni Dec 31, 2025
4eff85c
docs: add CLAUDE.md with project guidance
zainfathoni Dec 31, 2025
f836e5c
chore: initialize beads issue tracking and consolidate documentation
zainfathoni Dec 31, 2025
9e63a9e
chore(beads): commit untracked JSONL files
zainfathoni Dec 31, 2025
f2201aa
chore(beads): enable sync-branch configuration
zainfathoni Dec 31, 2025
0a0fe3f
chore: enable beads plugin in Claude Code settings
zainfathoni Dec 31, 2025
85f49b9
chore: enable pr-review-toolkit and typescript-lsp plugins
zainfathoni Dec 31, 2025
18b69e8
docs: finalize database migration documentation
zainfathoni Dec 31, 2025
786dfa6
chore: add .bv/ to .gitignore for beads viewer local config and caches
zainfathoni Dec 31, 2025
9f23928
chore: update CLAUDE.md with beads workflow and ignore last-touched
zainfathoni Dec 31, 2025
c2cadcb
fix(ci): update actions/cache from v2 to v4
zainfathoni Dec 31, 2025
4daa76d
fix(ci): add prisma generate and fix Playwright install
zainfathoni Dec 31, 2025
aec855f
chore(ci): update Node.js from 16.x to 24.x
zainfathoni Dec 31, 2025
fa3ff66
chore(deps): update Prisma from 3.10.0 to 5.22.0
zainfathoni Dec 31, 2025
ac98a64
fix: resolve type errors and ESLint warnings for Prisma 5.x
zainfathoni Dec 31, 2025
f2a2ac4
chore(deps): update TypeScript from 4.1.2 to 5.9.3
zainfathoni Dec 31, 2025
6cfb242
fix(deps): move @remix-run/dev to dependencies for Vercel
zainfathoni Dec 31, 2025
0b2153b
fix(vercel): disable framework detection for Remix 1.x
zainfathoni Dec 31, 2025
e1fa1d4
revert: remove broken Vercel framework override
zainfathoni Dec 31, 2025
019fa87
docs: add beads issue types and dependency types reference
zainfathoni Dec 31, 2025
fe43b2e
chore(deps): update Remix from v1.2.2 to v2.17.2
zainfathoni Dec 31, 2025
dab512e
docs: add beads prefix duplication issue documentation
zainfathoni Jan 1, 2026
4bf8287
refactor: update imports from 'remix' to '@remix-run/*'
zainfathoni Jan 1, 2026
dc7d654
refactor: migrate testing from Jest to Vitest
zainfathoni Jan 1, 2026
7ccd9a8
refactor: update remix.config.js for Remix v2 and remove server.js
zainfathoni Jan 1, 2026
3a8ca51
refactor: update meta function to v2 array format
zainfathoni Jan 1, 2026
1791df8
refactor: migrate routes to v2 flat routes convention
zainfathoni Jan 1, 2026
72bd495
chore: add bv-pages to gitignore
zainfathoni Jan 1, 2026
ab017c7
fix: resolve TypeScript type errors for Remix v2 compatibility
zainfathoni Jan 1, 2026
ff944ec
docs: clarify commit step in landing the plane workflow
zainfathoni Jan 1, 2026
1ea48c1
fix: replace HeadlessUI Dialog with native sidebar for mobile
zainfathoni Jan 1, 2026
7c27c75
fix: add prisma generate to build script for Vercel
zainfathoni Jan 1, 2026
8e592e5
fix(ci): install Playwright system deps on cache hit
zainfathoni Jan 1, 2026
5f72df0
fix(ci): update deprecated GitHub Actions to current versions
zainfathoni Jan 1, 2026
00fc0fc
docs: add test and commit steps to beads workflow pattern
zainfathoni Jan 1, 2026
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
41 changes: 41 additions & 0 deletions .beads/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# SQLite databases
*.db
*.db?*
*.db-journal
*.db-wal
*.db-shm

# Daemon runtime files
daemon.lock
daemon.log
daemon.pid
bd.sock
sync-state.json

# Local version tracking (prevents upgrade notification spam after git ops)
.local_version

# Legacy database files
db.sqlite
bd.db

# Worktree redirect file (contains relative path to main repo's .beads/)
# Must not be committed as paths would be wrong in other clones
redirect

# Merge artifacts (temporary files from 3-way merge)
beads.base.jsonl
beads.base.meta.json
beads.left.jsonl
beads.left.meta.json
beads.right.jsonl
beads.right.meta.json

# NOTE: Do NOT add negation patterns (e.g., !issues.jsonl) here.
# They would override fork protection in .git/info/exclude, allowing
# contributors to accidentally commit upstream issue databases.
# The JSONL files (issues.jsonl, interactions.jsonl) and config files
# are tracked by git by default since no pattern above ignores them.

# Recently accessed files tracking
last-touched
91 changes: 91 additions & 0 deletions .beads/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
# 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 <issue-id>

# Update issue status
bd update <issue-id> --status in_progress
bd update <issue-id> --status done

# Sync with git remote
bd sync
```

### 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_ ⚡
64 changes: 64 additions & 0 deletions .beads/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# 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.
# IMPORTANT: Set explicitly to prevent prefix duplication during sync
# See docs/issues/beads-prefix-duplication.md for details
issue-prefix: "rb"

# Use no-db mode: load from JSONL, no SQLite, write back after each command
# When true, bd will use .beads/issues.jsonl as the source of truth
# instead of SQLite database
# no-db: false

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

# Disable auto-flush of database to JSONL after mutations
# no-auto-flush: false

# Disable auto-import from JSONL when it's newer than database
# no-auto-import: false

# Enable JSON output by default
# json: false

# Default actor for audit trails (overridden by BD_ACTOR or --actor)
# actor: ""

# Path to database (overridden by BEADS_DB or --db)
# db: ""

# Auto-start daemon if not running (can also use BEADS_AUTO_START_DAEMON)
# auto-start-daemon: true

# Debounce interval for auto-flush (can also use BEADS_FLUSH_DEBOUNCE)
# flush-debounce: "5s"

# Git branch for beads commits (bd sync will commit to this branch)
# IMPORTANT: Set this for team projects so all clones use the same sync branch.
# This setting persists across clones (unlike database config which is gitignored).
# Can also use BEADS_SYNC_BRANCH env var for local override.
# If not set, bd sync will require you to run 'bd config set sync.branch <branch>'.
sync-branch: "beads-sync"

# 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

# 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
Empty file added .beads/interactions.jsonl
Empty file.
Empty file added .beads/issues.jsonl
Empty file.
4 changes: 4 additions & 0 deletions .beads/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"database": "beads.db",
"jsonl_export": "issues.jsonl"
}
7 changes: 7 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"enabledPlugins": {
"beads@beads-marketplace": true,
"pr-review-toolkit@claude-plugins-official": true,
"typescript-lsp@claude-plugins-official": true
}
}
8 changes: 7 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:playwright/playwright-test",
"plugin:import/recommended",
"plugin:import/typescript",
"plugin:yml/standard",
Expand Down Expand Up @@ -62,6 +61,13 @@
"playwright/missing-playwright-await": "off"
}
},
{
"files": ["e2e/**/*.{ts,tsx}", "playwright-global-setup.ts", "playwright.config.ts"],
"extends": ["plugin:playwright/recommended"],
"rules": {
"playwright/no-wait-for-navigation": "off"
}
},
{
"files": ["*.yaml", "*.yml"],
"parser": "yaml-eslint-parser"
Expand Down
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# Use bd merge for beads JSONL files
.beads/issues.jsonl merge=beads
47 changes: 25 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '24.x'

- name: Restore NPM cache
uses: actions/cache@v2
uses: actions/cache@v4
id: cache
with:
path: ~/.npm
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Cache NPM
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -52,10 +52,10 @@ jobs:
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '24.x'

- name: Restore NPM cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -65,6 +65,9 @@ jobs:
- name: Install locked dependencies
run: npm ci

- name: Generate Prisma Client
run: npx prisma generate

- name: Build CSS assets from Tailwind CSS
run: npm run build:css

Expand All @@ -84,10 +87,10 @@ jobs:
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '24.x'

- name: Restore NPM cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -97,6 +100,9 @@ jobs:
- name: Install locked dependencies
run: npm ci

- name: Generate Prisma Client
run: npx prisma generate

- name: Type check
run: npm run type-check
env:
Expand All @@ -114,10 +120,10 @@ jobs:
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '24.x'

- name: Restore NPM cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down Expand Up @@ -149,10 +155,10 @@ jobs:
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '24.x'

- name: Restore NPM cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.npm
key:
Expand All @@ -164,34 +170,31 @@ jobs:
- name: Install locked dependencies
run: npm ci

- name: Install operating system dependencies
run: npx playwright install-deps

- name: Restore cached Playwright dependencies
id: cache-playwright
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key:
${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json')
}}-${{ hashFiles('**/playwright.config.ts') }}
restore-keys: |
${{ runner.os }}-playwright-i
${{ runner.os }}-playwright-

- name: Install Playwright browsers
- name: Install Playwright browsers with dependencies
if: steps.cache-playwright.outputs.cache-hit != 'true'
run: npx playwright install
run: npx playwright install --with-deps

- name: Cache Playwright dependencies
if: steps.cache-playwright.outputs.cache-hit != 'true'
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key:
${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{
hashFiles('**/playwright.config.ts') }}
${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json')
}}-${{ hashFiles('**/playwright.config.ts') }}
restore-keys: |
${{ runner.os }}-playwright-i
${{ runner.os }}-playwright-

- name: Run end-to-end tests
run: npm run test:e2e:run
Expand Down
Loading
Loading