go/pkg/cli
Snider f85064a954 feat(i18n): implement semantic i18n system with grammar engine
Add semantic intent system for natural language CLI interactions:

- Mode system (Normal/Strict/Collect) for missing key handling
- Subject type with fluent builder for typed subjects
- Composed type with Question/Confirm/Success/Failure forms
- 30+ core.* intents (delete, create, commit, push, etc.)
- Grammar engine: verb conjugation, noun pluralization, articles
- Template functions: title, lower, upper, past, plural, article
- Enhanced CLI: Confirm with options, Question, Choose functions
- Collect mode handler for QA testing

Usage:
  i18n.T("core.delete", i18n.S("file", "config.yaml"))
  result := i18n.C("core.delete", subject)
  cli.ConfirmIntent("core.delete", subject)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 12:29:44 +00:00
..
i18n.go feat(i18n): implement semantic i18n system with grammar engine 2026-01-30 12:29:44 +00:00
log.go feat(cli): wire Core runtime with i18n and log services 2026-01-30 10:55:30 +00:00
runtime.go feat(cli): wire Core runtime with i18n and log services 2026-01-30 10:55:30 +00:00
styles.go refactor(cli): clean DX with direct function calls 2026-01-30 10:41:35 +00:00
utils.go feat(i18n): implement semantic i18n system with grammar engine 2026-01-30 12:29:44 +00:00