chati-dev 4.4.0 → 4.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,9 +14,17 @@ import { resolveFrameworkDir } from './framework-dir.js';
14
14
 
15
15
  /**
16
16
  * All known feature flags with their default values.
17
- * New features start as false (opt-in).
17
+ * New features start as false (opt-in). Defaults describe the state when
18
+ * config.yaml is absent; installed projects get their real values written by
19
+ * generateConfigYaml, and parseFeaturesSection only honors keys listed here,
20
+ * so EVERY boolean flag documented in config.yaml must appear in this map or
21
+ * the user's toggle is silently ignored (which froze 11 flags until 4.4.1).
22
+ * The numeric team_* and build_wave_size keys are intentionally absent: the
23
+ * parser is boolean-only and those values are read directly from config.yaml
24
+ * by their consumers.
18
25
  */
19
26
  const DEFAULTS = {
27
+ // Core framework flags
20
28
  hybrid_budget: false,
21
29
  anti_dash: false,
22
30
  rate_limiter_integration: false,
@@ -28,6 +36,22 @@ const DEFAULTS = {
28
36
  tech_presets: false,
29
37
  doctor_autofix: false,
30
38
  brandbook: false,
39
+ // Intelligence upgrade flags
40
+ undercover_mode: false,
41
+ memory_extraction: false,
42
+ memory_consolidation: false,
43
+ daily_digest: false,
44
+ structured_session_memory: false,
45
+ static_prism_boundary: false,
46
+ token_bracket_estimation: false,
47
+ model_fallback: false,
48
+ frustration_detection: false,
49
+ bash_security_checks: false,
50
+ // Agent Teams (Article XXI). NOTE: isAgentTeamsEnabled in cli.js keeps its
51
+ // own reader with Claude-provider defaulting; this entry exists so a config
52
+ // toggle is at least visible through the generic API.
53
+ agent_teams: false,
54
+ // Execution Kinds (Article XXV)
31
55
  execution_kinds: false,
32
56
  };
33
57