Core module exports Re-exports all core functionality for convenient imports
Get the singleton StateManager instance, creating it on first call.
The shared StateManager instance
import { getStateManager } from '@oss-autopilot/core';const state = getStateManager();const config = state.getState().config;console.log(config.githubUsername); Copy
import { getStateManager } from '@oss-autopilot/core';const state = getStateManager();const config = state.getState().config;console.log(config.githubUsername);
Core module exports Re-exports all core functionality for convenient imports