3 new primitives, registered in workspace members (39 crates total): - kei-diff (9 files, 27 tests): Structural JSON diff RFC 6902 subset (add/remove/replace). Pure computation. Index-based array diff (not LCS) matches drift-detection semantics. Round-trip property verified on 15+ fixtures. Zero sibling deps — pure utility. - kei-scheduler (12 files, 16 tests): Durable task scheduler (cron / at / interval) primitive. Engine-native (SCHEDULER_SCHEMA on kei-entity-store). Name-unique via custom migration. compute_next pure fn + CLI tick for external executor. - kei-watch (12 files, 30 tests): Filesystem watcher thin wrapper around notify 8.x. Sync API (no tokio). 50ms debounce. Cross-platform rename handling (macOS Modify(Name(Both)) vs Linux From/To pair). All crate-local [workspace] tables removed. Registered in _primitives/_rust/Cargo.toml. cargo check --workspace clean. Constructor Pattern: all source files <=200 LOC, all functions <=30 LOC. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
79 lines
2.5 KiB
TOML
79 lines
2.5 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"kei-ledger",
|
|
"kei-migrate",
|
|
"kei-changelog",
|
|
"ssh-check",
|
|
"firewall-diff",
|
|
"mock-render",
|
|
"visual-diff",
|
|
"tokens-sync",
|
|
"kei-memory",
|
|
"kei-conflict-scan",
|
|
"kei-refactor-engine",
|
|
"kei-graph-check",
|
|
"kei-store",
|
|
# v0.14 LBM port — 10 new MCP-core primitives
|
|
"kei-router",
|
|
"kei-sage",
|
|
"kei-task",
|
|
"kei-chat-store",
|
|
"kei-crossdomain",
|
|
"kei-search-core",
|
|
"kei-content-store",
|
|
"kei-social-store",
|
|
"kei-curator",
|
|
"kei-auth",
|
|
# v0.15 artifact handoff pipeline
|
|
"kei-artifact",
|
|
# v0.18 exobrain CLI
|
|
"keisei",
|
|
# v1 substrate — local web wizard for scaffolding atoms (Stream A)
|
|
"kei-forge",
|
|
# v1 substrate — atom invocation runtime + schema linter (Stream D)
|
|
"kei-runtime",
|
|
# v1 substrate — shared atom discovery + frontmatter + safe path (Stream E)
|
|
"kei-atom-discovery",
|
|
# agent substrate v1 — phase 3 runtime (Capability trait + registry + compose/spawn/verify)
|
|
"kei-agent-runtime",
|
|
# agent substrate v1 — phase 3 hook-protocol CLI adapter
|
|
"kei-capability",
|
|
# v0.24 unification — unified VPS provisioner (supersedes provision-{hetzner,vultr}.sh)
|
|
"kei-provision",
|
|
# Convergence Layer A — schema-driven verb-template engine for SQLite-CRUD stores
|
|
"kei-entity-store",
|
|
# v1 substrate — atom DAG pipe runtime (topo-sort + JSON piping between atoms)
|
|
"kei-pipe",
|
|
# v1 substrate — deterministic result cache for pure (query/transform) atoms
|
|
"kei-cache",
|
|
# agent substrate v1 — automation envelope: prepare + ledger fork + verify
|
|
"kei-spawn",
|
|
# agent substrate v1 — reconstruct spawn from DNA (ledger row + task.toml + recompose)
|
|
"kei-replay",
|
|
# v0.29 Wave 13 — structural JSON diff primitive (RFC 6902 subset add/remove/replace)
|
|
"kei-diff",
|
|
# v0.29 Wave 13 — durable task scheduler (cron / at / interval) metadata primitive
|
|
"kei-scheduler",
|
|
# v0.29 Wave 13 — filesystem watcher primitive (thin notify wrapper, sync API)
|
|
"kei-watch",
|
|
]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
|
|
[workspace.dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_yaml = "0.9"
|
|
sha2 = "0.10"
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
regex = "1.10"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
strip = true
|
|
codegen-units = 1
|