feat: add Taskmarket action provider for Python AgentKit - #1435
Open
MirzaAliAkbar wants to merge 1 commit into
Open
feat: add Taskmarket action provider for Python AgentKit#1435MirzaAliAkbar wants to merge 1 commit into
MirzaAliAkbar wants to merge 1 commit into
Conversation
- Add TaskmarketActionProvider with create_taskmarket_task, get_taskmarket_task, and list_taskmarket_submissions actions - Schemas with validation for reward, duration, and task parameters - Unit tests covering success and failure paths - Subprocess-based CLI integration (first-party tooling) Closes: Taskmarket integration PR
🟡 Heimdall Review Status
|
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 a Taskmarket action provider for the Python AgentKit SDK, letting agents create, inspect, and review bounties on Taskmarket (Base Mainnet) from within any AgentKit-powered workflow.
Changes
TaskmarketActionProviderwith three actions:create_taskmarket_task— creates a bounty with description, reward, duration, deliverables, max spend, and tagsget_taskmarket_task— fetches live task status, expiry, submission count, and pending actionslist_taskmarket_submissions— lists submissions for human review (never silently accepts/rejects)taskmarketCLIMotivation
Taskmarket is an onchain task marketplace on Base. This integration lets Coinbase AgentKit users deploy agents that can post bounties and review work without leaving the AgentKit ecosystem.
Testing
pytest tests/action_providers/taskmarket/— 9 passedChecklist
Notes
The provider shells out to the
taskmarketCLI, which must be installed (npm install -g @lucid-agents/taskmarket) and initialized (taskmarket init) in the agent's environment.