chore: wave-0 baseline (Tauri2+React shell, platform detect, fake catalog)

This commit is contained in:
AgentDock 施工员
2026-08-25 00:21:13 +08:00
commit 296843215f
137 changed files with 6696 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
[package]
name = "agentdock-config"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
+18
View File
@@ -0,0 +1,18 @@
//! agentdock-config —— 配置读写层(架构 §6)
//!
//! 职责:原子写入 + 自动备份、多格式统一编解码(ConfigCodec trait
//! toml / json / jsonc / yaml / env / crushrc)。
//! Wave 0:空骨架,随 Wave 1/2 落地。
/// 配置层能力标记(占位)
pub const LAYER: &str = "agentdock-config";
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn layer_identity() {
assert_eq!(LAYER, "agentdock-config");
}
}