- 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.
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
const legacy = require('../legacy/teamctl.cli.js');
|
|
|
|
function sendMessage(context, flags) {
|
|
return legacy.sendInboxMessage(context.paths, context.teamName, flags);
|
|
}
|
|
|
|
module.exports = {
|
|
sendMessage,
|
|
};
|