Migrated from design-system-swarm with fresh git history.
Old project history preserved in /home/overbits/apps/design-system-swarm
Core components:
- MCP Server (Python FastAPI with mcp 1.23.1)
- Claude Plugin (agents, commands, skills, strategies, hooks, core)
- DSS Backend (dss-mvp1 - token translation, Figma sync)
- Admin UI (Node.js/React)
- Server (Node.js/Express)
- Storybook integration (dss-mvp1/.storybook)
Self-contained configuration:
- All paths relative or use DSS_BASE_PATH=/home/overbits/dss
- PYTHONPATH configured for dss-mvp1 and dss-claude-plugin
- .env file with all configuration
- Claude plugin uses ${CLAUDE_PLUGIN_ROOT} for portability
Migration completed: $(date)
🤖 Clean migration with full functionality preserved
23 lines
946 B
JavaScript
23 lines
946 B
JavaScript
/**
|
|
* Phase 8: Enterprise Patterns - Index
|
|
*
|
|
* Consolidates all enterprise-grade patterns for:
|
|
* - Workflow persistence (save/restore state)
|
|
* - Audit logging (track all actions)
|
|
* - Route guards (enforce permissions)
|
|
* - Error recovery (resilience & crash recovery)
|
|
*/
|
|
|
|
export { WorkflowPersistence, default as persistence } from './workflow-persistence.js';
|
|
export { AuditLogger, default as auditLogger } from './audit-logger.js';
|
|
export { RouteGuard, default as routeGuard } from './route-guards.js';
|
|
export { ErrorRecovery, default as errorRecovery } from './error-recovery.js';
|
|
|
|
// Default export includes all modules
|
|
export default {
|
|
persistence: () => import('./workflow-persistence.js').then(m => m.default),
|
|
auditLogger: () => import('./audit-logger.js').then(m => m.default),
|
|
routeGuard: () => import('./route-guards.js').then(m => m.default),
|
|
errorRecovery: () => import('./error-recovery.js').then(m => m.default),
|
|
};
|