/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/tool/skill.ts
109 строк
4 KB
James Long
refactor(core): remove tool layer exports (#34622)
30 июн 2026, 18:18
Не верифицирован
30 июн 2026, 18:18
5691f36
Код
Авторство
О чём код?
export * as SkillTool from "./skill" import path from "path" import { ToolFailure } from "@opencode-ai/llm" import { Effect, Layer, Schema } from "effect" import { makeLocationNode } from "../effect/app-node" import { FSUtil } from "../fs-util" import { SkillV2 } from "../skill" import { PermissionV2 } from "../permission" import { ToolRegistry } from "./registry" import { Tool } from "./tool" import { Tools } from "./tools" export const name = "skill" const FILE_LIMIT = 10 export const Input = Schema.Struct({ name: Schema.String.annotate({ description: "The name of the skill from the available skills list" }), }) export const Output = Schema.Struct({ name: Schema.String, directory: Schema.String, output: Schema.String, }) export const description = [ "Load a specialized skill when the task at hand matches one of the available skills in the system context.", "", "Use this tool to inject the skill's instructions and resources into the current conversation. The output may contain detailed workflow guidance as well as references to scripts, files, etc. in the same directory as the skill.", "", "The skill name must match one of the available skills in the system context.", ].join("\n") export const toModelOutput = (skill: SkillV2.Info, files: ReadonlyArray<string>) => { const directory = path.dirname(skill.location) return [ `<skill_content name="${skill.name}">`, `# Skill: ${skill.name}`, "", skill.content.trim(), "", `Base directory for this skill: ${directory}`, "Relative paths in this skill (e.g., scripts/, reference/) are relative to this base directory.", "Note: file list is sampled.", "", "<skill_files>", ...files.map((file) => `<file>${file}</file>`), "</skill_files>", "</skill_content>", ].join("\n") } const unableToLoad = (name: string, error?: unknown) => new ToolFailure({ message: `Unable to load skill ${name}`, error }) const layer = Layer.effectDiscard( Effect.gen(function* () { const tools = yield* Tools.Service const fs = yield* FSUtil.Service const skills = yield* SkillV2.Service const permission = yield* PermissionV2.Service yield* tools .register({ [name]: Tool.make({ description, input: Input, output: Output, toModelOutput: ({ output }) => [{ type: "text", text: output.output }], execute: (input, context) => Effect.gen(function* () { const current = yield* skills.list() const skill = current.find((skill) => skill.name === input.name) if (!skill) return yield* unableToLoad(input.name) return yield* Effect.gen(function* () { yield* permission.assert({ action: name, resources: [skill.name], save: [skill.name], sessionID: context.sessionID, agent: context.agent, source: { type: "tool", messageID: context.assistantMessageID, callID: context.toolCallID }, }) const directory = path.dirname(skill.location) const files = path.basename(skill.location) === "SKILL.md" ? (yield* fs.glob("**/*", { cwd: directory, absolute: true, include: "file", dot: true })) .filter((file) => path.basename(file) !== "SKILL.md") .toSorted() .slice(0, FILE_LIMIT) : [] return { name: skill.name, directory, output: toModelOutput(skill, files), } }).pipe(Effect.mapError((error) => unableToLoad(input.name, error))) }), }), }) .pipe(Effect.orDie) }), ) export const node = makeLocationNode({ name: "tool/skill", layer, deps: [ToolRegistry.node, FSUtil.node, SkillV2.node, PermissionV2.node], })