refactor(deps): dependency hygiene for workspace#901
Merged
Conversation
- Move TrustLevel to zeph-tools, break zeph-tools -> zeph-skills reverse dep (#841) - Remove dead ChannelError duplicate from zeph-channels (#842) - Introduce SubAgentState in zeph-core, remove zeph-a2a from core deps (#843) - Route zeph-index Qdrant ops through VectorStore trait, drop direct qdrant-client dep (#844) - Add content_hash() BLAKE3 utility in zeph-core::hash (#845) - Remove zeph-core::diff re-export module, use direct pub use (#846)
Add tests for zeph-core::hash, zeph-core::subagent::state, TrustLevel edge cases, SkillSource paths, zeph-index store/retriever, and qdrant_ops. 2744 tests pass total. docs: update architecture docs and README files for epic #832 dep hygiene Reflect TrustLevel move to zeph-tools, SubAgentState in zeph-core, content_hash utility, diff module removal, and zeph-index VectorStore trait consolidation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves epic #832.
Summary
TrustLevelenum tozeph-tools::trust_level.zeph-skillsre-exports it viapub use zeph_tools::TrustLevel. Removes the reverse dependencyzeph-tools → zeph-skills.zeph-channels::error::ChannelError(Telegram/NoActiveChat variants never used — all adapters already usezeph_core::channel::ChannelError).SubAgentStateenum inzeph-core::subagent::state, replacingzeph_a2a::types::TaskStateusage inside core. Removedzeph-a2afromzeph-coredependencies.zeph-indexstore and retriever to usezeph_memory::VectorStoretrait andQdrantOps. Removed directqdrant-clientdependency fromzeph-index.content_hash(data: &[u8]) -> Stringinzeph-core::hash(BLAKE3). Available for downstream crates.zeph-core::diffre-export module.zeph_core::DiffDatais nowpub use zeph_tools::executor::DiffDatadirectly inlib.rs.closes #841,closes #842,closes #843,closes #844,closes #845,closes #846,closes #832
Test plan
cargo +nightly fmt --check— passescargo clippy --workspace -- -D warnings— zero warningscargo nextest run --workspace --lib --bins— 2694 tests pass