nit: feature flag (#17777)

This commit is contained in:
jif-oai
2026-04-14 13:44:01 +01:00
committed by GitHub
parent 2f6fc7c137
commit 34a9ca083e
2 changed files with 14 additions and 0 deletions

View File

@@ -130,6 +130,8 @@ pub enum Feature {
Sqlite,
/// Enable startup memory extraction and file-backed memory consolidation.
MemoryTool,
/// Enable the Telepathy sidecar for passive screen-context memories.
Telepathy,
/// Append additional AGENTS.md guidance to user instructions.
ChildAgentsMd,
/// Allow the model to request `detail: "original"` image outputs on supported models.
@@ -669,6 +671,12 @@ pub const FEATURES: &[FeatureSpec] = &[
stage: Stage::UnderDevelopment,
default_enabled: false,
},
FeatureSpec {
id: Feature::Telepathy,
key: "telepathy",
stage: Stage::UnderDevelopment,
default_enabled: false,
},
FeatureSpec {
id: Feature::ChildAgentsMd,
key: "child_agents_md",