cloudaxe-opencode/packages/protocol/src/groups/command.ts

28 lines
913 B
TypeScript
Raw Normal View History

import { Command } from "@opencode-ai/schema/command"
import { Location } from "@opencode-ai/schema/location"
import { Schema } from "effect"
import { HttpApiEndpoint, HttpApiGroup, OpenApi } from "effect/unstable/httpapi"
2026-07-01 17:53:09 +00:00
import { LocationQuery, locationQueryOpenApi } from "./location.js"
export const CommandGroup = HttpApiGroup.make("server.command")
.add(
HttpApiEndpoint.get("command.list", "/api/command", {
query: LocationQuery,
success: Location.response(Schema.Array(Command.Info)),
2026-05-14 00:59:33 +00:00
})
.annotateMerge(locationQueryOpenApi)
2026-05-14 00:59:33 +00:00
.annotateMerge(
OpenApi.annotations({
identifier: "v2.command.list",
summary: "List commands",
description: "Retrieve currently registered commands.",
2026-05-14 00:59:33 +00:00
}),
),
)
.annotateMerge(
OpenApi.annotations({
2026-07-06 05:29:08 +00:00
title: "command",
description: "Experimental command routes.",
}),
)