stringray-ai 1.0.37 → 1.0.39
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.
- package/dist/plugin/architectural-integrity.d.ts +21 -0
- package/dist/plugin/architectural-integrity.d.ts.map +1 -0
- package/dist/plugin/architectural-integrity.js +81 -0
- package/dist/plugin/architectural-integrity.js.map +1 -0
- package/dist/plugin/boot-orchestrator.d.ts +100 -0
- package/dist/plugin/boot-orchestrator.d.ts.map +1 -0
- package/dist/plugin/boot-orchestrator.js +606 -0
- package/dist/plugin/boot-orchestrator.js.map +1 -0
- package/dist/plugin/codex-injector.d.ts +72 -0
- package/dist/plugin/codex-injector.d.ts.map +1 -0
- package/dist/plugin/codex-injector.js +387 -0
- package/dist/plugin/codex-injector.js.map +1 -0
- package/dist/plugin/delegation/index.d.ts +16 -0
- package/dist/plugin/delegation/index.d.ts.map +1 -0
- package/dist/plugin/delegation/index.js +13 -0
- package/dist/plugin/delegation/index.js.map +1 -0
- package/dist/plugin/delegation/session-coordinator.d.ts +121 -0
- package/dist/plugin/delegation/session-coordinator.d.ts.map +1 -0
- package/dist/plugin/delegation/session-coordinator.js +346 -0
- package/dist/plugin/delegation/session-coordinator.js.map +1 -0
- package/dist/plugin/index.d.ts +3 -0
- package/dist/plugin/index.d.ts.map +1 -0
- package/dist/plugin/index.js +3 -0
- package/dist/plugin/index.js.map +1 -0
- package/dist/plugin/monitoring/memory-monitor.d.ts +113 -0
- package/dist/plugin/monitoring/memory-monitor.d.ts.map +1 -0
- package/dist/plugin/monitoring/memory-monitor.js +283 -0
- package/dist/plugin/monitoring/memory-monitor.js.map +1 -0
- package/dist/plugin/postprocessor/PostProcessor.d.ts +90 -0
- package/dist/plugin/postprocessor/PostProcessor.d.ts.map +1 -0
- package/dist/plugin/postprocessor/PostProcessor.js +631 -0
- package/dist/plugin/postprocessor/PostProcessor.js.map +1 -0
- package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.d.ts +40 -0
- package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.d.ts.map +1 -0
- package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.js +244 -0
- package/dist/plugin/postprocessor/analysis/FailureAnalysisEngine.js.map +1 -0
- package/dist/plugin/postprocessor/autofix/AutoFixEngine.d.ts +50 -0
- package/dist/plugin/postprocessor/autofix/AutoFixEngine.d.ts.map +1 -0
- package/dist/plugin/postprocessor/autofix/AutoFixEngine.js +246 -0
- package/dist/plugin/postprocessor/autofix/AutoFixEngine.js.map +1 -0
- package/dist/plugin/postprocessor/autofix/FixValidator.d.ts +27 -0
- package/dist/plugin/postprocessor/autofix/FixValidator.d.ts.map +1 -0
- package/dist/plugin/postprocessor/autofix/FixValidator.js +158 -0
- package/dist/plugin/postprocessor/autofix/FixValidator.js.map +1 -0
- package/dist/plugin/postprocessor/config.d.ts +7 -0
- package/dist/plugin/postprocessor/config.d.ts.map +1 -0
- package/dist/plugin/postprocessor/config.js +66 -0
- package/dist/plugin/postprocessor/config.js.map +1 -0
- package/dist/plugin/postprocessor/escalation/EscalationEngine.d.ts +73 -0
- package/dist/plugin/postprocessor/escalation/EscalationEngine.d.ts.map +1 -0
- package/dist/plugin/postprocessor/escalation/EscalationEngine.js +249 -0
- package/dist/plugin/postprocessor/escalation/EscalationEngine.js.map +1 -0
- package/dist/plugin/postprocessor/monitoring/MonitoringEngine.d.ts +19 -0
- package/dist/plugin/postprocessor/monitoring/MonitoringEngine.d.ts.map +1 -0
- package/dist/plugin/postprocessor/monitoring/MonitoringEngine.js +120 -0
- package/dist/plugin/postprocessor/monitoring/MonitoringEngine.js.map +1 -0
- package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.d.ts +92 -0
- package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.d.ts.map +1 -0
- package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.js +319 -0
- package/dist/plugin/postprocessor/redeploy/RedeployCoordinator.js.map +1 -0
- package/dist/plugin/postprocessor/success/SuccessHandler.d.ts +61 -0
- package/dist/plugin/postprocessor/success/SuccessHandler.d.ts.map +1 -0
- package/dist/plugin/postprocessor/success/SuccessHandler.js +148 -0
- package/dist/plugin/postprocessor/success/SuccessHandler.js.map +1 -0
- package/dist/plugin/postprocessor/triggers/APITrigger.d.ts +13 -0
- package/dist/plugin/postprocessor/triggers/APITrigger.d.ts.map +1 -0
- package/dist/plugin/postprocessor/triggers/APITrigger.js +20 -0
- package/dist/plugin/postprocessor/triggers/APITrigger.js.map +1 -0
- package/dist/plugin/postprocessor/triggers/GitHookTrigger.d.ts +17 -0
- package/dist/plugin/postprocessor/triggers/GitHookTrigger.d.ts.map +1 -0
- package/dist/plugin/postprocessor/triggers/GitHookTrigger.js +285 -0
- package/dist/plugin/postprocessor/triggers/GitHookTrigger.js.map +1 -0
- package/dist/plugin/postprocessor/triggers/WebhookTrigger.d.ts +13 -0
- package/dist/plugin/postprocessor/triggers/WebhookTrigger.d.ts.map +1 -0
- package/dist/plugin/postprocessor/triggers/WebhookTrigger.js +21 -0
- package/dist/plugin/postprocessor/triggers/WebhookTrigger.js.map +1 -0
- package/dist/plugin/postprocessor/types.d.ts +198 -0
- package/dist/plugin/postprocessor/types.d.ts.map +1 -0
- package/dist/plugin/postprocessor/types.js +5 -0
- package/dist/plugin/postprocessor/types.js.map +1 -0
- package/dist/plugin/security/security-auditor.d.ts +57 -0
- package/dist/plugin/security/security-auditor.d.ts.map +1 -0
- package/dist/plugin/security/security-auditor.js +583 -0
- package/dist/plugin/security/security-auditor.js.map +1 -0
- package/dist/plugin/security/security-hardener.d.ts +63 -0
- package/dist/plugin/security/security-hardener.d.ts.map +1 -0
- package/dist/plugin/security/security-hardener.js +181 -0
- package/dist/plugin/security/security-hardener.js.map +1 -0
- package/dist/plugin/security/security-headers.d.ts +52 -0
- package/dist/plugin/security/security-headers.d.ts.map +1 -0
- package/dist/plugin/security/security-headers.js +118 -0
- package/dist/plugin/security/security-headers.js.map +1 -0
- package/dist/plugin/session/session-cleanup-manager.d.ts +118 -0
- package/dist/plugin/session/session-cleanup-manager.d.ts.map +1 -0
- package/dist/plugin/session/session-cleanup-manager.js +324 -0
- package/dist/plugin/session/session-cleanup-manager.js.map +1 -0
- package/dist/plugin/session/session-monitor.d.ts +99 -0
- package/dist/plugin/session/session-monitor.d.ts.map +1 -0
- package/dist/plugin/session/session-monitor.js +363 -0
- package/dist/plugin/session/session-monitor.js.map +1 -0
- package/dist/plugin/session/session-state-manager.d.ts +142 -0
- package/dist/plugin/session/session-state-manager.d.ts.map +1 -0
- package/dist/plugin/session/session-state-manager.js +504 -0
- package/dist/plugin/session/session-state-manager.js.map +1 -0
- package/dist/plugin/strray-activation.d.ts +18 -0
- package/dist/plugin/strray-activation.d.ts.map +1 -0
- package/dist/plugin/strray-activation.js +114 -0
- package/dist/plugin/strray-activation.js.map +1 -0
- package/dist/plugin/validation/report-content-validator.d.ts +43 -0
- package/dist/plugin/validation/report-content-validator.d.ts.map +1 -0
- package/dist/plugin/validation/report-content-validator.js +219 -0
- package/dist/plugin/validation/report-content-validator.js.map +1 -0
- package/package.json +1 -1
- package/scripts/test-complex-orchestration.mjs +1 -1
- package/scripts/test-simple-prompt.mjs +1 -1
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
import { EventEmitter } from "events";
|
|
2
|
+
export class MemoryMonitor extends EventEmitter {
|
|
3
|
+
config;
|
|
4
|
+
monitoringInterval = null;
|
|
5
|
+
statsHistory = [];
|
|
6
|
+
maxHistorySize = 1000;
|
|
7
|
+
leakDetectionEnabled = true;
|
|
8
|
+
lastLeakCheck = Date.now();
|
|
9
|
+
leakCheckInterval = 5 * 60 * 1000;
|
|
10
|
+
constructor(config = {}) {
|
|
11
|
+
super();
|
|
12
|
+
this.config = {
|
|
13
|
+
checkInterval: 30000,
|
|
14
|
+
alertThresholds: {
|
|
15
|
+
warning: 200,
|
|
16
|
+
critical: 400,
|
|
17
|
+
leakDetection: {
|
|
18
|
+
growthRate: 10,
|
|
19
|
+
sustainedPeriod: 10,
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
enableFrameworkLogging: true,
|
|
23
|
+
sessionTracking: true,
|
|
24
|
+
...config,
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Start memory monitoring
|
|
29
|
+
*/
|
|
30
|
+
start() {
|
|
31
|
+
this.log("🔍 Starting Memory Monitor...");
|
|
32
|
+
this.monitoringInterval = setInterval(() => {
|
|
33
|
+
this.checkMemory();
|
|
34
|
+
}, this.config.checkInterval);
|
|
35
|
+
this.checkMemory();
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Stop memory monitoring
|
|
39
|
+
*/
|
|
40
|
+
stop() {
|
|
41
|
+
if (this.monitoringInterval) {
|
|
42
|
+
clearInterval(this.monitoringInterval);
|
|
43
|
+
}
|
|
44
|
+
this.monitoringInterval = null;
|
|
45
|
+
this.log("🛑 Memory Monitor stopped");
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Get current memory statistics
|
|
49
|
+
*/
|
|
50
|
+
getCurrentStats() {
|
|
51
|
+
const memUsage = process.memoryUsage();
|
|
52
|
+
return {
|
|
53
|
+
heapUsed: Math.round((memUsage.heapUsed / 1024 / 1024) * 100) / 100,
|
|
54
|
+
heapTotal: Math.round((memUsage.heapTotal / 1024 / 1024) * 100) / 100,
|
|
55
|
+
external: Math.round((memUsage.external / 1024 / 1024) * 100) / 100,
|
|
56
|
+
rss: Math.round((memUsage.rss / 1024 / 1024) * 100) / 100,
|
|
57
|
+
timestamp: Date.now(),
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Check memory usage and detect issues
|
|
62
|
+
*/
|
|
63
|
+
checkMemory() {
|
|
64
|
+
const stats = this.getCurrentStats();
|
|
65
|
+
this.statsHistory.push(stats);
|
|
66
|
+
if (this.statsHistory.length > this.maxHistorySize) {
|
|
67
|
+
this.statsHistory.shift();
|
|
68
|
+
}
|
|
69
|
+
this.checkThresholds(stats);
|
|
70
|
+
if (this.leakDetectionEnabled &&
|
|
71
|
+
Date.now() - this.lastLeakCheck > this.leakCheckInterval) {
|
|
72
|
+
this.detectMemoryLeaks();
|
|
73
|
+
this.lastLeakCheck = Date.now();
|
|
74
|
+
}
|
|
75
|
+
if (this.config.enableFrameworkLogging) {
|
|
76
|
+
this.logFrameworkMemory(stats);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Check memory usage against thresholds
|
|
81
|
+
*/
|
|
82
|
+
checkThresholds(stats) {
|
|
83
|
+
const heapMB = stats.heapUsed;
|
|
84
|
+
if (heapMB >= this.config.alertThresholds.critical) {
|
|
85
|
+
this.emitAlert({
|
|
86
|
+
type: "high_usage",
|
|
87
|
+
severity: "critical",
|
|
88
|
+
message: `Critical memory usage: ${heapMB.toFixed(2)}MB (threshold: ${this.config.alertThresholds.critical}MB)`,
|
|
89
|
+
details: {
|
|
90
|
+
currentUsage: heapMB,
|
|
91
|
+
threshold: this.config.alertThresholds.critical,
|
|
92
|
+
trend: this.calculateTrend(),
|
|
93
|
+
recommendations: [
|
|
94
|
+
"Force garbage collection if available",
|
|
95
|
+
"Check for memory leaks in caches and event listeners",
|
|
96
|
+
"Consider reducing concurrent operations",
|
|
97
|
+
"Monitor large data structures (Maps, Sets, Arrays)",
|
|
98
|
+
],
|
|
99
|
+
},
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
else if (heapMB >= this.config.alertThresholds.warning) {
|
|
103
|
+
this.emitAlert({
|
|
104
|
+
type: "high_usage",
|
|
105
|
+
severity: "high",
|
|
106
|
+
message: `High memory usage: ${heapMB.toFixed(2)}MB (threshold: ${this.config.alertThresholds.warning}MB)`,
|
|
107
|
+
details: {
|
|
108
|
+
currentUsage: heapMB,
|
|
109
|
+
threshold: this.config.alertThresholds.warning,
|
|
110
|
+
trend: this.calculateTrend(),
|
|
111
|
+
recommendations: [
|
|
112
|
+
"Monitor memory growth rate",
|
|
113
|
+
"Check for inefficient algorithms",
|
|
114
|
+
"Consider memory optimization techniques",
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
});
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Detect potential memory leaks
|
|
122
|
+
*/
|
|
123
|
+
detectMemoryLeaks() {
|
|
124
|
+
if (this.statsHistory.length < 10)
|
|
125
|
+
return;
|
|
126
|
+
const recentStats = this.statsHistory.slice(-20);
|
|
127
|
+
if (recentStats.length < 2)
|
|
128
|
+
return;
|
|
129
|
+
const timeSpan = recentStats[recentStats.length - 1].timestamp -
|
|
130
|
+
recentStats[0].timestamp;
|
|
131
|
+
const timeSpanMinutes = timeSpan / (1000 * 60);
|
|
132
|
+
if (timeSpanMinutes < 1)
|
|
133
|
+
return;
|
|
134
|
+
const startUsage = recentStats[0].heapUsed;
|
|
135
|
+
const endUsage = recentStats[recentStats.length - 1].heapUsed;
|
|
136
|
+
const growthRate = (endUsage - startUsage) / timeSpanMinutes;
|
|
137
|
+
if (growthRate > this.config.alertThresholds.leakDetection.growthRate) {
|
|
138
|
+
const sustainedPeriod = this.config.alertThresholds.leakDetection.sustainedPeriod;
|
|
139
|
+
if (timeSpanMinutes >= sustainedPeriod) {
|
|
140
|
+
this.emitAlert({
|
|
141
|
+
type: "leak_detected",
|
|
142
|
+
severity: "medium",
|
|
143
|
+
message: `Potential memory leak detected: ${growthRate.toFixed(2)}MB/min growth rate over ${timeSpanMinutes.toFixed(1)} minutes`,
|
|
144
|
+
details: {
|
|
145
|
+
currentUsage: endUsage,
|
|
146
|
+
threshold: this.config.alertThresholds.leakDetection.growthRate,
|
|
147
|
+
trend: "increasing",
|
|
148
|
+
recommendations: [
|
|
149
|
+
"Check for uncleansed event listeners",
|
|
150
|
+
"Review timer/interval cleanup",
|
|
151
|
+
"Inspect cache growth in Map/Set structures",
|
|
152
|
+
"Monitor object retention in closures",
|
|
153
|
+
"Consider memory profiling tools",
|
|
154
|
+
],
|
|
155
|
+
},
|
|
156
|
+
});
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* Calculate memory usage trend
|
|
162
|
+
*/
|
|
163
|
+
calculateTrend() {
|
|
164
|
+
if (this.statsHistory.length < 5)
|
|
165
|
+
return "stable";
|
|
166
|
+
const recent = this.statsHistory.slice(-5);
|
|
167
|
+
const older = this.statsHistory.slice(-10, -5);
|
|
168
|
+
const recentAvg = recent.reduce((sum, s) => sum + s.heapUsed, 0) / recent.length;
|
|
169
|
+
const olderAvg = older.reduce((sum, s) => sum + s.heapUsed, 0) / older.length;
|
|
170
|
+
const diff = recentAvg - olderAvg;
|
|
171
|
+
const threshold = 5;
|
|
172
|
+
if (diff > threshold)
|
|
173
|
+
return "increasing";
|
|
174
|
+
if (diff < -threshold)
|
|
175
|
+
return "decreasing";
|
|
176
|
+
return "stable";
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Emit memory alert
|
|
180
|
+
*/
|
|
181
|
+
emitAlert(alert) {
|
|
182
|
+
this.emit("alert", alert);
|
|
183
|
+
const severityEmoji = {
|
|
184
|
+
low: "ℹ️",
|
|
185
|
+
medium: "⚠️",
|
|
186
|
+
high: "🔴",
|
|
187
|
+
critical: "🚨",
|
|
188
|
+
};
|
|
189
|
+
this.log(`${severityEmoji[alert.severity]} MEMORY ALERT: ${alert.message}`);
|
|
190
|
+
alert.details.recommendations.forEach((rec) => {
|
|
191
|
+
this.log(` 💡 ${rec}`);
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Log memory stats to framework log
|
|
196
|
+
*/
|
|
197
|
+
logFrameworkMemory(stats) {
|
|
198
|
+
const logEntry = `🧠 Memory: ${stats.heapUsed.toFixed(1)}MB heap, ${stats.heapTotal.toFixed(1)}MB total, ${stats.external.toFixed(1)}MB external, ${stats.rss.toFixed(1)}MB RSS`;
|
|
199
|
+
this.log(logEntry);
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* Get memory usage history
|
|
203
|
+
*/
|
|
204
|
+
getHistory(hours = 1) {
|
|
205
|
+
const cutoff = Date.now() - hours * 60 * 60 * 1000;
|
|
206
|
+
return this.statsHistory.filter((stat) => stat.timestamp >= cutoff);
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* Get memory usage summary
|
|
210
|
+
*/
|
|
211
|
+
getSummary() {
|
|
212
|
+
const current = this.getCurrentStats();
|
|
213
|
+
const peak = this.statsHistory.reduce((max, stat) => (stat.heapUsed > max.heapUsed ? stat : max), this.statsHistory[0] || current);
|
|
214
|
+
const average = this.statsHistory.length > 0
|
|
215
|
+
? this.statsHistory.reduce((sum, stat) => sum + stat.heapUsed, 0) /
|
|
216
|
+
this.statsHistory.length
|
|
217
|
+
: current.heapUsed;
|
|
218
|
+
return {
|
|
219
|
+
current,
|
|
220
|
+
peak,
|
|
221
|
+
average: Math.round(average * 100) / 100,
|
|
222
|
+
trend: this.calculateTrend(),
|
|
223
|
+
};
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Force garbage collection (if available)
|
|
227
|
+
*/
|
|
228
|
+
forceGC() {
|
|
229
|
+
if (global.gc) {
|
|
230
|
+
const before = this.getCurrentStats().heapUsed;
|
|
231
|
+
global.gc();
|
|
232
|
+
const after = this.getCurrentStats().heapUsed;
|
|
233
|
+
const freed = before - after;
|
|
234
|
+
this.log(`🗑️ GC: Freed ${freed.toFixed(2)}MB (${before.toFixed(2)}MB → ${after.toFixed(2)}MB)`);
|
|
235
|
+
return true;
|
|
236
|
+
}
|
|
237
|
+
return false;
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* Internal logging method - writes to framework log only
|
|
241
|
+
*/
|
|
242
|
+
log(message) {
|
|
243
|
+
// Write to framework activity log instead of console
|
|
244
|
+
try {
|
|
245
|
+
const fs = require("fs");
|
|
246
|
+
const logDir = "./.opencode/logs";
|
|
247
|
+
const logFile = `${logDir}/memory-monitor-${new Date().toISOString().split("T")[0]}.log`;
|
|
248
|
+
if (!fs.existsSync(logDir)) {
|
|
249
|
+
fs.mkdirSync(logDir, { recursive: true });
|
|
250
|
+
}
|
|
251
|
+
const logEntry = `[${new Date().toISOString()}] ${message}\n`;
|
|
252
|
+
fs.appendFileSync(logFile, logEntry);
|
|
253
|
+
}
|
|
254
|
+
catch (error) {
|
|
255
|
+
// Silent fail - don't spam console with logging errors
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
// Export singleton instance
|
|
260
|
+
export const memoryMonitor = new MemoryMonitor();
|
|
261
|
+
// Helper functions
|
|
262
|
+
export function getMemoryUsage() {
|
|
263
|
+
return memoryMonitor.getCurrentStats();
|
|
264
|
+
}
|
|
265
|
+
export function logMemoryUsage() {
|
|
266
|
+
const stats = getMemoryUsage();
|
|
267
|
+
console.log(`🧠 Memory Usage: ${stats.heapUsed}MB heap, ${stats.heapTotal}MB total, ${stats.external}MB external`);
|
|
268
|
+
}
|
|
269
|
+
export function checkMemoryHealth() {
|
|
270
|
+
const summary = memoryMonitor.getSummary();
|
|
271
|
+
const issues = [];
|
|
272
|
+
if (summary.current.heapUsed > 300) {
|
|
273
|
+
issues.push(`High heap usage: ${summary.current.heapUsed}MB`);
|
|
274
|
+
}
|
|
275
|
+
if (summary.trend === "increasing") {
|
|
276
|
+
issues.push("Memory usage trending upward");
|
|
277
|
+
}
|
|
278
|
+
return {
|
|
279
|
+
healthy: issues.length === 0,
|
|
280
|
+
issues,
|
|
281
|
+
};
|
|
282
|
+
}
|
|
283
|
+
//# sourceMappingURL=memory-monitor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"memory-monitor.js","sourceRoot":"","sources":["../../../src/monitoring/memory-monitor.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* StringRay Post-Processor - Core Infrastructure
|
|
3
|
+
*
|
|
4
|
+
* Automated CI/CD loop orchestration: commit → push → monitor → fix → redeploy → monitor
|
|
5
|
+
* Provides systematic error prevention and deployment automation.
|
|
6
|
+
*
|
|
7
|
+
* @version 1.0.0
|
|
8
|
+
* @since 2026-01-13
|
|
9
|
+
*/
|
|
10
|
+
import { StringRayStateManager } from "../state/state-manager.js";
|
|
11
|
+
import { SessionMonitor } from "../session/session-monitor.js";
|
|
12
|
+
import { PostProcessorConfig, PostProcessorResult, PostProcessorContext } from "./types.js";
|
|
13
|
+
export declare class PostProcessor {
|
|
14
|
+
private stateManager;
|
|
15
|
+
private sessionMonitor;
|
|
16
|
+
private config;
|
|
17
|
+
private monitoringEngine;
|
|
18
|
+
private failureAnalysisEngine;
|
|
19
|
+
private autoFixEngine;
|
|
20
|
+
private fixValidator;
|
|
21
|
+
private reportValidator;
|
|
22
|
+
private redeployCoordinator;
|
|
23
|
+
private escalationEngine;
|
|
24
|
+
private successHandler;
|
|
25
|
+
private triggers;
|
|
26
|
+
constructor(stateManager: StringRayStateManager, sessionMonitor?: SessionMonitor | null, config?: Partial<PostProcessorConfig>);
|
|
27
|
+
/**
|
|
28
|
+
* Generate automated framework report if conditions are met
|
|
29
|
+
*/
|
|
30
|
+
private generateFrameworkReport;
|
|
31
|
+
/**
|
|
32
|
+
* Calculate complexity score for automated report triggering
|
|
33
|
+
*/
|
|
34
|
+
private calculateComplexityScore;
|
|
35
|
+
/**
|
|
36
|
+
* Validate generated reports for hidden issues
|
|
37
|
+
*/
|
|
38
|
+
private validateGeneratedReport;
|
|
39
|
+
/**
|
|
40
|
+
* Clean up old reports based on retention policy
|
|
41
|
+
*/
|
|
42
|
+
private cleanupOldReports;
|
|
43
|
+
/**
|
|
44
|
+
* Initialize the post-processor system
|
|
45
|
+
*/
|
|
46
|
+
initialize(): Promise<void>;
|
|
47
|
+
/**
|
|
48
|
+
* Validate architectural compliance against codex rules
|
|
49
|
+
*/
|
|
50
|
+
private validateArchitecturalCompliance;
|
|
51
|
+
private checkSystemIntegrity;
|
|
52
|
+
private checkIntegrationTesting;
|
|
53
|
+
private checkPathResolution;
|
|
54
|
+
private checkFeatureCompleteness;
|
|
55
|
+
/**
|
|
56
|
+
* Rule 50: Path Analysis Guidelines Enforcement
|
|
57
|
+
* Ensures AIs follow path resolution guidelines for all write/edit operations
|
|
58
|
+
* Covers all 3 types of path violations from PATH_RESOLUTION_ANALYSIS.md
|
|
59
|
+
*/
|
|
60
|
+
private checkPathAnalysisGuidelines;
|
|
61
|
+
/**
|
|
62
|
+
* Execute the complete post-processor loop
|
|
63
|
+
*/
|
|
64
|
+
executePostProcessorLoop(context: PostProcessorContext): Promise<PostProcessorResult>;
|
|
65
|
+
/**
|
|
66
|
+
* Execute the monitoring loop until success or max attempts
|
|
67
|
+
*/
|
|
68
|
+
private executeMonitoringLoop;
|
|
69
|
+
/**
|
|
70
|
+
* Redeploy after applying fixes using the RedeployCoordinator
|
|
71
|
+
*/
|
|
72
|
+
private redeployWithFixes;
|
|
73
|
+
/**
|
|
74
|
+
* Attempt to apply automatic fixes
|
|
75
|
+
*/
|
|
76
|
+
private attemptAutoFix;
|
|
77
|
+
/**
|
|
78
|
+
* Escalate to manual intervention
|
|
79
|
+
*/
|
|
80
|
+
private escalateToManualIntervention;
|
|
81
|
+
/**
|
|
82
|
+
* Wait before retry with exponential backoff
|
|
83
|
+
*/
|
|
84
|
+
private waitBeforeRetry;
|
|
85
|
+
/**
|
|
86
|
+
* Get post-processor status
|
|
87
|
+
*/
|
|
88
|
+
getStatus(): Promise<any>;
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=PostProcessor.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PostProcessor.d.ts","sourceRoot":"","sources":["../../../src/postprocessor/PostProcessor.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAGH,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,+BAA+B,CAAC;AAW/D,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,oBAAoB,EACrB,MAAM,YAAY,CAAC;AAKpB,qBAAa,aAAa;IAiBtB,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,cAAc;IAjBxB,OAAO,CAAC,MAAM,CAAsB;IACpC,OAAO,CAAC,gBAAgB,CAAgC;IACxD,OAAO,CAAC,qBAAqB,CAAwB;IACrD,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,YAAY,CAAe;IACnC,OAAO,CAAC,eAAe,CAAyB;IAChD,OAAO,CAAC,mBAAmB,CAAsB;IACjD,OAAO,CAAC,gBAAgB,CAAmB;IAC3C,OAAO,CAAC,cAAc,CAAiB;IACvC,OAAO,CAAC,QAAQ,CAId;gBAGQ,YAAY,EAAE,qBAAqB,EACnC,cAAc,GAAE,cAAc,GAAG,IAAW,EACpD,MAAM,GAAE,OAAO,CAAC,mBAAmB,CAAM;IAiC3C;;OAEG;YACW,uBAAuB;IA+CrC;;OAEG;IACH,OAAO,CAAC,wBAAwB;IA+BhC;;OAEG;YACW,uBAAuB;IA8BrC;;OAEG;YACW,iBAAiB;IA0B/B;;OAEG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IA4BjC;;OAEG;YACW,+BAA+B;YAyD/B,oBAAoB;YAiBpB,uBAAuB;YAWvB,mBAAmB;YA6BnB,wBAAwB;IActC;;;;OAIG;YACW,2BAA2B;IA6IzC;;OAEG;IACG,wBAAwB,CAC5B,OAAO,EAAE,oBAAoB,GAC5B,OAAO,CAAC,mBAAmB,CAAC;IAsE/B;;OAEG;YACW,qBAAqB;IAiJnC;;OAEG;YACW,iBAAiB;IAmB/B;;OAEG;YACW,cAAc;IAQ5B;;OAEG;YACW,4BAA4B;IA4B1C;;OAEG;YACW,eAAe;IAQ7B;;OAEG;IACG,SAAS,IAAI,OAAO,CAAC,GAAG,CAAC;CAOhC"}
|