- Added new workspace commands for type checking, building, and testing across multiple packages. - Updated CI workflow to include paths for new packages and utilize workspace commands. - Refactored MCP server to integrate with the agent-teams-controller, enhancing task management capabilities. - Improved task boundary detection and logging for MCP tools, ensuring better tracking of task states. - Updated documentation and prompts to reflect new MCP tool usage, replacing previous teamctl.js references.
22 lines
516 B
JSON
22 lines
516 B
JSON
{
|
|
"name": "agent-teams-controller",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Controller package for Claude agent teams operations and legacy teamctl CLI compatibility",
|
|
"type": "commonjs",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"teamctl": "src/cli.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "node ./scripts/build.mjs",
|
|
"test": "vitest run --config vitest.config.js",
|
|
"test:watch": "vitest --config vitest.config.js"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|