//! Phase 2d annotations entry point — kebab-cased to per-detector intent.
//!
//! As of Phase 2c (when the rule-of-three triggered), the actual parser
//! lives in `super::super::dual_branch_annotation`. This module exists
//! so existing `super::annotation::parse_python_comment` call sites
//! inside the detector keep working without churn, AND so that any
//! Phase 2d-specific annotation kind validation can land here without
//! affecting the shared parser.
//!
//! Phase 2d uses two kinds:
//! - `command-static[<reason>]` — collapses to Benign / Info.
//! - `command-user-controlled[<source>]` — collapses to RealBug /
//! `severity_for(api, arg_kind, literal_text)` (the existing 2D
//! severity table, per decisions doc D3).
//!
//! The shared parser is kind-agnostic; this module is the natural home
//! for any future Phase 2d-specific kind validation or normalization.
pub use crate;