refactor(core): consolidate tool architecture
This commit is contained in:
parent
0fd73a2976
commit
8db7487c89
466 changed files with 9405 additions and 11071 deletions
|
|
@ -3,6 +3,7 @@ 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"
|
||||
import { AgentNotFoundError } from "../errors.js"
|
||||
|
||||
export const AgentGroup = HttpApiGroup.make("server.agent")
|
||||
.add(
|
||||
|
|
@ -19,4 +20,20 @@ export const AgentGroup = HttpApiGroup.make("server.agent")
|
|||
}),
|
||||
),
|
||||
)
|
||||
.add(
|
||||
HttpApiEndpoint.get("agent.get", "/api/agent/:agentID", {
|
||||
params: { agentID: Agent.ID },
|
||||
query: LocationQuery,
|
||||
success: Location.response(Agent.Info),
|
||||
error: AgentNotFoundError,
|
||||
})
|
||||
.annotateMerge(locationQueryOpenApi)
|
||||
.annotateMerge(
|
||||
OpenApi.annotations({
|
||||
identifier: "v2.agent.get",
|
||||
summary: "Get agent",
|
||||
description: "Retrieve a single currently registered agent.",
|
||||
}),
|
||||
),
|
||||
)
|
||||
.annotateMerge(OpenApi.annotations({ title: "agent" }))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue