mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-08 06:33:21 +00:00
27 lines
911 B
TypeScript
27 lines
911 B
TypeScript
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"
|
|
import { LocationQuery, locationQueryOpenApi } from "./location"
|
|
|
|
export const CommandGroup = HttpApiGroup.make("server.command")
|
|
.add(
|
|
HttpApiEndpoint.get("command.list", "/api/command", {
|
|
query: LocationQuery,
|
|
success: Location.response(Schema.Array(Command.Info)),
|
|
})
|
|
.annotateMerge(locationQueryOpenApi)
|
|
.annotateMerge(
|
|
OpenApi.annotations({
|
|
identifier: "v2.command.list",
|
|
summary: "List commands",
|
|
description: "Retrieve currently registered commands.",
|
|
}),
|
|
),
|
|
)
|
|
.annotateMerge(
|
|
OpenApi.annotations({
|
|
title: "commands",
|
|
description: "Experimental command routes.",
|
|
}),
|
|
)
|