feat: add n8n integration mod#286
Merged
zomux merged 3 commits intoopenagents-org:developfrom Feb 17, 2026
Merged
Conversation
|
Someone is attempting to deploy a commit to the Raphael's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Move mod from work/ to integrations/ category - Fix mod_manifest.json to use correct format (mod_name, agent_adapter_class, etc.) - Change mod name from path-style "work/n8n" to simple "n8n" - Fix aiohttp session management to reuse sessions instead of creating per request - Add proper __init__.py exports for N8nAgentAdapter and N8nMod - Add shutdown() method to adapter for cleanup - Remove redundant network parameter from N8nMod constructor
d3da781 to
14e1095
Compare
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
This PR introduces a new integration Mod for n8n, allowing OpenAgents to interact with n8n workflows and AI Agents.
Changes
src/openagents/mods/work/n8n/with full manifest and adapter support.call_n8n_workflowfor triggering webhooks andinteract_with_n8n_agentfor chat-based agent interaction.n8n_client.pyutility to handle authenticated HTTP requests.Why
n8n is a powerful automation platform. By adding this mod, OpenAgents users can now bridge their AI agents with thousands of external services via n8n workflows.