feat(#26): implement mosaic-plugin-gantt skill

This commit is contained in:
Jason Woltje
2026-01-29 21:18:14 -06:00
parent 9de0b2f92f
commit 18c7b8c723
12 changed files with 1129 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
/**
* Mosaic Stack Gantt Plugin - Main exports
*/
export {
GanttClient,
createGanttClientFromEnv,
type GanttClientConfig,
type Project,
type Task,
type ProjectStatus,
type TaskStatus,
type TaskPriority,
type PaginatedResponse,
type ProjectTimeline,
type DependencyChain,
type CriticalPath,
} from './gantt-client.js';