MCPcopy Create free account
hub / github.com/compozy/agh / agentSoulHistoryValues

Function agentSoulHistoryValues

internal/cli/client.go:5846–5855  ·  view source on GitHub ↗
(request AgentSoulHistoryRequest)

Source from the content-addressed store, hash-verified

5844}
5845
5846func agentSoulHistoryValues(request AgentSoulHistoryRequest) url.Values {
5847 values := agentValues(AgentQuery{Workspace: request.WorkspaceID})
5848 if request.Limit > 0 {
5849 values.Set("limit", strconv.Itoa(request.Limit))
5850 }
5851 if trimmed := strings.TrimSpace(request.Cursor); trimmed != "" {
5852 values.Set("cursor", trimmed)
5853 }
5854 return values
5855}
5856
5857func agentHeartbeatHistoryValues(request AgentHeartbeatHistoryRequest) url.Values {
5858 values := agentValues(AgentQuery{Workspace: request.WorkspaceID})

Callers 1

ListAgentSoulHistoryMethod · 0.85

Calls 2

agentValuesFunction · 0.85
SetMethod · 0.45

Tested by

no test coverage detected