mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 07:16:53 +05:00
- Add onboarding module for pre-flight checks (Redis, Ollama, model, project) - Implement start command with TUI rendering and dependency injection - Implement init command for .ipuaro.json config file creation - Implement index command for standalone project indexing - Add CLI options: --auto-apply, --model, --help, --version - Register all 18 tools via tools-setup helper - Add 29 unit tests for CLI commands - Update CHANGELOG and ROADMAP for v0.15.0
19 lines
525 B
TypeScript
19 lines
525 B
TypeScript
/**
|
|
* CLI commands module.
|
|
*/
|
|
|
|
export { executeStart, type StartOptions, type StartResult } from "./start.js"
|
|
export { executeInit, type InitOptions, type InitResult } from "./init.js"
|
|
export { executeIndex, type IndexResult, type IndexProgressCallback } from "./index-cmd.js"
|
|
export {
|
|
runOnboarding,
|
|
checkRedis,
|
|
checkOllama,
|
|
checkModel,
|
|
checkProjectSize,
|
|
pullModel,
|
|
type OnboardingResult,
|
|
type OnboardingOptions,
|
|
} from "./onboarding.js"
|
|
export { registerAllTools } from "./tools-setup.js"
|