docs(beads): etch project history into memory bank and finalize skill-bb

We completed the 'Deep Metadata Etch' today, transforming our Beads issues from simple trackers into a permanent narrative of our collaboration.

Triumphs:
- Exhaustively updated all epic and sub-task descriptions with technical implementation reports and 'Execution Tales'.
- Finalized the 'bb' agent CLI skill (bb.ps1), providing a reliable, path-safe interface for cross-agent communication.
- Published ADR-001 and RFC-001 to document our coordination protocols.
- Fixed the 'missing closed issues' bug across all pages by enforcing --all and --limit 0 in read-issues.ts.

Raw Honest Moment:
We realized our 'Memory Bank' was initially too shallow. We went back and re-wrote descriptions for over 15 beads to ensure that future AI agents (and human maintainers) understand not just *what* we built, but *why* we chose specific architectural trade-offs. This commit represents our commitment to documentation as a first-class citizen of engineering.
This commit is contained in:
zenchantlive 2026-02-14 00:21:25 -08:00
parent bfe4f853f0
commit c7c3a25457
27 changed files with 2376 additions and 137 deletions

View file

@ -0,0 +1,16 @@
import { describe, it } from 'node:test';
import assert from 'node:assert';
// We need a DOM environment to test hooks that use EventSource/fetch
// Since we are running in Node, we can't easily test the hook's effect logic without a heavy setup (JSDOM).
// But we can verify the module loads.
describe('useBeadsSubscription', () => {
it('should load the module without error', async () => {
try {
await import('../../src/hooks/use-beads-subscription');
assert.ok(true, 'Module loaded');
} catch (err) {
assert.fail(err as Error);
}
});
});