@grubtech/integration-agent
Version:
One-command installer that sets up the complete Grubtech Integration Agent (MCP server + AI agent personas) for Claude Code to help developers build restaurant and POS integrations.
29 lines • 1.01 kB
JavaScript
import { initCommand } from './init-command.js';
/**
* Grubtech Integration Agent - Installer/Orchestrator
*
* This package sets up the complete Grubtech integration environment:
* - Configures @grubtech/mcp-server in Claude Code
* - Installs agent personas from @grubtech/agent-personas
*
* Usage: npx @grubtech/integration-agent init
*/
const command = process.argv[2];
if (command === 'init') {
initCommand().catch((error) => {
console.error('Error during initialization:', error);
process.exit(1);
});
}
else {
console.log('Grubtech Integration Agent - Setup Tool\n');
console.log('Usage:');
console.log(' npx @grubtech/integration-agent init\n');
console.log('This will:');
console.log(' 1. Configure MCP server (@grubtech/mcp-server) in Claude Code');
console.log(' 2. Install agent personas (Developer & BA agents)');
console.log(' 3. Set up cache directories\n');
process.exit(0);
}
//# sourceMappingURL=index.js.map