Migrate to issues.jsonl

Amp-Thread-ID: https://ampcode.com/threads/T-fc47ce9d-88a4-4bcd-b9cb-79327d98dee7
Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Steve Yegge
2025-11-20 19:08:39 -05:00
parent 631c9236e7
commit 5c177a4f27
2 changed files with 1 additions and 541 deletions

File diff suppressed because one or more lines are too long

View File

@@ -411,7 +411,7 @@
{"id":"bd-fd8753d9","content_hash":"faea57d583689933e7a173d18595095125b5fd79689cbb3c41039608ba4b335b","title":"Document bd edit command and verify MCP exclusion","description":"Follow-up from PR #152:\n1. Add \"bd edit\" to AGENTS.md with \"Humans only\" note\n2. Verify MCP server doesn't expose bd edit command\n3. Consider adding test for command registration","status":"closed","priority":2,"issue_type":"task","created_at":"2025-10-26T13:23:47.982295-07:00","updated_at":"2025-11-06T20:06:49.219828-08:00","closed_at":"2025-11-06T19:41:08.675575-08:00","source_repo":"."}
{"id":"bd-febc","content_hash":"686e0d5e3d56abe0edbd203d3d138ee3b013f55b6aed1eac05a56e6e3a5cc261","title":"npm package for bd with native binaries","description":"Create an npm package that wraps native bd binaries for easy installation in Claude Code for Web and other Node.js environments.\n\n## Problem\nClaude Code for Web sandboxes are full Linux VMs with npm support, but cannot easily download binaries from GitHub releases due to network restrictions or tooling limitations.\n\n## Solution\nPublish bd as an npm package that:\n- Downloads platform-specific native binaries during postinstall\n- Provides a CLI wrapper that invokes the native binary\n- Works seamlessly in Claude Code for Web SessionStart hooks\n- Maintains full feature parity (uses native SQLite)\n\n## Benefits vs WASM\n- ✅ Full SQLite support (no custom VFS needed)\n- ✅ All features work identically to native bd\n- ✅ Better performance (native vs WASM overhead)\n- ✅ ~4 hours effort vs ~2 days for WASM\n- ✅ Minimal maintenance burden\n\n## Success Criteria\n- npm install @beads/bd works in Claude Code for Web\n- All bd commands function identically to native binary\n- SessionStart hook documented for auto-installation\n- Package published to npm registry","status":"closed","priority":1,"issue_type":"epic","created_at":"2025-11-02T23:39:37.684109-08:00","updated_at":"2025-11-03T10:39:44.932565-08:00","closed_at":"2025-11-03T10:39:44.932565-08:00","source_repo":"."}
{"id":"bd-fkdw","content_hash":"1249e8ace0618a4ada791f12d46021e0962058245a0ea86d6c1777fc320a8070","title":"Update bash-agent example with Agent Mail integration","description":"Add Agent Mail integration to examples/bash-agent/agent.sh using curl for HTTP calls.\n\nAcceptance Criteria:\n- Health check function using curl\n- Reserve issue before claiming\n- Send notifications on status change\n- Release on completion\n- Graceful degradation if curl fails\n- No bash errors when Agent Mail unavailable\n\nFile: examples/bash-agent/agent.sh","status":"closed","priority":2,"issue_type":"feature","created_at":"2025-11-07T22:42:28.722048-08:00","updated_at":"2025-11-08T01:09:25.900138-08:00","closed_at":"2025-11-08T01:09:25.900138-08:00","source_repo":".","dependencies":[{"issue_id":"bd-fkdw","depends_on_id":"bd-m9th","type":"blocks","created_at":"2025-11-07T23:04:01.398259-08:00","created_by":"daemon"}]}
{"id":"bd-fme8","content_hash":"dbabbcb6c427428541722427e9a591f4fe862696b7145b5e451a757fedc72681","title":"Fix CI failures (Coverage, Windows, Nix)","description":"CI is failing, apparently on files not touched in the PRs - #327 , #305 .\n\nDiagnosis summary:\n1. Coverage gate in .github/workflows/ci.yml fails if total statements \u003c50%; current PR run shows 46.9%.\n2. The new hook plumbing in TestInstallHooks() asserts POSIX executable bits, which fails on Windows.\n3. SQLite resurrection tests keep connections open, preventing TempDir cleanup on Windows.\n4. The nix run step launches bd without creating .beads, causing failure.\n","status":"in_progress","priority":0,"issue_type":"bug","created_at":"2025-11-20T18:55:34.257906-05:00","updated_at":"2025-11-20T18:57:15.948373-05:00","source_repo":"."}
{"id":"bd-fme8","content_hash":"dbabbcb6c427428541722427e9a591f4fe862696b7145b5e451a757fedc72681","title":"Fix CI failures (Coverage, Windows, Nix)","description":"CI is failing, apparently on files not touched in the PRs - #327 , #305 .\n\nDiagnosis summary:\n1. Coverage gate in .github/workflows/ci.yml fails if total statements \u003c50%; current PR run shows 46.9%.\n2. The new hook plumbing in TestInstallHooks() asserts POSIX executable bits, which fails on Windows.\n3. SQLite resurrection tests keep connections open, preventing TempDir cleanup on Windows.\n4. The nix run step launches bd without creating .beads, causing failure.\n","status":"closed","priority":0,"issue_type":"bug","created_at":"2025-11-20T18:55:34.257906-05:00","updated_at":"2025-11-20T19:04:42.221262-05:00","closed_at":"2025-11-20T19:04:42.221262-05:00","source_repo":"."}
{"id":"bd-fsb1","content_hash":"a519fdd6d0ca6f70a177c2cb9441994b28d4bc2fe51a663532d4067caf126049","title":"Test issue","description":"","status":"closed","priority":1,"issue_type":"task","created_at":"2025-11-05T11:21:51.383077-08:00","updated_at":"2025-11-05T11:21:56.888913-08:00","closed_at":"2025-11-05T11:21:56.888913-08:00","source_repo":".","labels":["test","urgent"]}
{"id":"bd-fzbg","content_hash":"88e15598aa82ec06036be38a9e8f6503c131349ba39d8373e11107dc46a8002d","title":"Update python-agent example with Agent Mail integration","description":"Modify examples/python-agent/agent.py to use Agent Mail adapter at 4 integration points.\n\nAcceptance Criteria:\n- Import and initialize adapter\n- Check inbox before find_ready_work()\n- Reserve issue before claim_task()\n- Notify on status changes\n- Release reservation on complete_task()\n- Works identically when Agent Mail disabled\n- No changes required to core Beads CLI\n\nFile: examples/python-agent/agent.py","status":"closed","priority":1,"issue_type":"feature","created_at":"2025-11-07T22:42:28.661337-08:00","updated_at":"2025-11-08T00:20:35.213902-08:00","closed_at":"2025-11-08T00:20:35.213902-08:00","source_repo":".","dependencies":[{"issue_id":"bd-fzbg","depends_on_id":"bd-m9th","type":"blocks","created_at":"2025-11-07T23:04:01.315332-08:00","created_by":"daemon"}]}
{"id":"bd-g3ey","content_hash":"e59ecb28d0ceade96c076688de71f5d0022a9b0c0676f3abb1e4e06d90f8f559","title":"bd sync --import-only doesn't update DB mtime causing bd doctor false warning","description":"","status":"closed","priority":1,"issue_type":"bug","created_at":"2025-11-08T15:18:16.761052+01:00","updated_at":"2025-11-08T15:58:37.147425-08:00","closed_at":"2025-11-08T13:12:01.718252-08:00","source_repo":"."}