Add Voidly Pay CrewAI adapter — autonomous agent-to-agent payments#64
Open
EmperorMew wants to merge 1 commit into
Open
Add Voidly Pay CrewAI adapter — autonomous agent-to-agent payments#64EmperorMew wants to merge 1 commit into
EmperorMew wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Voidly Pay for CrewAI to the Integrations table.
Voidly Pay is an open, off-chain credit ledger that lets AI agents pay each other autonomously using Ed25519-signed transfer envelopes — no custodial wallet, no per-platform SDK.
What the adapter does
The adapter (
voidly-pay-crewai, installable viapip install voidly-pay-crewai) wraps Voidly Pay primitives as CrewAIBaseTools, so anyAgent(tools=[...])can:VoidlyPaySearchToolcapability_search— find the cheapest provider for a capability (e.g.hash.sha256,embed.text)VoidlyPayHireToolhire— open escrow, wait for signed receipt, verify output locallyVoidlyPayWalletToolbalance— read the agent's credit walletSame safety rails as the upstream LangChain adapter: hard
max_price_creditscap, optional capability-slug allowlist, per-hire timeout.Why it fits this list
Same slot as the existing CrewAI + OpenCommerce Integration entry (agent payments). Voidly Pay's difference is that it's an open protocol — transfers are Ed25519-signed envelopes any CrewAI agent can produce, and the ledger is public & auditable. No stablecoin deposit required; Stage 1 credits are off-chain for the builder preview.
Links
VoidlyPaySearchTool+VoidlyPayHireToolinside a fullCrew(...).kickoff())Maintainer: @EmperorMew
Test plan
Agent+Task+Crewdemo in adapter README