/**
 * Hyperplan keyword detector.
 *
 * Triggers when the user wants adversarial multi-agent planning via team-mode.
 *
 * Triggers (case-insensitive, word-bounded):
 * - English: hyperplan, hpp
 *
 * The detector injects a thin wrapper that loads the `hyperplan` skill, which
 * carries the full orchestration instructions for the 5-member adversarial team.
 *
 * The `hpp` shorthand uses an extra negative-lookbehind so that the very common
 * C++ header-file extension `.hpp` (e.g. `interface.hpp`, `src/buffer.hpp`)
 * does NOT falsely trigger hyperplan mode. A leading `.` would otherwise
 * satisfy `\b` because the dot is a non-word character. See issue #4215.
 */
export declare const HYPERPLAN_PATTERN: RegExp;
export declare const HYPERPLAN_MESSAGE = "<hyperplan-mode>\n**MANDATORY**: Say \"HYPERPLAN MODE ENABLED!\" as your first response, exactly once.\n\nThe user invoked **hyperplan mode** \u2014 adversarial multi-agent planning via team-mode.\n\nLOAD THE HYPERPLAN SKILL IMMEDIATELY:\n\n```\nskill(name=\"hyperplan\")\n```\n\nAfter loading, follow the skill's full workflow EXACTLY:\n1. Acknowledge and capture the planning request\n2. Spawn the adversarial team via `team_create` with category members `unspecified-low`, `unspecified-high`, `ultrabrain`, and `artistry`; include `deep` only if the category is enabled\n3. Round 1 \u2014 Independent analysis (each member produces findings)\n4. Round 2 \u2014 Cross-attack (each member ruthlessly attacks the other 4's findings)\n5. Round 3 \u2014 Defend, refine, or concede\n6. Distill defensible insights into a structured bundle (Lead does NOT write the plan)\n7. MANDATORY: hand the bundle to the `plan` agent via `task(subagent_type=\"plan\", ...)` \u2014 the plan agent owns sequencing, parallelization, and verification gates\n8. Present the plan agent's output verbatim with provenance line, then clean up the team\n\nDo NOT improvise. Do NOT skip rounds. Do NOT write the plan yourself in step 6 \u2014 the handoff to the plan agent in step 7 is non-negotiable. Be the lead orchestrator and let the adversarial members do the cross-critique.\n\nIf team-mode is unavailable (`team_*` tools missing), instruct the user to set `team_mode.enabled: true` in `~/.config/opencode/oh-my-opencode.jsonc` and restart opencode.\n</hyperplan-mode>";
