Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Explain, draft, and validate Obsidian Bases .base files with filters, formulas, properties, summaries, and table, card, or list views. Use for Obsidian Bases, database-like vault views, dynamic tables, reading lists, task trackers, filters, formulas, summaries, and .base file edits.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | 48% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -9% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 25% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -10% | 0% |
Use this as a compact workflow and fallback syntax reference. Prefer a separately installed kepano/obsidian-skills obsidian-bases skill, then the current official Bases syntax, for detailed or version-sensitive fields and functions.
Answer design and syntax questions read-only. For a requested .base edit, resolve the user vault and use one inspected transaction; never write the file directly.
Resolve the installed product root from this skill's own location, not from the vault or current working directory:
bashPRODUCT_ROOT=/absolute/path/to/installed/claude-obsidian CORE="$PRODUCT_ROOT/scripts/claude-obsidian.py" test -f "$CORE"
.base file.supported by the user's Obsidian version or installed plugins.
null handling.
operation-transactions.md, keep the .base file under wiki/, and build one claude-obsidian.transaction.v1 bundle with operation_type: base. Inspect it, then set APPROVAL_SHA256 to the returned approval_sha256 only after review and apply once:
bash python3 "$CORE" transaction inspect "$BUNDLE" --vault "$VAULT" python3 "$CORE" transaction apply "$BUNDLE" --vault "$VAULT" \ --approved-plan-sha256 "$APPROVAL_SHA256"
cannot be verified locally.
.base files are YAML. Common top-level keys are filters, formulas, properties, summaries, and views.
yamlfilters: and: - file.inFolder("wiki") - 'status != "archived"' formulas: age_days: '((now() - file.ctime) / 86400000).round(0)' status_label: 'if(status == "mature", "Ready", "Review")' properties: status: displayName: "Status" formula.age_days: displayName: "Age (days)" views: - type: table name: "Wiki pages" order: - file.name - type - status - updated - formula.age_days
Global filters apply to every view. A view may also define its own filters. Recursive filter objects use one of and, or, or not at each level.
yamlfilters: or: - file.hasTag("concept") - and: - file.hasTag("source") - 'status == "active"'
Use note properties by name, file metadata as file.name, file.path, file.folder, file.ext, file.ctime, file.mtime, or file.tags, and computed properties as formula.<name>.
if().86400000before rounding when a whole-day count is intended.
formula.<name> before referencing it in a view or propertydisplay configuration.
from or where into a Base.that the resulting column will be empty.
yamlformulas: days_until: 'if(due_date, ((date(due_date) - today()) / 86400000).round(0), "")'
Table, cards, and list views are common:
yamlviews: - type: cards name: "Reading list" order: - file.name - author - status - type: list name: "Quick list" order: - file.name - status
Embed a Base or one named view in a Markdown note:
markdown![[Dashboard.base]] ![[Dashboard.base#Wiki pages]]
After an applied edit, report the operation ID, exact changed path, validation performed, and anything that still requires rendering in Obsidian. Do not commit Git.
Other measured skills in the registry, with their headline benchmark lift.