新增: EnvSnapshot 环境感知注入 system_prompt

- EnvSnapshot 结构: OS/shell/工具版本/编码/路径分隔符
- OnceLock 全局缓存,启动时 spawn_blocking 探测一次
- to_prompt() 生成环境摘要注入 agentic loop system_prompt
- 探测: Windows 注册表/macOS sw_vers/Linux os-release + chcp 编码
- 工具版本: python/node/rust/go/docker/git 逐个探测,失败不阻塞
- 8 个单测覆盖版本号解析 + 平台 fallback
This commit is contained in:
2026-06-28 14:05:16 +08:00
parent 7adaf97377
commit 4a396f4f88
3 changed files with 445 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
//! df-execute: 执行运行时 — Shell
//! df-execute: 执行运行时 — Shell + 环境感知
pub mod env_snapshot;
pub mod shell;
pub use env_snapshot::EnvSnapshot;