-
Notifications
You must be signed in to change notification settings - Fork 203
feat: Add eight core packages for AI agent observability and project management #225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
joedanz
wants to merge
249
commits into
superagent-ai:main
Choose a base branch
from
joedanz:joedanz/orchestrate
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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.
feat: Add eight core packages for AI agent observability and project management
🚀 Overview
This PR introduces 8 new packages that add comprehensive AI agent observability, project management, dev server preview, task tracking, and system monitoring capabilities to VibeKit. These packages provide the foundation for monitoring AI agent behavior, managing development projects, tracking system performance, and ensuring secure sandboxed execution.
📦 New Packages Added
1. @vibe-kit/ai-chat - AI Conversation Interface (850KB)
Production-ready chat system with Vercel AI SDK v5 integration for streaming AI conversations.
useChat()anduseAuthStatus()hooks, server-side handlers, Radix UI + Tailwind theming2. @vibe-kit/mcp-client - Model Context Protocol Client (29KB)
Full-featured MCP client supporting stdio, SSE, and HTTP transports with zero framework dependencies.
3. @vibe-kit/mcp-server - VibeKit MCP Server (7KB)
FastMCP-based server exposing VibeKit's project management as MCP tools for AI agents.
projects(list/get/search),project_manage(CRUD operations)4. @vibe-kit/taskmaster - Self-Contained Task Management (242KB)
JSON-based Kanban system with
.taskmasterfolder storage and real-time updates via Server-Sent Events.5. @vibe-kit/projects - Zero-Dependency Project Management (8KB)
Lightweight project lifecycle management with persistent JSON storage in
~/.vibekitdirectory.~/.vibekit/projects.jsondatabase, automatic directory creation6. @vibe-kit/logger - Environment-Aware Structured Logging (15KB)
Centralized logging system with automatic test suppression and component isolation.
VIBEKIT_TEST_LOGS=true, component-scoped instances7. @vibe-kit/preview - Dev Server Preview System (34KB)
Enterprise-grade development server management extracted from dashboard for modular reuse.
~/.vibekit/preview-locks/ensure servers persist across browser sessions8. @vibe-kit/monitor - System Performance & Health Monitoring (29KB)
Comprehensive system monitoring with in-memory metrics storage and real-time health checks.
🖥️ Dashboard Integration
Unified Dashboard
Package Integration
@vibe-kit/previewpackage for dev server management with clean separation of concerns@vibe-kit/monitorpackage replacing internal performance monitoring with modular solutionvibekit previewandvibekit monitorcommands🧪 Testing & Quality Assurance
Comprehensive Test Coverage
/test/directoryQuality Standards
🔧 Technical Features
Cross-Package Integration
Security & Validation
📈 Impact
Code Statistics
Bundle Size Analysis
📋 Summary
This PR creates a comprehensive ecosystem where AI agents can safely manage development projects through a unified observability layer. The 8 packages work together to form an integrated system:
AI Agent Integration: The ai-chat package provides the conversational interface while the mcp-client and mcp-server packages enable AI agents to execute project management tools directly through the Model Context Protocol, creating a seamless workflow where agents can create projects, manage tasks, and monitor execution status.
Project & Task Management: The projects package handles core project lifecycle operations, while taskmaster provides Kanban-based task tracking with real-time updates. Together, they create a complete project organization system that AI agents can interact with programmatically.
Development Environment: The preview package provides enterprise-grade dev server management with automatic framework detection and cross-session persistence, enabling AI agents to safely start, monitor, and manage development servers for projects they're working on.
System Monitoring & Safety: The monitor package provides comprehensive system health monitoring with in-memory metrics storage, tracking request performance, memory usage, and error rates across all services. Combined with the logger package that ensures all AI agent actions are tracked and sanitized for sensitive data, this creates a complete observability solution while the dashboard integrates all systems to provide real-time visibility into what agents are doing across development environments.
Unified Experience: From initial project creation through task execution to live preview deployment, these packages create an end-to-end development workflow where AI agents operate transparently within secure, observable boundaries while maintaining full project management capabilities.