UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

23 lines 707 B
import { setupDeveloperWorkflowTools } from './tools.js'; /** * Developer Workflow Module - 12-Factor MCP Implementation * * This module replaces the legacy developer-workflow implementation * with a 12-factor compliant version that uses: * * - Standardized tool interface * - SQLite-based data storage * - Schema validation * - Structured outputs * - Stateless execution * - TDD enforcement and development workflows */ /** * Setup the developer workflow module */ export async function setupDeveloperWorkflow() { return await setupDeveloperWorkflowTools(); } // Export for backward compatibility export { setupDeveloperWorkflowTools } from './tools.js'; //# sourceMappingURL=index.js.map