cli/pkg/i18n
Snider 106a751511 test(i18n): convert intents to grammar composition tests
- Add compose_intents_test.go with comprehensive tests that verify
  the grammar engine can compose the same strings as intent templates
- Add irregular verbs: overwrite, reset, reboot
- Fix PastTense for words ending in -eed (proceed, succeed, exceed)
  that were incorrectly treated as already being past tense
- Tests verify ActionResult, ActionFailed, Progress work for all
  43 core intent verbs
- Demonstrates that semantic intents can be replaced by grammar
  composition functions

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 15:21:04 +00:00
..
locales feat(i18n): add localized number formatting helpers 2026-01-30 14:39:15 +00:00
check.go refactor(i18n): extract type checks to check.go 2026-01-30 14:51:46 +00:00
compose.go feat(i18n): add Phase 4 extended language support 2026-01-30 12:55:41 +00:00
compose_intents_test.go test(i18n): convert intents to grammar composition tests 2026-01-30 15:21:04 +00:00
compose_test.go feat(i18n): add Phase 4 extended language support 2026-01-30 12:55:41 +00:00
debug.go refactor(i18n): extract debug functionality to debug.go 2026-01-30 13:31:52 +00:00
grammar.go test(i18n): convert intents to grammar composition tests 2026-01-30 15:21:04 +00:00
grammar_test.go feat(i18n): implement semantic i18n system with grammar engine 2026-01-30 12:29:44 +00:00
i18n.go refactor(i18n): remove redundant P, PS, L shorthand functions 2026-01-30 15:05:24 +00:00
i18n_test.go refactor(i18n): rename core.* namespace to i18n.* 2026-01-30 14:32:08 +00:00
intents.go feat(i18n): add remaining API features for stability 2026-01-30 13:11:58 +00:00
intents_test.go refactor(i18n): rename core.* namespace to i18n.* 2026-01-30 14:32:08 +00:00
interface.go refactor(i18n): move Message struct to interface.go 2026-01-30 14:59:33 +00:00
interface_test.go refactor(i18n): slim locale files using composable grammar 2026-01-30 14:24:23 +00:00
keys.go feat(i18n): add compile-time key validation tool 2026-01-30 13:18:58 +00:00
language.go refactor(i18n): consolidate interfaces in interface.go 2026-01-30 14:57:57 +00:00
language_test.go feat(i18n): add Phase 4 extended language support 2026-01-30 12:55:41 +00:00
localise.go refactor(i18n): extract locale functions to localise.go 2026-01-30 15:02:20 +00:00
mode.go refactor(i18n): consolidate interfaces in interface.go 2026-01-30 14:57:57 +00:00
mode_test.go feat(i18n): implement semantic i18n system with grammar engine 2026-01-30 12:29:44 +00:00
mutate.go refactor(i18n): extract JSON flattening to mutate.go 2026-01-30 14:54:03 +00:00
numbers.go feat(i18n): add localized number formatting helpers 2026-01-30 14:39:15 +00:00
numbers_test.go feat(i18n): add localized number formatting helpers 2026-01-30 14:39:15 +00:00
service.go refactor(i18n): extract Service to service.go 2026-01-30 14:50:25 +00:00
time.go feat(i18n): add localized time formatting helpers 2026-01-30 14:44:42 +00:00
time_test.go feat(i18n): add localized time formatting helpers 2026-01-30 14:44:42 +00:00
transform.go refactor(i18n): extract type conversions to transform.go 2026-01-30 14:46:49 +00:00