blue/crates/blue-core/Cargo.toml
Eric Garcia 1ed6f15fa9 feat: implement document sync and Claude Code task integration (RFC 0018, 0019)
RFC 0018 - Document Import/Sync:
- Add content_hash and indexed_at fields to Document
- Implement find_document_with_fallback for filesystem recovery
- Add reconcile() for database/filesystem sync
- Create blue_sync MCP tool
- Update blue_status to show index drift

RFC 0019 - Claude Code Task Integration:
- Expose .plan.md as MCP resource (blue://docs/rfcs/{n}/plan)
- Enhance blue_rfc_get with claude_code_tasks array
- Add 💙 prefix for Blue-synced tasks
- Add knowledge/task-sync.md for session injection
- Automatic sync via injected instructions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 20:58:46 -05:00

33 lines
723 B
TOML

[package]
name = "blue-core"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Core data structures and logic for Blue"
[features]
test-helpers = []
[dependencies]
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
thiserror.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
rusqlite.workspace = true
chrono.workspace = true
git2.workspace = true
axum.workspace = true
tower-http.workspace = true
reqwest.workspace = true
dirs.workspace = true
semver.workspace = true
regex.workspace = true
sha2.workspace = true
[dev-dependencies]
tower.workspace = true
http-body-util.workspace = true
tempfile.workspace = true