ContextForgeCommandRunner constructor

ContextForgeCommandRunner()

Implementation

ContextForgeCommandRunner()
    : super(
        'contextforge',
        'ContextForge CLI - Persistent project context for developers',
      ) {
  addCommand(InitCommand());
  addCommand(StatusCommand());
  addCommand(UpdateCommand());
  addCommand(PromptCommand());
  addCommand(AnalyzeCommand());
  addCommand(MapCommand());
  addCommand(FeatureCommand());
  addCommand(DecisionCommand());
  addCommand(FocusCommand());
  addCommand(TaskCommand());
  addCommand(ContextCommand());
  addCommand(UpgradeCommand());
  addCommand(DoctorCommand());
}