From 34a3097317a703e549fa44b1897567ee29049bbd Mon Sep 17 00:00:00 2001 From: Yichen Jiang Date: Mon, 24 Aug 2026 10:29:18 +0800 Subject: [PATCH] fix(preview): point the config-tree declaration at the plugin-bundled presets The worker-preview pack landed on master declaring dsh.configTrees against apps/cli/config/agent-presets, which this branch moved into packages/preset/agent-presets/presets. The VFS mount and the worker-side roster patch keep their paths; only the source directory follows the move. --- apps/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/package.json b/apps/cli/package.json index f572b2b80b..49f7fc84d1 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -19,7 +19,7 @@ ], "dsh": { "configTrees": [ - { "mount": "config/agent-presets", "path": "config/agent-presets", "scanRoster": true } + { "mount": "config/agent-presets", "path": "../../packages/preset/agent-presets/presets", "scanRoster": true } ] }, "license": "MIT",