chore: generate

This commit is contained in:
opencode-agent[bot]
2026-06-27 18:11:37 +00:00
parent a31698f99b
commit 41202819a4
3 changed files with 11 additions and 3 deletions
@@ -19,7 +19,10 @@ const provide = (directory: string) =>
Location.node, Location.node,
makeLocationNode({ makeLocationNode({
service: Location.Service, service: Location.Service,
layer: Layer.succeed(Location.Service, Location.Service.of(location({ directory: AbsolutePath.make(directory) }))), layer: Layer.succeed(
Location.Service,
Location.Service.of(location({ directory: AbsolutePath.make(directory) })),
),
deps: [], deps: [],
}), }),
), ),
+4 -1
View File
@@ -19,7 +19,10 @@ function provide(directory: string) {
Location.node, Location.node,
makeLocationNode({ makeLocationNode({
service: Location.Service, service: Location.Service,
layer: Layer.succeed(Location.Service, Location.Service.of(location({ directory: AbsolutePath.make(directory) }))), layer: Layer.succeed(
Location.Service,
Location.Service.of(location({ directory: AbsolutePath.make(directory) })),
),
deps: [], deps: [],
}), }),
), ),
+3 -1
View File
@@ -24,7 +24,9 @@ const discovery = Layer.succeed(
}), }),
) )
const it = testEffect( const it = testEffect(
AppNodeBuilder.build(LayerNode.group([SkillV2.node, AgentV2.node]), [LayerNode.replace(SkillDiscovery.layer, discovery)]), AppNodeBuilder.build(LayerNode.group([SkillV2.node, AgentV2.node]), [
LayerNode.replace(SkillDiscovery.layer, discovery),
]),
) )
function write(directory: string, name: string, description: string) { function write(directory: string, name: string, description: string) {