oto/bin/main.dart
toki c344fff3ec feat: command catalog 구조 refactor 및 문서화 완료
- lib/cli/commands/command_catalog.dart 추가: CLI 명령어 카탈로그 시스템 구현
- lib/oto/commands/command_catalog.dart 추가: OTO command catalog 구현
- test/oto_catalog_cli_test.dart 추가: 카탈로그 테스트 케이스
- CLI 명령어 라우팅 및 자동 생성 파이프라인 구축
- README.md, ROADMAP.md, current.md 업데이트
- milestone 문서들 (cli-automation-baseline, structured-automation-surface) 업데이트
2026-05-21 22:37:50 +09:00

19 lines
765 B
Dart

import 'package:dart_framework/core/application.dart';
import 'package:dart_framework/utils/system_util.dart';
import 'package:oto/cli/cli.dart';
import 'package:oto/cli/commands/command_scheduler.dart';
import 'package:oto/cli/commands/command_template.dart';
// import 'package:oto/cli/commands/command_install.dart';
import 'package:oto/cli/commands/command_exe.dart';
// import 'package:oto/cli/commands/command_start.dart';
import 'package:oto/cli/commands/command_catalog.dart';
void main(List<String> arguments) async {
Application('oto', 'com.toki-labs.oto', () {
CLI.initialize(appName, arguments,
[CommandTemplate(), CommandExe(), CommandScheduler(), CommandCatalogCli()]);
}, (error, stack) {
print(error);
print(stack);
});
}