The identity, communication & payments layer for AI agents. Dreaming of a world where agents gossip, argue & collaborate like a real society of their own.
Watch a short walkthrough of Bindu in action:
Modern agents can reason, plan, and call tools, but connecting them to each other and to existing systems is still hard. We now have open protocols for this new world: A2A, AP2, and X402. They define how agents talk, trust, and trade yet wiring them together still takes time, code, and complexity.
Bindu solves this.
Bindu is an operating layer that adds auth, payments, observability, distributed execution, and low latency on top of A2A, AP2, and X402, turning your agent into a decentralized, interoperable living server that speaks the language of the open web.
Write your agent in any framework you like, then use Bindu to "Binduβfy" it and plug directly into the Internet of Agents.
Bring your agent and a simple config - that's it. We take care of the rest.
# Using uv (recommended)
uv add binduOn your local machine, navigate to the directory in which you want to create a project directory, and run the following command:
uvx cookiecutter https://github.com/getbindu/create-bindu-agent.gitMore details can be found here.
Thatβs it. Your local agent becomes a live, secure, discoverable service, ready to talk with other agents anywhere.
Step 1: Create a configuration file agent_config.json:
{
"author": "raahul@getbindu.com",
"name": "research_agent",
"description": "A research assistant agent",
"deployment": {"url": "http://localhost:3773", "expose": True},
"skills": ["skills/question-answering", "skills/pdf-processing"]
}Full Detailed Configuration can be found here.
Step 2: Create your agent script my_agent.py:
from bindu.penguin.bindufy import bindufy
from agno.agent import Agent
from agno.tools.duckduckgo import DuckDuckGoTools
from agno.models.openai import OpenAIChat
# Define your agent
agent = Agent(
instructions="You are a research assistant that finds and summarizes information.",
model=OpenAIChat(id="gpt-4o"),
tools=[DuckDuckGoTools()],
)
# Configuration
config = {
"author": "your.email@example.com",
"name": "research_agent",
"description": "A research assistant agent",
"deployment": {"url": "http://localhost:3773", "expose": True},
"skills": ["skills/question-answering", "skills/pdf-processing"],
}
# Handler function
def handler(messages: list[dict[str, str]]):
"""Process messages and return agent response.
Args:
messages: List of message dictionaries containing conversation history
Returns:
Agent response result
"""
result = agent.run(input=messages)
return result
# Bindu-fy it
bindufy(config, handler)That's it! Your agent is now live at http://localhost:3773 and ready to communicate with other agents.
Want a beautiful chat interface for your agent? - It's available as part of the Bindu ecosystem. - https://localhost:3773/docs
a peek into the night sky
}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}
{{ + + + @ {{
}} | * o + . }}
{{ -O- o . . + {{
}} | _,.-----.,_ o | }}
{{ + * .-'. .'-. -O- {{
}} * .'.-' .---. `'.'. | * }}
{{ . /_.-' / \ .'-.\ {{
}} ' -=*< |-._.- | @ | '-._| >*=- . + }}
{{ -- )-- \`-. \ / .-'/ {{
}} * + `.'. '---' .'.' + o }}
{{ . '-._ _.-' . {{
}} | `~~~~~~~` - --===D @ }}
{{ o -O- * . * + {{
}} | + . + }}
{{ jgs . @ o * {{
}} o * o . }}
{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{Each symbol is an agent β a spark of intelligence.
And the single tiny dot is Bindu, the origin point in the Internet of Agents.
NightSky is the layer that makes swarms of agents.
In this swarm, each Bindu is a dot - annotating agents with the shared language of A2A, AP2, and X402.
Agents can be hosted anywhere on laptops, clouds, or clusters β yet speak the same protocol, trust each other by design, and work together as a single, distributed mind.
A Goal Without a Plan Is Just a Wish.
Bindu is Agent Framework agnostic.
We did test with mainly Agno, CrewAI, LangChain, and LlamaIndex, FastAgent.
Want integration with your favorite framework? Let us know on Discord!
bindu is thoroughly tested with a test coverage of over 70%:
# Run tests with coverage
pytest -n auto --cov=bindu --cov-report= && coverage report --skip-covered --fail-under=70We welcome contributions! Here's how to get started:
# Clone the repository
git clone https://github.com/getbindu/Bindu.git
cd Bindu
# Install development dependencies
uv venv --python 3.12.9
source .venv/bin/activate
uv sync --dev
# Install pre-commit hooks
pre-commit run --all-filesPlease see our Contributing Guidelines for more details.
For more details about maintainers, including how to become a maintainer, see our maintainers file.
Bindu is proudly open-source and licensed under the Apache License 2.0.
We π contributions! Whether you're fixing bugs, improving documentation, or building demos β your contributions make bindu better.
- Join our Discord for discussions and support
- Star the repository if you find it useful!
We are grateful to the following projects for the development of bindu:
- FastA2A
- 12 Factor Agents
- A2A
- AP2
- X402
- The bindu logo : https://openmoji.org/library/emoji-1F33B/
- The Ascii Space Art : https://www.asciiart.eu/space/other#google_vignette
Here's what's next for bindu:
- GRPC transport support
- Sentry Error Tracking.
- Ag-Ui Integration.
- Retry Mechanism add.
- Increase Test Coverage to 80%.
- Redis Scheduler Implementation.
- Postgres Database Implementation for Memory Storage.
- Authentication Support AuthKit, GitHub, AWS Cognito, Google, Azure (Microsoft Entra).
- Negotiation Support.
- AP2 End to End Support.
- Dspy Addition.
- MLTS Support.
- X402 Support with other facilitators.
Suggest features or contribute by joining our Discord!
Built with π by the team from Amsterdam π·
Happy Bindu! π»πβ¨
From idea to Internet of Agents in 2 minutes.
Your agent. Your framework. Universal protocols.
β Star us on GitHub β’ π¬ Join Discord β’ π Read the Docs

