| import { Skill } from "@opencode-ai/schema/skill" | |
| import { Location } from "@opencode-ai/schema/location" | |
| import { Schema } from "effect" | |
| import { HttpApiEndpoint, HttpApiGroup, OpenApi } from "effect/unstable/httpapi" | |
| import { LocationQuery, locationQueryOpenApi } from "./location" | |
| export const SkillGroup = HttpApiGroup.make("server.skill") | |
| .add( | |
| HttpApiEndpoint.get("skill.list", "/api/skill", { | |
| query: LocationQuery, | |
| success: Location.response(Schema.Array(Skill.Info)), | |
| }) | |
| .annotateMerge(locationQueryOpenApi) | |
| .annotateMerge( | |
| OpenApi.annotations({ | |
| identifier: "v2.skill.list", | |
| summary: "List skills", | |
| description: "Retrieve currently registered skills.", | |
| }), | |
| ), | |
| ) | |
| .annotateMerge( | |
| OpenApi.annotations({ | |
| title: "skills", | |
| description: "Experimental skill routes.", | |
| }), | |
| ) | |