mirror of
https://github.com/sst/opencode.git
synced 2025-08-06 06:18:02 +00:00
109 lines
4.6 KiB
Go
109 lines
4.6 KiB
Go
package agent
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/sst/opencode/internal/config"
|
|
"github.com/sst/opencode/internal/llm/tools"
|
|
"github.com/sst/opencode/internal/lsp"
|
|
"github.com/sst/opencode/internal/message"
|
|
"github.com/sst/opencode/internal/session"
|
|
)
|
|
|
|
type agentTool struct {
|
|
sessions session.Service
|
|
messages message.Service
|
|
lspClients map[string]*lsp.Client
|
|
}
|
|
|
|
const (
|
|
AgentToolName = "agent"
|
|
)
|
|
|
|
type AgentParams struct {
|
|
Prompt string `json:"prompt"`
|
|
}
|
|
|
|
func (b *agentTool) Info() tools.ToolInfo {
|
|
return tools.ToolInfo{
|
|
Name: AgentToolName,
|
|
Description: "Launch a new agent that has access to the following tools: GlobTool, GrepTool, LS, View. When you are searching for a keyword or file and are not confident that you will find the right match on the first try, use the Agent tool to perform the search for you. For example:\n\n- If you are searching for a keyword like \"config\" or \"logger\", or for questions like \"which file does X?\", the Agent tool is strongly recommended\n- If you want to read a specific file path, use the View or GlobTool tool instead of the Agent tool, to find the match more quickly\n- If you are searching for a specific class definition like \"class Foo\", use the GlobTool tool instead, to find the match more quickly\n\nUsage notes:\n1. Launch multiple agents concurrently whenever possible, to maximize performance; to do that, use a single message with multiple tool uses\n2. When the agent is done, it will return a single message back to you. The result returned by the agent is not visible to the user. To show the user the result, you should send a text message back to the user with a concise summary of the result.\n3. Each agent invocation is stateless. You will not be able to send additional messages to the agent, nor will the agent be able to communicate with you outside of its final report. Therefore, your prompt should contain a highly detailed task description for the agent to perform autonomously and you should specify exactly what information the agent should return back to you in its final and only message to you.\n4. The agent's outputs should generally be trusted\n5. IMPORTANT: The agent can not use Bash, Replace, Edit, so can not modify files. If you want to use these tools, use them directly instead of going through the agent.",
|
|
Parameters: map[string]any{
|
|
"prompt": map[string]any{
|
|
"type": "string",
|
|
"description": "The task for the agent to perform",
|
|
},
|
|
},
|
|
Required: []string{"prompt"},
|
|
}
|
|
}
|
|
|
|
func (b *agentTool) Run(ctx context.Context, call tools.ToolCall) (tools.ToolResponse, error) {
|
|
var params AgentParams
|
|
if err := json.Unmarshal([]byte(call.Input), ¶ms); err != nil {
|
|
return tools.NewTextErrorResponse(fmt.Sprintf("error parsing parameters: %s", err)), nil
|
|
}
|
|
if params.Prompt == "" {
|
|
return tools.NewTextErrorResponse("prompt is required"), nil
|
|
}
|
|
|
|
sessionID, messageID := tools.GetContextValues(ctx)
|
|
if sessionID == "" || messageID == "" {
|
|
return tools.ToolResponse{}, fmt.Errorf("session_id and message_id are required")
|
|
}
|
|
|
|
agent, err := NewAgent(config.AgentTask, b.sessions, b.messages, TaskAgentTools(b.lspClients))
|
|
if err != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error creating agent: %s", err)
|
|
}
|
|
|
|
session, err := b.sessions.CreateTaskSession(ctx, call.ID, sessionID, "New Agent Session")
|
|
if err != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error creating session: %s", err)
|
|
}
|
|
|
|
done, err := agent.Run(ctx, session.ID, params.Prompt)
|
|
if err != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error generating agent: %s", err)
|
|
}
|
|
result := <-done
|
|
if result.Err() != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error generating agent: %s", result.Err())
|
|
}
|
|
|
|
response := result.Response()
|
|
if response.Role != message.Assistant {
|
|
return tools.NewTextErrorResponse("no response"), nil
|
|
}
|
|
|
|
updatedSession, err := b.sessions.Get(ctx, session.ID)
|
|
if err != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error getting session: %s", err)
|
|
}
|
|
parentSession, err := b.sessions.Get(ctx, sessionID)
|
|
if err != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error getting parent session: %s", err)
|
|
}
|
|
|
|
parentSession.Cost += updatedSession.Cost
|
|
|
|
_, err = b.sessions.Update(ctx, parentSession)
|
|
if err != nil {
|
|
return tools.ToolResponse{}, fmt.Errorf("error saving parent session: %s", err)
|
|
}
|
|
return tools.NewTextResponse(response.Content().String()), nil
|
|
}
|
|
|
|
func NewAgentTool(
|
|
Sessions session.Service,
|
|
Messages message.Service,
|
|
LspClients map[string]*lsp.Client,
|
|
) tools.BaseTool {
|
|
return &agentTool{
|
|
sessions: Sessions,
|
|
messages: Messages,
|
|
lspClients: LspClients,
|
|
}
|
|
}
|