Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connected star chart constellation map of projects and repositories
controlplane-constellation
export interface ConstellationConfig { selectedRepos?: string[] maxRepos?: number accentColor?: string }
import { renderWidgetSvg, WidgetInstance } from '@/engine' const constellationWidget: WidgetInstance = { instanceId: 'constellation_01', widgetId: 'controlplane-constellation', name: 'Constellation Star Chart', position: { x: 0, y: 0 }, size: { width: 800, height: 330 }, config: { accentColor: '#c084fc', }, locked: false, visible: true, zIndex: 1, } const svgOutput = renderWidgetSvg(constellationWidget, profileData, globalStyles)