AUTARCH v1.9 — remote monitoring, SSH manager, daemon, vault, cleanup
- Add Remote Monitoring Station with PIAP device profile system - Add SSH/SSHD manager with fail2ban integration - Add privileged daemon architecture for safe root operations - Add encrypted vault, HAL memory, HAL auto-analyst - Add network security suite, module creator, codex training - Add start.sh launcher script and GTK3 desktop launcher - Remove Output/ build artifacts, installer files, loose docs - Update .gitignore for runtime data and build artifacts - Update README for v1.9 with new launch method, screenshots, and features Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -360,6 +360,7 @@ function autoRefreshStatus() {
|
||||
}
|
||||
}
|
||||
}
|
||||
halAnalyze('Autonomy', JSON.stringify(data, null, 2), 'threat monitoring', 'defense');
|
||||
}).catch(() => {});
|
||||
}
|
||||
|
||||
@@ -414,6 +415,7 @@ function autoLoadModelsDetail() {
|
||||
</div>`;
|
||||
}
|
||||
container.innerHTML = html;
|
||||
halAnalyze('Autonomy', JSON.stringify(data, null, 2), 'threat monitoring', 'defense');
|
||||
});
|
||||
}
|
||||
|
||||
@@ -424,6 +426,7 @@ function autoLoadRules() {
|
||||
fetch('/autonomy/rules').then(r => r.json()).then(data => {
|
||||
_rules = data.rules || [];
|
||||
renderRules();
|
||||
halAnalyze('Autonomy', JSON.stringify(data, null, 2), 'threat monitoring', 'defense');
|
||||
});
|
||||
}
|
||||
|
||||
@@ -684,6 +687,7 @@ function autoLoadActivity() {
|
||||
fetch('/autonomy/activity?limit=100').then(r => r.json()).then(data => {
|
||||
renderActivity(data.entries || []);
|
||||
document.getElementById('activity-count').textContent = (data.total||0) + ' entries';
|
||||
halAnalyze('Autonomy', JSON.stringify(data, null, 2), 'threat monitoring', 'defense');
|
||||
});
|
||||
// Start SSE
|
||||
if (!_activitySSE) {
|
||||
|
||||
Reference in New Issue
Block a user