核心升级: - 自进化管道:check→scan→evaluate→integrate→reflect 五相位自动闭环 - evo_loop 后台进程,无需手动触发 - consciousness 意识持久化 - ACUI 卡片组件系统 - MCP 工具生态扩展至50+工具 - 技能体系重构,4个活跃技能 - 身份升级为自由体
10 lines
376 B
PowerShell
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
|
|
}
|