feat: migrate from MetaGPT to OpenHands SDK - #11
Closed
dzianisv wants to merge 8 commits into
Closed
Conversation
Major refactor to use OpenHands SDK for autonomous agent execution: ## New Components ### vibeteam/agents/ - openhands_base.py: Base OpenHands agent wrapper with LLM config, tool setup (Terminal, FileEditor, TaskTracker), and Docker support - release_engineer.py: ReleaseEngineerAgent for production monitoring, Sentry triage, GitHub issue creation, PR review, and automated fixes ### vibeteam/webhooks/ - server.py: FastAPI webhook server for Sentry and GitHub events with endpoints for /api/fix-issue, /api/review-pr, /api/triage ### k8s/openhands/ - Kubernetes manifests for openhands-ops namespace - Deployment with Docker-in-Docker sidecar for isolated agent execution - IngressRoute for agents.vibebrowser.app ### Infrastructure - Dockerfile: Multi-stage build for webhook server - deploy-openhands.yml: GitHub Actions workflow for CI/CD ## Breaking Changes - Replaced metagpt dependency with openhands-ai - Added fastapi, uvicorn, redis, celery dependencies - Old MetaGPT-based roles in vibeteam/roles/ are deprecated Ref: #10
Member
Author
|
Superseded by direct commits to master. Migration complete: MetaGPT removed, LiteLLM-based agents implemented, Kubernetes deployment working. |
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
Migrates VibeTeam from MetaGPT to OpenHands SDK for AI agent operations.
Changes
vibeteam/agents/openhands_base.py- Base OpenHands wrapper with LLM configvibeteam/agents/release_engineer.py- ReleaseEngineerAgent for Sentry triage and PR reviewvibeteam/webhooks/server.py- Handles /webhook/sentry, /webhook/github, /api/* endpointsDeployment
Testing
Related
Closes #10