feat(profiler/behave_shell): G.3 operational.cleanup_behavior

* thorough — ≥ CLEANUP_THOROUGH_MIN_DISTINCT (3) distinct
  cleanup-family hashes in tail-CLEANUP_TAIL_K (5).
* partial  — 1-2 distinct.
* none     — zero hits.

Adjacent to E.4's binary exit_behavior=cleanup; G.3 graduates the
intensity. Confidence 0.55 above 8 commands; 0.35 below.
This commit is contained in:
2026-05-08 16:32:08 -04:00
parent 337c7392b9
commit 17b53dad4d
3 changed files with 139 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ from decnet.profiler.behave_shell._features.environmental import (
terminal_multiplexer,
)
from decnet.profiler.behave_shell._features.operational import (
cleanup_behavior,
objective,
opsec_discipline,
)
@@ -87,4 +88,5 @@ FEATURES: tuple[FeatureFn, ...] = (
numpad_usage,
objective,
opsec_discipline,
cleanup_behavior,
)

View File

@@ -22,6 +22,8 @@ from decnet.profiler.behave_shell._intent import (
classify_intent,
)
from decnet.profiler.behave_shell._thresholds import (
CLEANUP_TAIL_K,
CLEANUP_THOROUGH_MIN_DISTINCT,
EXIT_BEHAVIOR_LOOKBACK_K,
INTENT_FULL_CONFIDENCE_MIN,
INTENT_MIN_COMMANDS,
@@ -109,3 +111,43 @@ def opsec_discipline(ctx: SessionContext) -> Iterator[Observation]:
value=value,
confidence=confidence,
)
def cleanup_behavior(ctx: SessionContext) -> Iterator[Observation]:
"""Emit ``operational.cleanup_behavior`` ∈ {thorough, partial, none}.
Inspect the last ``CLEANUP_TAIL_K`` (=5) commands. Count distinct
cleanup-family hashes (``history`` / ``unset`` / ``rm`` / ``shred``
/ ``clear`` / ``kill``) in that window:
* ``thorough`` — ≥ ``CLEANUP_THOROUGH_MIN_DISTINCT`` (3) distinct
cleanup tokens.
* ``partial`` — 1-2 distinct cleanup tokens.
* ``none`` — zero hits.
Adjacent to E.4's ``exit_behavior=cleanup`` emission — E.4 is
binary "did it happen", G.3 graduates intensity. Both ride.
Skip emission when no commands. Confidence 0.55 when commands ≥ 8;
0.35 below.
"""
if not ctx.commands:
return
tail = ctx.commands[-CLEANUP_TAIL_K:]
distinct = {
c.first_token_hash for c in tail
if c.first_token_hash in _CLEANUP_TOKEN_HASHES
}
if len(distinct) >= CLEANUP_THOROUGH_MIN_DISTINCT:
value = "thorough"
elif len(distinct) >= 1:
value = "partial"
else:
value = "none"
confidence = 0.55 if len(ctx.commands) >= 8 else 0.35
yield make_observation(
ctx,
primitive="operational.cleanup_behavior",
value=value,
confidence=confidence,
)