UNPKG

claude-code-subagents-orchestrator

Version:

Claude Code Sub-agents Orchestrator - A powerful MCP server for orchestrating multiple AI sub-agents for complex task execution in Claude Code

182 lines (181 loc) 6.01 kB
{ "name": "claude-code-subagents-orchestrator", "version": "1.0.3", "description": "Claude Code Sub-agents Orchestrator - A powerful MCP server for orchestrating multiple AI sub-agents for complex task execution in Claude Code", "keywords": [ "claude-code", "mcp-server", "ai-agents", "orchestration", "automation", "typescript", "productivity", "workflow", "delegation" ], "author": { "name": "Claude Code Team", "email": "support@anthropic.com", "url": "https://claude.ai/code" }, "license": "MIT", "homepage": "https://github.com/zabarich/claude-code-subagents-orchestrator#readme", "repository": { "type": "git", "url": "https://github.com/zabarich/claude-code-subagents-orchestrator.git" }, "bugs": { "url": "https://github.com/zabarich/claude-code-subagents-orchestrator/issues" }, "engines": { "node": ">=18.0.0", "npm": ">=8.0.0" }, "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "bin": { "claude-orchestrator": "bin/claude-orchestrator.js", "claude-agent-install": "dist/cli/install.js" }, "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./server": { "import": "./dist/server.esm.js", "require": "./dist/server.js", "types": "./dist/server.d.ts" }, "./package.json": "./package.json" }, "files": [ "dist/**/*", "scripts/**/*", "config/**/*", "docs/**/*", "bin/**/*", "server.js", "README.md", "CHANGELOG.md", "LICENSE" ], "scripts": { "prepare": "echo 'Skipping prepare for minimal publish'", "prepack": "echo 'Skipping prepack for minimal publish'", "dev": "tsx src/index.ts", "build": "npm run clean && npm run build:types && npm run build:cjs && npm run build:esm", "build:types": "tsc --declaration --emitDeclarationOnly --outDir dist", "build:cjs": "tsc --module commonjs --outDir dist --target es2020", "build:esm": "tsc --module es2020 --outDir dist/esm --target es2020 && node scripts/build-esm.js", "clean": "rm -rf dist coverage .nyc_output", "start": "node dist/index.js", "bootstrap": "tsx src/cli/bootstrap.ts", "init": "tsx src/index.ts --bootstrap-only", "status": "tsx src/cli/bootstrap.ts status", "update-agents": "tsx src/cli/bootstrap.ts update", "install:global": "npm install -g .", "install:mcp": "node scripts/install-mcp.js", "health-check": "node scripts/health-check.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest --testPathPattern=unit", "test:integration": "jest --testPathPattern=integration", "test:e2e": "jest --testPathPattern=e2e", "test:delegation": "jest --testPathPattern=delegation", "test:performance": "jest --testPathPattern=performance", "test:platform": "npm run test:platform:windows && npm run test:platform:macos && npm run test:platform:linux", "test:platform:windows": "cross-env PLATFORM=win32 jest --testPathPattern=platform", "test:platform:macos": "cross-env PLATFORM=darwin jest --testPathPattern=platform", "test:platform:linux": "cross-env PLATFORM=linux jest --testPathPattern=platform", "test-bootstrap": "tsx src/test/bootstrap.test.ts", "validate": "node validate-bootstrap.js", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write 'src/**/*.{ts,js,json}'", "format:check": "prettier --check 'src/**/*.{ts,js,json}'", "typecheck": "tsc --noEmit", "audit": "npm audit --audit-level=moderate", "audit:fix": "npm audit fix", "release": "npm run build && npm run test && npm publish", "release:beta": "npm run build && npm run test && npm publish --tag beta", "release:alpha": "npm run build && npm run test && npm publish --tag alpha", "version:patch": "npm version patch && git push && git push --tags", "version:minor": "npm version minor && git push && git push --tags", "version:major": "npm version major && git push && git push --tags", "postinstall": "node scripts/postinstall.js", "preuninstall": "node scripts/preuninstall.js" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "fs-extra": "^11.1.0", "node-fetch": "^3.3.2", "yaml": "^2.3.4", "zod": "^3.22.4", "commander": "^12.0.0", "chalk": "^5.3.0", "ora": "^8.0.1", "inquirer": "^9.2.0", "boxen": "^7.1.1", "update-notifier": "^7.0.0", "semver": "^7.6.0", "which": "^4.0.0", "cross-spawn": "^7.0.3", "execa": "^8.0.1" }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/fs-extra": "^11.0.0", "@types/jest": "^29.5.14", "@types/node": "^20.0.0", "@types/inquirer": "^9.0.0", "@types/semver": "^7.5.0", "@types/which": "^3.0.0", "@types/cross-spawn": "^6.0.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.0", "prettier": "^3.2.0", "jest": "^29.7.0", "ts-jest": "^29.4.0", "tsx": "^4.0.0", "typescript": "^5.0.0", "cross-env": "^7.0.3", "rimraf": "^5.0.0", "concurrently": "^8.2.0", "nodemon": "^3.1.0", "npm-run-all": "^4.1.5", "husky": "^9.0.0", "lint-staged": "^15.2.0", "conventional-changelog-cli": "^4.1.0", "standard-version": "^9.5.0" }, "peerDependencies": { "@modelcontextprotocol/sdk": ">=1.0.0" }, "peerDependenciesMeta": { "@modelcontextprotocol/sdk": { "optional": false } }, "type": "module", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "preferGlobal": true, "os": [ "darwin", "linux", "win32" ], "cpu": [ "x64", "arm64" ] }