patterns_lifecycle
patterns_lifecycle
¶
Pattern lifecycle and promotion automation for GlobalLearningStore.
Provides automated pattern lifecycle transitions based on effectiveness metrics: - promote_ready_patterns: Auto-promote patterns from PENDING to ACTIVE/QUARANTINED - update_quarantine_status: Manual status updates
Lifecycle transitions: - PENDING → ACTIVE: occurrences >= 3 AND effectiveness > 0.60 - PENDING → QUARANTINED: occurrences >= 3 AND effectiveness < 0.35 - ACTIVE → QUARANTINED: effectiveness drops below 0.30 after validation - QUARANTINED → VALIDATED: Manual review and approval
Evolution v25 Candidate 2: This module implements the missing feedback loop that allows patterns to mature beyond baseline effectiveness through application → measurement → promotion.
Classes¶
PatternLifecycleMixin
¶
Bases: _LifecycleBase
Mixin providing pattern lifecycle and promotion automation.
This mixin requires that the composed class provides: - _get_connection(): Context manager yielding sqlite3.Connection - get_pattern_by_id(): For pattern lookup (from PatternQueryMixin)
Functions¶
promote_ready_patterns
¶
Auto-promote or quarantine patterns based on effectiveness thresholds.
Queries all PENDING patterns and transitions them based on criteria: - PENDING → ACTIVE: occurrences >= 3 AND effectiveness > 0.60 - PENDING → QUARANTINED: occurrences >= 3 AND effectiveness < 0.35
Also checks ACTIVE patterns for degradation: - ACTIVE → QUARANTINED: effectiveness < 0.30
Returns:
| Type | Description |
|---|---|
dict[str, list[str]]
|
Dict with keys: |
dict[str, list[str]]
|
|
dict[str, list[str]]
|
|
dict[str, list[str]]
|
|
Source code in src/marianne/learning/store/patterns_lifecycle.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 | |
update_quarantine_status
¶
Manually update a pattern's quarantine status.
This is for operator-driven lifecycle transitions that bypass automatic thresholds (e.g., promoting a validated pattern after manual review, or retiring an obsolete pattern).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pattern_id
|
str
|
The pattern to update. |
required |
new_status
|
QuarantineStatus
|
New quarantine status. |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if updated, False if pattern not found. |