Files
Genarrative/apps/ai-game-creator-shell/src-tauri/src/agent.rs
T
lhk229 085181c795
Project CI / AI game creator shell Rust smoke (pull_request) Successful in 1m55s
Project CI / AI game creator shell Rust crates (pull_request) Successful in 1m21s
Project CI / AI game creator shell Rust lane 2/2 (pull_request) Successful in 9m58s
Project CI / AI game creator shell Rust lane 1/2 (pull_request) Successful in 10m40s
Project CI / Backend tests (pull_request) Successful in 5m37s
Project CI / Native shell tests (pull_request) Successful in 7m30s
Project CI / Repository checks (pull_request) Successful in 3m46s
Project CI / AI game creator shell web tests (pull_request) Successful in 3m22s
Project CI / Frontend tests (pull_request) Successful in 4m54s
Project CI / AI game creator shell Rust crates (push) Successful in 2m57s
Project CI / AI game creator shell Rust smoke (push) Successful in 3m51s
Project CI / Backend tests (push) Failing after 3m47s
Project CI / AI game creator shell Rust lane 2/2 (push) Successful in 9m22s
Project CI / Native shell tests (push) Successful in 6m12s
Project CI / AI game creator shell Rust lane 1/2 (push) Successful in 10m13s
Project CI / Frontend tests (push) Successful in 3m51s
Project CI / Repository checks (push) Successful in 2m44s
Project CI / AI game creator shell web tests (push) Successful in 2m25s
修复策划附件导入工作区并解除资源清单耦合
新增策划工作区文件导入命令,支持同名另存并保留文件字节
首页和聊天框附件直接导入策划工作区,脱离游戏资源清单与回合附件
导入期间暂缓发送、阶段操作和游戏制作切换,保留逐文件失败提示
补充导入、刷新与切换回归测试,同步技术方案和共享约定
2026-09-21 22:49:21 +08:00

148 lines
4.9 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 codex_provider_proxy;
mod design_runtime;
pub(crate) mod design_tools;
mod direct_codex_attachments;
mod direct_codex_audit;
mod direct_codex_user_item;
mod direct_execution;
pub(crate) use direct_execution::WritePermit;
mod direct_delivery;
mod direct_paid_submission;
mod direct_patch;
pub(crate) use direct_paid_submission::ensure_direct_paid_submission_dispatch;
#[cfg(test)]
pub(crate) use direct_paid_submission::with_test_direct_paid_submission_scope;
mod direct_project_context;
mod direct_project_history;
mod direct_project_turn_history;
mod direct_runtime;
mod direct_thread_manager;
mod direct_thread_wire;
mod direct_tool_bridge;
mod direct_tool_calls;
mod direct_tools_mcp;
mod direct_turn_metrics;
mod direct_turn_stream;
mod direct_validation;
mod generation;
mod interaction;
mod prompt;
mod runtime_actions;
mod runtime_adapter;
mod runtime_driver;
mod runtime_error;
mod runtime_protocol;
mod runtime_state;
mod runtime_tools;
mod skill_pack;
use codex_app_server::*;
pub(crate) use codex_app_server::{
cancel_direct_codex_turn_at,
direct_codex_canonical_project_identity_for_commands as direct_codex_canonical_project_identity,
direct_game_creator_codex_chat_at, direct_game_creator_home_codex_chat,
direct_thread_id_for_project, DirectTurnCancelView,
};
use codex_cli::*;
pub(crate) use codex_cli::{
game_creator_codex_cli_executable_path, game_creator_codex_cli_version_identity,
};
pub(crate) use codex_provider_proxy::*;
pub(crate) use design_runtime::*;
pub(crate) use direct_codex_attachments::*;
pub(crate) use direct_codex_audit::*;
pub(crate) use direct_codex_user_item::*;
pub(crate) use direct_project_history::*;
pub(crate) use direct_project_turn_history::*;
pub(crate) use direct_runtime::*;
pub(crate) use direct_thread_manager::*;
pub(crate) use direct_thread_wire::*;
pub(crate) use direct_tool_bridge::*;
pub(crate) use direct_tool_calls::*;
pub(crate) use direct_tools_mcp::*;
pub(crate) use direct_turn_metrics::*;
pub(crate) use direct_turn_stream::*;
pub(crate) use direct_validation::DirectValidationConfig;
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_error::*;
pub(crate) use runtime_protocol::*;
pub(crate) use runtime_state::*;
pub(crate) use runtime_tools::*;
pub(crate) use skill_pack::*;
pub(crate) fn shutdown_game_creator_codex_app_servers() -> Result<(), String> {
shutdown_game_creator_codex_app_servers_impl()
}
/// Execute a UI editor provider request under the active Agent Runtime
/// identity. UI State remains the persistence authority; this adapter only
/// routes the semantic request through the same mode/lifecycle/retry boundary
/// used by the autonomous Agent.
pub(crate) async fn request_game_creator_ui_editor_llm_at(
root: &Path,
agent_id: &str,
run_id: &str,
operation: &str,
request: LlmRunRequest,
) -> Result<platform_llm::LlmRunResponse, String> {
let config = load_game_creator_app_config()?;
let api_kind = parse_game_creator_llm_api_kind(&config.llm.api_kind)?;
let request = request
.with_api_kind(api_kind)
.with_model(config.llm.model.clone())
.with_request_timeout_ms(config.llm.request_timeout_ms);
let request = apply_game_creator_llm_reasoning_effort(request, &config.llm)?;
let snapshot = {
let _lock = acquire_game_creator_agent_runtime_project_write_lock_with_wait(
root,
"runtime.provider_request.capture.ui_editor",
)?;
let task = read_latest_game_creator_agent_runtime_task_by_run_id(root, agent_id, run_id)?
.ok_or_else(|| {
"UI 编辑器 Provider 请求缺少当前 Agent run 的持久任务".to_string()
})?;
let runtime = read_game_creator_agent_runtime_at(root, agent_id)?.state;
capture_game_creator_agent_runtime_provider_request_snapshot_at_locked(
root,
agent_id,
&task.session_id,
run_id,
operation,
&format!("ui-editor-{operation}-{}", task.task_id),
runtime.applied_steer_cursor,
)?
};
match request_game_creator_agent_runtime_llm_with_transient_retries(
root,
&snapshot,
&config.llm,
"llm",
operation,
&request,
)
.await?
{
Some(response) => Ok(response),
None => {
Err("UI 编辑器 Provider 请求未返回结果(当前 Runtime 正在等待恢复或确认)".to_string())
}
}
}