Files
SuperCharged-Claude-Code-Up…/dexto/examples/dexto-langchain-integration/langchain-agent/package.json
admin b52318eeae 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>
2026-01-28 00:27:56 +04:00

33 lines
814 B
JSON

{
"name": "langchain-agent-example",
"version": "1.0.0",
"description": "Self-contained LangChain agent wrapped in MCP server",
"type": "module",
"main": "dist/mcp-server.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/mcp-server.js",
"agent": "npm run build && node dist/agent.js",
"dev": "tsc --watch & node --watch dist/mcp-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@langchain/openai": "^0.6.7",
"@langchain/core": "^0.3.80",
"langchain": "^0.3.37",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"langchain",
"mcp",
"agent",
"ai",
"model-context-protocol"
],
"author": "Dexto Team",
"license": "MIT"
}