| |
| |
| |
| |
|
|
| |
| export { |
| getAutomakerDir, |
| getFeaturesDir, |
| getFeatureDir, |
| getFeatureImagesDir, |
| getBoardDir, |
| getImagesDir, |
| getContextDir, |
| getWorktreesDir, |
| getValidationsDir, |
| getValidationDir, |
| getValidationPath, |
| getAppSpecPath, |
| getBranchTrackingPath, |
| getExecutionStatePath, |
| getNotificationsPath, |
| |
| getEventHistoryDir, |
| getEventHistoryIndexPath, |
| getEventPath, |
| ensureEventHistoryDir, |
| ensureAutomakerDir, |
| getGlobalSettingsPath, |
| getCredentialsPath, |
| getProjectSettingsPath, |
| ensureDataDir, |
| |
| getIdeationDir, |
| getIdeasDir, |
| getIdeaDir, |
| getIdeaPath, |
| getIdeaAttachmentsDir, |
| getIdeationSessionsDir, |
| getIdeationSessionPath, |
| getIdeationDraftsDir, |
| getIdeationAnalysisPath, |
| ensureIdeationDir, |
| } from './paths.js'; |
|
|
| |
| export { |
| spawnJSONLProcess, |
| spawnProcess, |
| type SubprocessOptions, |
| type SubprocessResult, |
| } from './subprocess.js'; |
|
|
| |
| export { |
| PathNotAllowedError, |
| initAllowedPaths, |
| isPathAllowed, |
| validatePath, |
| isPathWithinDirectory, |
| getAllowedRootDirectory, |
| getDataDirectory, |
| getAllowedPaths, |
| } from './security.js'; |
|
|
| |
| export * as secureFs from './secure-fs.js'; |
|
|
| |
| export { |
| findNodeExecutable, |
| buildEnhancedPath, |
| type NodeFinderResult, |
| type NodeFinderOptions, |
| } from './node-finder.js'; |
|
|
| |
| export { |
| isWslAvailable, |
| clearWslCache, |
| getDefaultWslDistribution, |
| getWslDistributions, |
| findCliInWsl, |
| execInWsl, |
| createWslCommand, |
| windowsToWslPath, |
| wslToWindowsPath, |
| type WslCliResult, |
| type WslOptions, |
| } from './wsl.js'; |
|
|
| |
| export * as systemPaths from './system-paths.js'; |
| export { |
| |
| getGitHubCliPaths, |
| getClaudeCliPaths, |
| getClaudeConfigDir, |
| getClaudeCredentialPaths, |
| getClaudeSettingsPath, |
| getClaudeStatsCachePath, |
| getClaudeProjectsDir, |
| getCodexCliPaths, |
| getCodexConfigDir, |
| getCodexAuthPath, |
| getGitBashPaths, |
| getOpenCodeCliPaths, |
| getOpenCodeConfigDir, |
| getOpenCodeAuthPath, |
| getShellPaths, |
| getExtendedPath, |
| |
| getNvmPaths, |
| getFnmPaths, |
| getNodeSystemPaths, |
| getScoopNodePath, |
| getChocolateyNodePath, |
| getWslVersionPath, |
| |
| systemPathExists, |
| systemPathAccess, |
| systemPathIsExecutable, |
| systemPathReadFile, |
| systemPathReadFileSync, |
| systemPathWriteFileSync, |
| systemPathReaddir, |
| systemPathReaddirSync, |
| systemPathStatSync, |
| systemPathStat, |
| isAllowedSystemPath, |
| |
| findFirstExistingPath, |
| findGitHubCliPath, |
| findClaudeCliPath, |
| getClaudeAuthIndicators, |
| type ClaudeAuthIndicators, |
| type FileCheckResult, |
| type DirectoryCheckResult, |
| findCodexCliPath, |
| getCodexAuthIndicators, |
| type CodexAuthIndicators, |
| findGitBashPath, |
| findOpenCodeCliPath, |
| getOpenCodeAuthIndicators, |
| type OpenCodeAuthIndicators, |
| |
| setElectronUserDataPath, |
| getElectronUserDataPath, |
| isElectronUserDataPath, |
| electronUserDataReadFileSync, |
| electronUserDataWriteFileSync, |
| electronUserDataExists, |
| |
| setScriptBaseDir, |
| getScriptBaseDir, |
| scriptDirExists, |
| scriptDirMkdirSync, |
| scriptDirCreateWriteStream, |
| |
| setElectronAppPaths, |
| electronAppExists, |
| electronAppReadFileSync, |
| electronAppStatSync, |
| electronAppStat, |
| electronAppReadFile, |
| } from './system-paths.js'; |
|
|
| |
| export { STATIC_PORT, SERVER_PORT, RESERVED_PORTS } from './config/ports.js'; |
|
|
| |
| export { |
| commandExists, |
| clearEditorCache, |
| detectAllEditors, |
| detectDefaultEditor, |
| findEditorByCommand, |
| openInEditor, |
| openInFileManager, |
| openInTerminal, |
| } from './editor.js'; |
|
|
| |
| export { |
| clearTerminalCache, |
| detectAllTerminals, |
| detectDefaultTerminal, |
| findTerminalById, |
| openInExternalTerminal, |
| } from './terminal.js'; |
|
|
| |
| export { |
| hexToXterm256, |
| getThemeANSIColors, |
| generateBashrc, |
| generateZshrc, |
| generateCommonFunctions, |
| generateThemeColors, |
| getShellName, |
| type TerminalConfig, |
| type TerminalTheme, |
| type ANSIColors, |
| } from './rc-generator.js'; |
|
|
| |
| export { |
| RC_FILE_VERSION, |
| getTerminalDir, |
| getThemesDir, |
| getRcFilePath, |
| ensureTerminalDir, |
| checkRcFileVersion, |
| needsRegeneration, |
| writeAllThemeFiles, |
| writeThemeFile, |
| writeRcFiles, |
| ensureRcFilesUpToDate, |
| deleteTerminalDir, |
| ensureUserCustomFile, |
| } from './rc-file-manager.js'; |
|
|
| |
| export { terminalThemeColors, getTerminalThemeColors } from './terminal-theme-colors.js'; |
|
|