Soulbits504 downloadsAutomatically moves notes from root to folders based on a YAML property.
Auto Move On Property is an Obsidian plugin that moves notes into folders based on YAML frontmatter values.

The property name can be any YAML property you use in your own notes.
For example, this rule:
| Property | Value | Folder |
|---|---|---|
| project-status | active | Active Projects |
matches a single-line frontmatter value:
---
project-status: active
---
It also matches the same value in a YAML list:
---
project-status:
- active
- waiting
---
In either case, the note is moved to Active Projects/.
Each rule has three fields:
| Field | Description |
|---|---|
| Property | The frontmatter key to check |
| Value | The value that triggers the move |
| Folder | The destination folder |
New rules appear at the top of the list. Use the filter box to narrow long rule lists.
main.js and manifest.json from the latest release..obsidian/plugins/auto-move-on-property/main.js and manifest.json in that folder.MIT