Obsidian bases manager
Skill richfrem/agent-plugins-skills/plugins/obsidian-wiki-engine/skills/obsidian-bases-manager
repo for reusable plugins and skills
npx -y skills add richfrem/agent-plugins-skills --skill obsidian-bases-managerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Read and manipulate Obsidian Bases (.base) files - YAML-based database views that render as tables, cards, and grids inside the vault. Use when reading, appending rows, or updating cells in a Base file.
SKILL.md
1.7 KB, as published. Nobody here has run it
Dependencies
This skill requires Python 3.8+ and standard library only. No external packages needed.
To install this skill's dependencies:
pip-compile ./requirements.in
pip install -r ./requirements.txt
See ./requirements.txt for the dependency lockfile (currently empty — standard library only).
Obsidian Bases Manager
Status: Active
Author: Richard Fremmerlid
Domain: Obsidian Integration
Depends On: obsidian-vault-crud (WP06)
Purpose
Obsidian Bases are .base files containing YAML that defines database-like views
over vault notes. This skill enables agents to act as database administrators —
reading, appending rows, and updating cell values while preserving the view
configuration (columns, filters, sorts) untouched.
Available Commands
Read a Base
python ./bases_ops.py read --file <path.base>
Append a Row
python ./bases_ops.py append-row --file <path.base> --data key1=value1 key2=value2
Update a Cell
python ./bases_ops.py update-cell --file <path.base> --row-index 0 --column key1 --value "new value"
Safety Guarantees
- Uses
ruamel.yamlfor lossless round-trip YAML parsing - All writes go through
obsidian-vault-crudatomic write protocol - View configurations (columns, filters, sorts, formulas) are never modified
- Malformed YAML triggers a clean error report, never a crash or data loss