chore: generate

This commit is contained in:
opencode-agent[bot] 2026-06-27 18:11:37 +00:00
commit 41202819a4
3 changed files with 11 additions and 3 deletions

View file

@ -19,7 +19,10 @@ const provide = (directory: string) =>
Location.node,
makeLocationNode({
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: [],
}),
),

View file

@ -19,7 +19,10 @@ function provide(directory: string) {
Location.node,
makeLocationNode({
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: [],
}),
),

View file

@ -24,7 +24,9 @@ const discovery = Layer.succeed(
}),
)
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) {