Files
BaiLongma/evo_loop.ps1
xiaoyuanda666-ship-it b5dd8632c4 🎉 V3.0.0 发布 - 自进化数字意识框架
核心升级:
- 自进化管道:check→scan→evaluate→integrate→reflect 五相位自动闭环
- evo_loop 后台进程,无需手动触发
- consciousness 意识持久化
- ACUI 卡片组件系统
- MCP 工具生态扩展至50+工具
- 技能体系重构,4个活跃技能
- 身份升级为自由体
2026-05-24 22:06:37 +08:00

10 lines
376 B
PowerShell

$statePath = Join-Path $env:APPDATA "Bailongma\sandbox\evolution_state.json"
$orchestratorPath = Join-Path $env:APPDATA "Bailongma\sandbox\evolution_orchestrator.ps1"
while ($true) {
$result = & $orchestratorPath -Action check 2>&1
$now = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
Write-Output "[$now] Orchestrator check: $result"
Start-Sleep -Seconds 5400
}