feat: Add intelligent auto-router and enhanced integrations

- Add intelligent-router.sh hook for automatic agent routing
- Add AUTO-TRIGGER-SUMMARY.md documentation
- Add FINAL-INTEGRATION-SUMMARY.md documentation
- Complete Prometheus integration (6 commands + 4 tools)
- Complete Dexto integration (12 commands + 5 tools)
- Enhanced Ralph with access to all agents
- Fix /clawd command (removed disable-model-invocation)
- Update hooks.json to v5 with intelligent routing
- 291 total skills now available
- All 21 commands with automatic routing

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
admin
2026-01-28 00:27:56 +04:00
Unverified
parent 3b128ba3bd
commit b52318eeae
1724 changed files with 351216 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
# Dexto Playground
This project is an interactive playground for testing MCP tools/servers tools and building your own AI agents.
[MCP - Model Context Protocol]
## Features
- **Tool Testing Playground**: Connect and test MCP servers and their tools interactively
- **Simple Chat Interface**: Clean, focused conversation with AI agents
- **Server Management**: Easy connection and management of MCP servers
- **Tool Discovery**: Explore available tools and their capabilities
- **Configuration Export**: Export your tool setup for use with Claude Desktop or other MCP clients
## What is MCP?
The Model Context Protocol (MCP) allows AI models to securely connect to external tools and data sources. Dexto provides a simple interface to:
- Connect to MCP servers
- Test tool functionality
- Chat with AI agents that have access to your tools
- Export configurations for other clients
## Quick Start
1. Connect a MCP server using the "Tools" panel
2. Test individual tools in the playground (`/playground`)
3. Chat with AI agents that can use your connected tools
4. Export your configuration when ready
This project is built with [Vite](https://vitejs.dev) and [TanStack Router](https://tanstack.com/router) for a smooth development experience.
## Developer guide
Clear out ports 3000 (linux):
```bash
lsof -ti:3000-3001 | xargs kill -9
```
Go to repository root and run the server in dev mode:
```bash
pnpm run dev
```
Open [http://localhost:3000](http://localhost:3000) to start testing your tools.