feat: add support for multilingual output in openwiki agent - #477
Merged
Colin Francis (colifran) merged 15 commits intoJul 27, 2026
Merged
Conversation
Collaborator
|
Good start on the CLI wiring. I've pushed some changes on top since the prompt-only approach left a few gaps:
Left the CLI flag and prompt scoping mostly as-is. |
Colin Francis (colifran)
approved these changes
Jul 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds first-class multilingual output to OpenWiki. A new --language flag lets a repo generate and maintain its wiki in a target language (for example zh-CN), while keeping everything machine-facing canonical so aggregation, retrieval, and tooling stay stable.
When no language is provided, existing behavior is unchanged.
What changed
Language plumbing
Translation middleware
OKF front-matter localization
Clean TUI output
Prompt guidance
Example:
Why
OpenWiki's value is wiki-as-agent-memory, and that only reaches non-English teams if the wiki reads in their language while staying canonical where machines consume it. Splitting "translate what's read, keep canonical what's matched" keeps retrieval, tag aggregation, and index generation stable across a language switch.
Testing
Added coverage for:
Authorship
Co-authored by: Abhishek Kumbhar (@Abhiiishek44) and Colin Francis (@colifran)
Closes #469