15c227cebf
完善Codex CLI、App Server、ConPTY与进程会话在Windows下的发现、启动、恢复和退出行为 修复Agent Runtime、Provider重试、项目写锁及工具交接账本的并发与跨测试串线问题 补齐配置目录、路径脱敏、原子写入、浏览器探测和本地Provider smoke的跨平台兼容 增强Goal Contract、自动策略、资源生成及运行态恢复的契约和回归测试 更新AI游戏创作智能体App技术文档中的Windows稳定性说明 验证AGC开发态、Release打包、打包后GUI运行及完整agc:check门禁
41 lines
1.1 KiB
Rust
41 lines
1.1 KiB
Rust
use super::*;
|
|
use crate::provider_handoff;
|
|
use crate::provider_retry::{
|
|
self, AgentRuntimeProviderRetryIdentity, AgentRuntimeProviderRetryRecord,
|
|
};
|
|
use crate::tool_plan_handoff;
|
|
use sha2::{Digest, Sha256};
|
|
use std::collections::BTreeSet;
|
|
use std::io::{Seek, SeekFrom};
|
|
use std::sync::atomic::{AtomicBool, AtomicU64, Ordering};
|
|
|
|
mod codex_app_server;
|
|
mod codex_cli;
|
|
mod generation;
|
|
mod interaction;
|
|
mod prompt;
|
|
mod runtime_actions;
|
|
mod runtime_adapter;
|
|
mod runtime_driver;
|
|
mod runtime_protocol;
|
|
mod runtime_state;
|
|
mod runtime_tools;
|
|
use codex_app_server::*;
|
|
use codex_cli::*;
|
|
pub(crate) use codex_cli::{
|
|
game_creator_codex_cli_executable_path, game_creator_codex_cli_version_identity,
|
|
};
|
|
pub(crate) use generation::*;
|
|
pub(crate) use interaction::*;
|
|
pub(crate) use prompt::*;
|
|
pub(crate) use runtime_actions::*;
|
|
pub(crate) use runtime_adapter::*;
|
|
pub(crate) use runtime_driver::*;
|
|
pub(crate) use runtime_protocol::*;
|
|
pub(crate) use runtime_state::*;
|
|
pub(crate) use runtime_tools::*;
|
|
|
|
pub(crate) fn shutdown_game_creator_codex_app_servers() -> Result<(), String> {
|
|
shutdown_game_creator_codex_app_servers_impl()
|
|
}
|