feat(profiler/behave_shell): emit cognitive.exploration_style

Two-axis classification over the first_token_hash sequence:
repetition_rate (drilling) vs backtrack_rate (jumping among prior
tools). chaotic/targeted/methodical buckets. v0.1 thresholds; D.8
re-tunes.
This commit is contained in:
2026-05-03 23:54:03 -04:00
parent f948e10830
commit 2254651270
4 changed files with 157 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ from decnet.profiler.behave_shell._ctx import SessionContext
from decnet.profiler.behave_shell._features.cognitive import (
cognitive_load,
command_branch_diversity,
exploration_style,
feedback_loop_engagement,
inter_command_consistency,
inter_command_latency_class,
@@ -47,4 +48,5 @@ FEATURES: tuple[FeatureFn, ...] = (
feedback_loop_engagement,
inter_command_consistency,
cognitive_load,
exploration_style,
)