openclaw - 💡(How to fix) Fix feature(memory-wiki): support configurable vault folder names for i18n

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Error Message

  • If a customized name collides with an existing folder, warn during init Chinese-speaking users want their wiki vault to be fully readable in Obsidian. As-is, they have to manually configure Obsidian exclude filters to hide the English system folders, which is error-prone and confusing.

Code Example

"vaultFolders": {
  "sources": "记忆源",
  "reports": "仪表盘", 
  "entities": "实体",
  "concepts": "概念",
  "syntheses": "综合"
}
RAW_BUFFERClick to expand / collapse

Problem

memory-wiki currently hardcodes English folder names (sources, reports, entities, concepts, syntheses). For non-English users browsing the vault in Obsidian, this creates a cluttered file tree mixing two languages — half the folders are English system directories, half are user-created native-language pages.

Proposal

Add an optional vaultFolders config in the plugin schema that lets users override folder names:

"vaultFolders": {
  "sources": "记忆源",
  "reports": "仪表盘", 
  "entities": "实体",
  "concepts": "概念",
  "syntheses": "综合"
}
  • Default: current English names (backward compatible)
  • Internal logic still uses canonical ids (sources, reports, etc.)
  • Purely cosmetic for the filesystem/Obsidian file tree
  • If a customized name collides with an existing folder, warn during init

Use case

Chinese-speaking users want their wiki vault to be fully readable in Obsidian. As-is, they have to manually configure Obsidian exclude filters to hide the English system folders, which is error-prone and confusing.

Affected code

Hardcoded folder names in extensions/memory-wiki/ (found "sources" 9×, "reports" 5×, "entities" 4×, "concepts" 4×, "syntheses" 5× in the compiled bundle).

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix feature(memory-wiki): support configurable vault folder names for i18n