opencode-swarm 6.10.0 → 6.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -79,6 +79,10 @@ export declare class PhaseBoundaryTrigger {
79
79
  * Get the last known phase
80
80
  */
81
81
  getCurrentPhase(): number;
82
+ /**
83
+ * Get the last triggered phase (for external access)
84
+ */
85
+ get lastTriggeredPhaseValue(): number;
82
86
  /**
83
87
  * Check if a phase boundary has been crossed
84
88
  * Returns the result of the detection
@@ -8,6 +8,11 @@
8
8
  * drop after 2-3 turns without reminders.
9
9
  */
10
10
  import type { PluginConfig } from '../config';
11
+ /**
12
+ * Build dynamic phase reminder with compliance escalation based on phase number.
13
+ * Counteracts temporal compliance decay discovered during field testing.
14
+ */
15
+ export declare function buildPhaseReminder(phaseNumber: number | null): string;
11
16
  interface MessageInfo {
12
17
  role: string;
13
18
  agent?: string;