refactor: drop decnet- prefix — BEHAVE is now standalone

Rename packages and imports:
  decnet-behave-core  → behave-core
  decnet-behave-shell → behave-shell
  decnet-behave-text  → behave-text
  decnet_behave_*     → behave_*

BEHAVE is no longer a DECNET sub-project.
This commit is contained in:
2026-05-10 06:20:01 -04:00
parent bccd1eafd9
commit 22b57307cf
23 changed files with 34 additions and 34 deletions

View File

@@ -11,7 +11,7 @@ from __future__ import annotations
import re
from pathlib import Path
from decnet_behave_text.spec import PRIMITIVE_REGISTRY, ValueKind
from behave_text.spec import PRIMITIVE_REGISTRY, ValueKind
# Primitive paths expected by scratchpad.md (hand-extracted; v0).
EXPECTED_PRIMITIVES = {
@@ -96,6 +96,6 @@ def test_experimental_primitives_are_in_content_layer_only():
def test_topic_namespace_uses_actor_not_attacker():
"""The text-domain topic prefix must be `actor.*`, not `attacker.*`."""
from decnet_behave_text.spec import TOPIC_PREFIX, event_topic_for
from behave_text.spec import TOPIC_PREFIX, event_topic_for
assert TOPIC_PREFIX == "actor.observation.text"
assert event_topic_for("stylometric.emoji_usage") == "actor.observation.text.stylometric.emoji_usage"