Skip to content
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
782f1d9
refactor(memory): complete tinycortex engine migration
senamakel Jul 12, 2026
b388046
build(memory): unify vendored tinyagents source
senamakel Jul 12, 2026
db76303
fix(embeddings): preserve provider contracts
senamakel Jul 12, 2026
a8acb19
fix(memory): preserve sync credentials and state
senamakel Jul 12, 2026
cf0baab
fix(memory): preserve source integration parity
senamakel Jul 12, 2026
67b1b84
fix(memory): keep recency reads provider-free
senamakel Jul 12, 2026
ad37001
chore(vendor): update tinycortex conflict resolution
senamakel Jul 12, 2026
2fc300d
Merge upstream/main into feat/tinycortex-crate-ports
senamakel Jul 12, 2026
e03b9f3
chore(vendor): update tinycortex review fixes
senamakel Jul 12, 2026
0dd7e33
fix(memory): preserve sync audit and lazy drill-down
senamakel Jul 12, 2026
7b7786e
chore(vendor): update tinycortex clippy fixes
senamakel Jul 12, 2026
de75d93
docs(memory): update tinycortex ownership links
senamakel Jul 12, 2026
9d6fadb
docs(memory): use submodule-safe ownership paths
senamakel Jul 12, 2026
4a42fa7
chore(vendor): track merged tinycortex main
senamakel Jul 12, 2026
92645ab
fix(memory): align tinycortex persistence adapters
senamakel Jul 12, 2026
ed988cd
fix(memory): align backfill and namespace semantics
senamakel Jul 12, 2026
dde408f
fix(memory): preserve kv namespace safety checks
senamakel Jul 12, 2026
4abe952
fix(embeddings): preserve adapter rpc contracts
senamakel Jul 12, 2026
e797300
test(memory): await deferred tree sealing
senamakel Jul 12, 2026
88c4bc8
test(memory): await deferred chunk embeddings
senamakel Jul 12, 2026
751500c
test(embeddings): align adapter raw coverage
senamakel Jul 12, 2026
1511318
test(memory): align persisted score coverage
senamakel Jul 12, 2026
f9439b9
fix(sync): forward provider request budgets
senamakel Jul 13, 2026
a64e623
test(sync): assert tinycortex notion outcome
senamakel Jul 13, 2026
e06a1d8
test(sync): match tinycortex notion page size
senamakel Jul 13, 2026
d944413
test(sync): assert tinycortex slack persistence
senamakel Jul 13, 2026
11500fb
test(sync): align tree fixtures with tinycortex
senamakel Jul 13, 2026
d427a27
test(memory): align tinycortex score and state contracts
senamakel Jul 13, 2026
caf05b6
test(memory): cover tinycortex recovery contracts
senamakel Jul 13, 2026
823142b
Merge remote-tracking branch 'upstream/main' into feat/tinycortex-cra…
senamakel Jul 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ tinyagents = { version = "1.7", features = ["sqlite", "repl"] }
# security gating, and the global singleton stay host-side. rusqlite/git2 are
# aligned to the host pins (=0.40 / 0.21) so one bundled SQLite + one libgit2
# link. Keep the version pin in lockstep with the submodule tag.
tinycortex = "0.1"
tinycortex = { version = "0.1", features = ["git-diff", "sync"] }
tinychannels = { version = "0.1", features = ["relay-websocket"] }
# TokenJuice code compressor — AST-aware signature extraction. Optional (C build)
# behind the default `tokenjuice-treesitter` feature; disabling it falls back to
Expand Down Expand Up @@ -377,6 +377,12 @@ tinyjuice = { path = "vendor/tinyjuice" }
tinychannels = { path = "vendor/tinychannels" }
tinyplace = { path = "vendor/tinyplace/sdk/rust" }

# TinyCortex temporarily pins the embedding API port while tinyagents #58 is
# pending. Resolve that git source to the same vendored crate so host adapters
# and TinyCortex share one `EmbeddingModel` trait identity.
[patch."https://github.com/senamakel/tinyagents"]
tinyagents = { path = "vendor/tinyagents" }

# Emit just enough DWARF in release builds for Sentry to symbolicate Rust
# panics + render surrounding source lines. `line-tables-only` keeps the
# binary small (only file+line tables, no full type info) while still
Expand Down
13 changes: 11 additions & 2 deletions app/src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ tinyagents = { path = "../../vendor/tinyagents" }
# TinyAgents so integration work can test crate changes against OpenHuman before
# publishing.
tinyflows = { path = "../../vendor/tinyflows" }
tinycortex = { path = "../../vendor/tinycortex" }
tinycortex = { path = "../../vendor/tinycortex", features = ["git-diff"] }
tinyjuice = { path = "../../vendor/tinyjuice" }
tinychannels = { path = "../../vendor/tinychannels" }
tinyplace = { path = "../../vendor/tinyplace/sdk/rust" }
Expand Down Expand Up @@ -248,6 +248,11 @@ tauri-plugin-global-shortcut = { git = "https://github.com/tauri-apps/plugins-wo
tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", rev = "c6561ab6b4f9e7f650d4fc8c53fd8acc9b65b9b2" }
tauri-plugin-notification = { path = "vendor/tauri-plugin-notification" }

# Match the root Cargo world: TinyCortex's temporary git pin must resolve to
# the vendored TinyAgents crate to preserve one embedding trait identity.
[patch."https://github.com/senamakel/tinyagents"]
tinyagents = { path = "../../vendor/tinyagents" }

[dev-dependencies]
# `test-util` enables `#[tokio::test(start_paused = true)]` for the
# idle-watchdog unit tests in `cdp/session.rs` (#1213).
Expand Down
Loading
Loading