claude-flow
Version:
Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration
57 lines (56 loc) • 1.75 kB
JSON
{
"name": "@claude-flow/browser",
"version": "3.0.0-alpha.3",
"description": "Browser automation for AI agents - integrates agent-browser with claude-flow swarms",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./mcp-tools": "./dist/mcp-tools/index.js",
"./skill": "./dist/skill/index.js",
"./agent": "./dist/agent/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run tests/e2e",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"postinstall": "node -e \"const{execSync}=require('child_process');try{execSync('agent-browser --version',{stdio:'ignore'});}catch{console.log('\\n📦 Installing agent-browser globally...');try{execSync('npm install -g agent-browser@latest',{stdio:'inherit'});console.log('✅ agent-browser installed successfully!');}catch(e){console.log('⚠️ Could not install agent-browser globally. Run manually:\\n npm install -g agent-browser@latest');}}\""
},
"dependencies": {
"agent-browser": "^0.6.0",
"agentic-flow": "^2.0.3",
"zod": "^3.22.4"
},
"peerDependencies": {
"@claude-flow/cli": ">=3.5.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"keywords": [
"browser",
"automation",
"ai-agent",
"claude-flow",
"playwright",
"web-scraping",
"testing"
],
"author": "ruvnet",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/claude-flow.git",
"directory": "v3/@claude-flow/browser"
},
"engines": {
"node": ">=18.0.0"
}
}