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.
- package/bin/chati.js +16 -0
- package/framework/config.yaml +3 -3
- package/framework/constitution.md +3 -1
- package/framework/data/entity-registry.yaml +1 -1
- package/framework/manifest.json +1351 -0
- package/framework/manifest.sig +1 -0
- package/framework/orchestrator/chati.md +5 -2
- package/package.json +2 -2
- package/src/config/claude-settings-generator.js +9 -6
- package/src/installer/core.js +33 -3
- package/src/installer/manifest.js +30 -4
- package/src/installer/signing-public-key.pem +1 -1
- package/src/installer/validator.js +2 -1
- package/src/intelligence/registry-manager.js +2 -1
- package/src/memory/magic-docs.js +6 -1
- package/src/orchestrator/cli.js +21 -9
- package/src/orchestrator/deviation-handler.js +5 -3
- package/src/terminal/run-parallel.js +14 -14
- package/src/upgrade/backup.js +22 -44
- package/src/upgrade/migrator.js +51 -12
- package/src/utils/constitution-meta.js +12 -0
- package/src/utils/feature-flags.js +25 -1
|
@@ -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
|
|