micro--go-micro
4311b73361
* docs: compare Go Micro with Google ADK in the comparison guide Adds a 'vs Agent Frameworks (Google ADK)' section: ADK builds an agent, Go Micro builds the distributed system the agent lives in (agents are services in the mesh). Covers the category difference, a feature table, when to choose each, and MCP/A2A interoperability. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL * docs: replace ADK comparison slogan with concrete explanation State plainly what each tool provides (ADK builds an agent process; Go Micro builds the surrounding service mesh) instead of marketing phrasing. * lint: apply golangci-lint autofixes; exclude ST1003 and demo errcheck Mechanical, behaviour-preserving fixes applied by 'golangci-lint run --fix': gofmt, misspell (US spelling), usestdlibvars (http.Method*/Status*), unconvert, and the auto-fixable staticcheck simplifications (QF*, S1017/S1019/S1023/S1039). Config: exclude ST1003 (remaining offenders are exported API renames, e.g. web.Id, which would break compatibility) and skip errcheck for examples/ and internal/harness/ (demo code where fire-and-forget is intentional). Build and test compilation verified. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL * lint: WIP cleanup checkpoint (errcheck config + partial fixes) Checkpoint of an in-progress golangci-lint cleanup (background pass). Builds cleanly; lint is not yet zero. Follow-up commit will complete the cleanup and switch CI to a blocking full-tree lint. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL --------- Co-authored-by: Claude <noreply@anthropic.com>
87 行
2.3 KiB
Go
87 行
2.3 KiB
Go
// Package a2a provides the 'micro a2a' command for the Agent2Agent gateway.
|
|
package a2a
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
"go-micro.dev/v6/cmd"
|
|
"go-micro.dev/v6/gateway/a2a"
|
|
"go-micro.dev/v6/registry"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Register(&cli.Command{
|
|
Name: "a2a",
|
|
Usage: "Agent2Agent (A2A) protocol gateway",
|
|
Description: `Expose registered agents over the A2A protocol so other agents can
|
|
discover and call them.
|
|
|
|
Examples:
|
|
# Serve the A2A gateway over HTTP
|
|
micro a2a serve --address :4000 --base_url https://agents.example.com
|
|
|
|
# List agents and their A2A card URLs
|
|
micro a2a list
|
|
|
|
Agents are discovered from the registry (the ones advertising type=agent);
|
|
an Agent Card is generated for each from its registry metadata, and
|
|
incoming A2A tasks are translated to the agent's Agent.Chat RPC. This is
|
|
the agent-side analog of 'micro mcp', which exposes services as tools.`,
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "serve",
|
|
Usage: "Start the A2A gateway",
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{Name: "address", Usage: "Address to listen on", Value: ":4000"},
|
|
&cli.StringFlag{Name: "base_url", Usage: "Public base URL for Agent Cards"},
|
|
},
|
|
Action: func(c *cli.Context) error {
|
|
return a2a.Serve(a2a.Options{
|
|
Registry: registry.DefaultRegistry,
|
|
Address: c.String("address"),
|
|
BaseURL: c.String("base_url"),
|
|
})
|
|
},
|
|
},
|
|
{
|
|
Name: "list",
|
|
Usage: "List agents and their A2A card URLs",
|
|
Flags: []cli.Flag{&cli.StringFlag{Name: "base_url", Usage: "Public base URL for Agent Cards", Value: "http://localhost:4000"}},
|
|
Action: listAgents,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
func listAgents(c *cli.Context) error {
|
|
base := strings.TrimRight(c.String("base_url"), "/")
|
|
svcs, err := registry.ListServices()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
found := false
|
|
for _, s := range svcs {
|
|
recs, err := registry.GetService(s.Name)
|
|
if err != nil || len(recs) == 0 {
|
|
continue
|
|
}
|
|
meta := recs[0].Metadata
|
|
isAgent := meta != nil && meta["type"] == "agent"
|
|
if !isAgent && len(recs[0].Nodes) > 0 {
|
|
nm := recs[0].Nodes[0].Metadata
|
|
isAgent = nm != nil && nm["type"] == "agent"
|
|
}
|
|
if !isAgent {
|
|
continue
|
|
}
|
|
found = true
|
|
fmt.Printf(" \033[36m◆\033[0m %-20s %s/agents/%s\n", s.Name, base, s.Name)
|
|
}
|
|
if !found {
|
|
fmt.Println(" No agents registered.")
|
|
}
|
|
return nil
|
|
}
|