文件最后提交记录最后更新时间
test(fixtures): add mock IndexRecords and AGFS node directories for retrieval tests - Add index_records.json with mock IndexRecords for all categories - Add agfs_nodes/ with mock localfs node directories - Each node includes .abstract.md, .overview.md, content.md, .meta.json, .relations.json - All IndexRecords include mandatory filters (account_id + owner_space) - Separate account-001 and account-002 for cross-tenant isolation testing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> 2 个月前
chore: bootstrap ContextEngine agent team scaffold v2 团队协调文件: - CLAUDE.md: 完整 v3.1 设计(URI规范/写入策略/检索规则/接触点/commit规范/待决事项) - team/tasks.md: Phase 0/1/2/3 全量任务(含 providers + service + 里程碑 commit 任务) - team/roles/: 五个 Teammate 详细角色说明 - team/LEADER_PROMPT.md: Leader 分阶段 spawn/解散 Teammate 的完整操作说明 项目骨架: - core/ extraction/ commit/ index/ retrieval/ providers/ service/ tests/ 目录结构 - agfs/: OpenViking AGFS(git@github.com:c4pt0r/agfs.git) - pyproject.toml + .gitignore + 各包 __init__.py 2 个月前
fix(core): unify owner_space format and add OutboxStore Protocol P0 fixes for production readiness: 1. Add user_space_name() and agent_space_name() helper functions to core/models.py - Format: "user:{id}" and "agent:{id}" (colon-separated) - Replaces inconsistent "user_space_{id}" format 2. Update commit/archive_builder.py to use helper functions 3. Add OutboxStore Protocol to core/interfaces.py - Defines interface for async index synchronization - Methods: register_write, register_delete, list_pending, mark_done, move_to_dlq, increment_retry 4. Update all test fixtures and data to use consistent "user:"/"agent:" format 5. Implement integration tests (tests/integration/test_full_pipeline.py) - Test full pipeline from commit_session to vector indexing - Test multi-tenant isolation - Test owner_space format consistency 6. Add mock_llm fixture to tests/conftest.py 7. Register integration marker in pyproject.toml All 326 unit + contract tests pass. 5 integration tests pass. Fixes RED-1 (owner_space format split) and RED-2 (OutboxStore Protocol missing). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> 2 个月前
test(extraction): add 1000-turn conversation fixture and commit tests - Added long_conversation_1000.json with realistic devops conversation - Added test_archive_builder.py and test_policy_router.py - Updated test_openai_embedder.py Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> 2 个月前
README.md

Test Fixtures

index_records.json

各类别的 mock IndexRecord,含正确的 filters(account_id + owner_space)。 由 retrieval-dev 在 P1-R1 创建,供 retrieval + contract tests 使用。

agfs_nodes/

mock localfs 节点目录结构,每个节点含 .abstract.md / .overview.md / content.md / .meta.json / .relations.json。 由 retrieval-dev 在 P1-R2 创建。