FieldForge

by Kerekes Stefan
5
4
3
2
1
Score: 50/100

Description

Visual property explorer for Obsidian — pick frontmatter fields and forge them into pivot tables and charts. No Dataview queries needed.

Reviews

No reviews yet.

Stats

0
stars
4
downloads
0
forks
2
days
2
days
2
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
12
commits

README file from

Github

FieldForge

Visual property explorer for Obsidian. Pick frontmatter fields and forge them into pivot tables and charts — no Dataview queries needed.

view license

Why

Most dashboard tooling in Obsidian (Dataview, Dashboard Plus, …) is query-centric: you write a query, then render it. FieldForge flips that — you just pick fields:

  • Rows — group by any frontmatter property or a file field (folder, tags, created, …)
  • Columns — pivot a second property into columns (optional)
  • Values — count files, or aggregate a numeric property (sum / avg / min / max / distinct)

The view re-forges instantly on every change. No query syntax, no code blocks.

Screenshots

Pivot table view Bar chart view
Pivot table with heatmap cells Grouped bar chart
Trend view Donut view
Files created over time Share of totals per group

Features

  • Pivot table with per-column heatmap coloring, row/column totals, hover tooltips listing the files in each cell, and click-to-open-note
  • Bar chart — single-series or grouped by columns, with value labels and hover tips
  • Scatter plot — any two numeric/date properties, color-coded by a category, with an optional least-squares trend line (r² shown)
  • Trend chart — file counts over time (day / week / month buckets) as an area chart
  • Donut chart — share of totals with legend
  • Data grid — searchable raw table, toggle columns with chips, click to open
  • Filters — equality, ≠, contains, >, <, exists, is empty
  • Export — copy the current view as a Markdown table or download CSV
  • Auto-refresh — the view rebuilds itself (debounced) as you edit your vault
  • Theme-native — built entirely on Obsidian design tokens; adapts to any theme, light and dark, desktop and mobile

Install

  1. Build (requires Node 18+):
    cd fieldforge
    npm install
    npm run build
    
  2. Copy the folder into your vault:
    <your-vault>/.obsidian/plugins/fieldforge/
    
    (the folder must contain main.js, manifest.json, and styles.css)
  3. In Obsidian: Settings → Community plugins → enable FieldForge (toggle "Restricted mode" off first if needed).
  4. Click the table icon in the left ribbon, or run FieldForge: Open FieldForge from the command palette.

Usage tips

  • Start with Rows = Folder and Values = Count of files to see your vault at a glance.
  • To compare two properties (e.g. Type × Status), set Rows and Columns, then click the Bars tab.
  • The Scatter tab needs numeric fields — pick e.g. Created × Words and color by Type.
  • Click any pivot cell to jump to the note behind the number.

Development

npm run dev        # watch mode (esbuild)
npm run typecheck  # tsc --noEmit
npm run build      # typecheck + production bundle

Structure

src/
├── main.ts            # plugin entry: ribbon, commands, view registration
├── view.ts            # view shell: header, tabs, canvas, config state
├── data/
│   ├── schema.ts      # types, built-in fields, value helpers
│   ├── scanner.ts     # vault scan via metadata cache
│   └── pivot.ts       # filter → bucket → aggregate engine
└── ui/
    ├── controls.ts    # sidebar: field pickers, aggregation, filters
    ├── pivotTable.ts  # heatmap table + markdown/CSV export
    ├── dataGrid.ts    # searchable raw table + export
    └── charts.ts      # dependency-free SVG charts (bar/scatter/trend/donut)

preview.html is a standalone design mock — open it in any browser to see the UI (light/dark toggle included) without running Obsidian.

License

MIT © 2026 Kerekes Stefan