feat(config): promote stable features to default#3424
Merged
Conversation
Add task-metrics and self-check to default Cargo features. Both are lightweight gates with zero external deps, and are exercised by every live session and CI cycle since CI-593b / CI-603. Enable in default config (all verified stable in CI-608..CI-613): - [session] provider_persistence = true (#3308) - [memory.retrieval] depth = 40, query_bias_correction = true (MM-F1/F3) - [memory.persona] enabled = true (CI-604/CI-605) - [memory.hebbian] block uncommented, enabled = false (discoverable opt-in) - [memory.graph.spreading_activation] documented example, enabled = true - Fix memory.reasoning.extraction_timeout_secs default 10 → 30 Add migrate-config steps 36–38 so existing configs are upgraded automatically without manual editing.
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.
Summary
task-metricsandself-checkto[features] defaultin rootCargo.toml— both are lightweight (zero external deps) and exercised every CI cycle since CI-593b/CI-603config/default.toml(all backed byTestedrows in CI-608..CI-613):[session] provider_persistence = true— verified CI-608 (research(ux): Claude Code /recap and session resume — auto-summarize returning sessions and persist model selection across restarts #3308)[memory.retrieval] depth = 40,query_bias_correction = true— verified CI-604/CI-605 (MM-F1/F3)[memory.persona] enabled = true— verified CI-604/CI-605[memory.hebbian]block uncommented,enabled = false(opt-in, but discoverable)[memory.graph.spreading_activation]documented example withenabled = truememory.reasoning.extraction_timeout_secsdefault 10 → 30migrate-configsteps 36–38 so existing configs upgrade automaticallyTest plan
cargo +nightly fmt --check— cleancargo clippy -p zeph-config -- -D warnings— clean (pre-existing zeph-memory errors unrelated)cargo nextest run -p zeph-config --lib— 327 tests PASScargo nextest run --workspace --lib --bins— 8567 tests PASScargo run --features full -- --config .local/config/testing.toml— verify no startup WARNs for new default keys