You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed
obsidian_property_set can now set multi-valued properties. Added a type parameter (text | list | number | checkbox | date | datetime). Without it the tool could only write scalar strings, so setting tags, aliases, or Links silently collapsed a comma-separated value into one joined string instead of a YAML list. Pass type: "list" with a JSON-array value (e.g. value: '["a", "b"]') to write a proper list. Tool description and the cli reference prompt now document the gotcha.