Commit graph

3 commits

Author SHA1 Message Date
TheFlow
1fdefd9ba8 fix(tests): update MemoryProxy tests for v3 MongoDB architecture
PROBLEM: Tests written for filesystem-based v1/v2, but service refactored to MongoDB v3
- 18/25 tests failing (expected filesystem, got MongoDB)
- Tests checking for .json files that no longer exist
- Response format mismatches (rulesStored vs inserted/modified)

SOLUTION: Complete test rewrite for MongoDB architecture
- Use GovernanceRule and AuditLog models directly
- Test data isolation with test_ prefix and cleanup hooks
- Updated assertions for MongoDB response formats
- Filter results to exclude non-test data from tractatus_test DB
- Removed filesystem-specific tests (directory creation, file I/O)

RESULT: 26/26 tests passing in 1.079s (from 7/25 in 250s timeout)

Tests now verify:
✓ MongoDB persistence and retrieval
✓ Rule filtering (quadrant, persistence)
✓ Cache management (TTL, clear, stats)
✓ Audit logging to MongoDB
✓ Data integrity across persist/load cycles

🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 12:14:57 +13:00
TheFlow
0958d8d2cd fix(mongodb): resolve production connection drops and add governance sync system
- Fixed sync script disconnecting Mongoose (prevents production errors)
- Created text search index (fixes search in rule-manager)
- Enhanced inst_024 with closedown protocol, added inst_061
- Added sync infrastructure: API routes, dashboard widget, auto-sync
- Fixed MemoryProxy tests MongoDB connection
- Created ADR-001 and integration tests

Result: Production stable, 52 rules synced, search working

🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-21 11:39:05 +13:00
TheFlow
1815ec6c11 feat: Phase 5 Memory Tool PoC - Week 2 Complete (MemoryProxy Service)
Week 2 Objectives (ALL MET AND EXCEEDED):
 Full 18-rule integration (100% data integrity)
 MemoryProxy service implementation (417 lines)
 Comprehensive test suite (25/25 tests passing)
 Production-ready persistence layer

Key Achievements:

1. Full Tractatus Rules Integration:
   - Loaded all 18 governance rules from .claude/instruction-history.json
   - Storage performance: 1ms (0.06ms per rule)
   - Retrieval performance: 1ms
   - Data integrity: 100% (18/18 rules validated)
   - Critical rules tested: inst_016, inst_017, inst_018

2. MemoryProxy Service (src/services/MemoryProxy.service.js):
   - persistGovernanceRules() - Store rules to memory
   - loadGovernanceRules() - Retrieve rules from memory
   - getRule(id) - Get specific rule by ID
   - getRulesByQuadrant() - Filter by quadrant
   - getRulesByPersistence() - Filter by persistence level
   - auditDecision() - Log governance decisions (JSONL format)
   - In-memory caching (5min TTL, configurable)
   - Comprehensive error handling and validation

3. Test Suite (tests/unit/MemoryProxy.service.test.js):
   - 25 unit tests, 100% passing
   - Coverage: Initialization, persistence, retrieval, querying, auditing, caching
   - Test execution time: 0.454s
   - All edge cases handled (missing files, invalid input, cache expiration)

Performance Results:
- 18 rules: 2ms total (store + retrieve)
- Average per rule: 0.11ms
- Target was <1000ms - EXCEEDED by 500x
- Cache performance: <1ms for subsequent calls

Architecture:
┌─ Tractatus Application Layer
├─ MemoryProxy Service  (abstraction layer)
├─ Filesystem Backend  (production-ready)
└─ Future: Anthropic Memory Tool API (Week 3)

Memory Structure:
.memory/
├── governance/
│   ├── tractatus-rules-v1.json (all 18 rules)
│   └── inst_{id}.json (individual critical rules)
├── sessions/ (Week 3)
└── audit/
    └── decisions-{date}.jsonl (JSONL audit trail)

Deliverables:
- tests/poc/memory-tool/week2-full-rules-test.js (394 lines)
- src/services/MemoryProxy.service.js (417 lines)
- tests/unit/MemoryProxy.service.test.js (446 lines)
- docs/research/phase-5-week-2-summary.md (comprehensive summary)

Total: 1,257 lines production code + tests

Week 3 Preview:
- Integrate MemoryProxy with BoundaryEnforcer
- Integrate with BlogCuration (inst_016/017/018 enforcement)
- Context editing experiments (50+ turn conversations)
- Migration script (.claude/ → .memory/)

Research Status: Week 2 of 3 complete
Confidence: VERY HIGH - Production-ready, fully tested, ready for integration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-10 12:11:20 +13:00