feat(profiler/behave_shell): emit cognitive.planning_depth

Distribution of inter-command IATs bucketed against IKI_THINK_MAX_S
(deep) and INTER_CMD_INSTANT_MAX (reactive); fall-through is shallow.
v0.1 thresholds; D.8 re-tunes.
This commit is contained in:
2026-05-03 23:55:16 -04:00
parent 2254651270
commit 6c2e4ada83
4 changed files with 123 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ from decnet.profiler.behave_shell._features.cognitive import (
command_branch_diversity,
exploration_style,
feedback_loop_engagement,
planning_depth,
inter_command_consistency,
inter_command_latency_class,
)
@@ -49,4 +50,5 @@ FEATURES: tuple[FeatureFn, ...] = (
inter_command_consistency,
cognitive_load,
exploration_style,
planning_depth,
)