chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-29 17:58:20 +00:00
parent d4fd528152
commit d6e54e9042
17 changed files with 84 additions and 21 deletions
+4 -3
View File
@@ -17,9 +17,10 @@ import { Skill } from "../../src/skill"
import { Truncate } from "../../src/tool/truncate"
const agentLayer = (flags: Partial<RuntimeFlags.Info> = {}) =>
LayerNode.compile(LayerNode.group([Agent.node, Plugin.node, Provider.node, Auth.node, Config.node, Skill.node, RuntimeFlags.node]), [
[RuntimeFlags.node, RuntimeFlags.layer(flags)],
])
LayerNode.compile(
LayerNode.group([Agent.node, Plugin.node, Provider.node, Auth.node, Config.node, Skill.node, RuntimeFlags.node]),
[[RuntimeFlags.node, RuntimeFlags.layer(flags)]],
)
const it = testEffect(agentLayer())