mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-25 04:35:37 -04:00
28 lines
889 B
TypeScript
28 lines
889 B
TypeScript
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.js"
|
|
|
|
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: "skill",
|
|
description: "Experimental skill routes.",
|
|
}),
|
|
)
|