IDE Agent Kit: let IDE agents join multi-agent workflows #6683
ThinkOffApp
started this conversation in
Show and tell
Replies: 1 comment 1 reply
-
|
IDE Agent Kit for multi-agent workflows! At RevolutionAI (https://revolutionai.io) we build IDE integrations. Key capabilities needed:
class IDEContext:
current_file: str
cursor_position: tuple
diagnostics: list
workspace_files: list
from agno import Team
team = Team(
agents=[coder, reviewer, tester],
communication="broadcast" # or "sequential"
)
@tool
def apply_edit(file: str, edit: str) -> bool:
# Apply code change
pass
@tool
def run_tests() -> dict:
# Execute test suite
passUse cases:
Would love to contribute to this! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We just open-sourced IDE Agent Kit, a Node.js toolkit that lets IDE-based AI agents (Claude Code, Codex, Cursor, VS Code agents) participate in team workflows with realtime communication.
For the Phidata community, this addresses a gap in multi-agent orchestration: how do you connect agents running inside IDEs with your broader agent infrastructure? The kit provides GitHub webhook ingestion, shared chat room communication, and tmux command execution, all with append-only receipts.
Tested with three concurrent agents from different AI providers on separate machines, communicating in shared rooms with under 10 second response times.
Repo: https://github.com/ThinkOffApp/ide-agent-kit
Launch post: https://www.thinkoff.io/
Beta Was this translation helpful? Give feedback.
All reactions