-
Notifications
You must be signed in to change notification settings - Fork 15
create README with links. #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
This repository contains several independent agentic applications: | ||
|
||
1. **Weather Vibes AGP** - A weather-based agent application demonstrating the Agent Connect Protocol implementation | ||
2. **Remote Agent AGP** - A framework for managing and interacting with remote agents |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- A chatbot that uses AGP to connect two agents.
4. **Marketing Campaign** - An agent-based marketing campaign management system | ||
5. **Mail Composer** - An intelligent email composition assistant | ||
6. **Email Reviewer** - An AI-powered email review and analysis tool | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AGP
-
The Agent Gateway Protocol is a message bus protocol that built on top of gRPC/HTTP2/3 designed for multi-agent
communication. AGP supports diverse messaging patterns out of the box (GitHub -agntcy/agp: Agent Gateway
Protocol). Its data plane uses channel-based addressing and intelligent routing: messages can be delivered via multicast
(broadcast to many agents) or anycast (one of many), with content-based routing rules to direct messages by
their metadata or content -
Security is a first-class facet of AGP. It uses Message Layer Security (MLS) to provide quantum-safe end-to-end
encryption for groups of agents (Security Layer — AGNTCY Collective v0.1.1 documentation). Every message exchanged via AGP can be encrypted such that only the intended agents (group members) can decrypt it – not even intermediate servers or gateways can read the plaintext. This aligns with a zero-trust philosophy: even if the infrastructure carrying the
messages is untrusted, the content remains confidential and authenticated. (Security Layer — AGNTCY Collective
v0.1.1 documentation) -
AGP messaging constructs are designed to facilitate higher-level coordination patterns. Because it supports group
messaging (one-to-many multicast) and anycast, an agent could broadcast a query to a group and gather multiple
responses through the secure channel. This makes it easier to implement patterns like voting (where each agent in a group returns an answer) or leader election and consensus across agents, using the messaging. -
A core strength of AGP is dynamic group management. It implements secure group communication using MLS (Message Layer Security), which inherently supports dynamic membership – agents can be added to or removed from a conversation group with automatic key updates and state management (Security Layer
— AGNTCY Collective v0.1.1 documentation)
@erinmikailstaples , DCO is not passing. |
Description
Creates README for the main project and landing page
Type of Change
Checklist