Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ memmap2 = "*"
bytemuck = "*"
fastembed = { version = "*", default-features = false, features = ["ort-download-binaries-rustls-tls"] }
frankensearch = { version = "*", git = "https://github.com/Dicklesworthstone/frankensearch", rev = "831b3b13", default-features = false, features = ["hash", "lexical", "ann", "fastembed-reranker"] }
franken-agent-detection = { version = "*", git = "https://github.com/Dicklesworthstone/franken_agent_detection", rev = "7e288f493631020a4660443c5ad8fc7d4e49faa7", features = ["connectors", "cursor", "chatgpt", "opencode", "crush"] }
franken-agent-detection = { version = "*", git = "https://github.com/Dicklesworthstone/franken_agent_detection", rev = "7e288f493631020a4660443c5ad8fc7d4e49faa7", features = ["connectors", "cursor", "chatgpt", "opencode", "crush", "hermes"] }
wide = "*" # Portable SIMD for P0 Opt 2: SIMD dot product
arrayvec = "*" # Stack-based arrays for P1 Opt 1.4: Edge N-gram optimization
bloomfilter = "*" # Probabilistic membership testing for P2 Opt 3.3: Workspace Cache
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const CONTRACTS: &[DependencyContract] = &[
expected_git: "https://github.com/Dicklesworthstone/franken_agent_detection",
expected_rev: "7e288f493631020a4660443c5ad8fc7d4e49faa7",
expected_version: "0.1.3",
expected_features: &["chatgpt", "connectors", "crush", "cursor", "opencode"],
expected_features: &["chatgpt", "connectors", "crush", "cursor", "hermes", "opencode"],
expected_default_features: None,
repo_rel: "../franken_agent_detection",
manifest_rel: "Cargo.toml",
Expand Down
5 changes: 5 additions & 0 deletions src/connectors/hermes.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
//! Connector for Hermes Agent session storage.
//!
//! Implementation lives in `franken_agent_detection::connectors::hermes`.

pub use franken_agent_detection::HermesConnector;
1 change: 1 addition & 0 deletions src/connectors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ pub mod crush;
pub mod cursor;
pub mod factory;
pub mod gemini;
pub mod hermes;
pub mod kimi;
pub mod openclaw;
pub mod opencode;
Expand Down