Track and manage your board game collection directly within Obsidian.
- Search and import board games from BoardGameGeek (BGG)
- Automatically create game entries with detailed metadata
- Download and save game cover images
Images are downloaded and stored in different resolutions to optimize for various use cases. Here is an example comparison of the different image sizes and their characteristics:
Version | Dimensions | File Size | Percentage |
---|---|---|---|
Thumbnail | 95 x 150 | 3.4 KB | 11% |
Medium | 244 x 385 | 14.1 KB | 47% |
Full | 488 x 771 | 29.9 KB | 100% |
Work in progress
- Record individual game play sessions
- Track players, winners, play time, and notes
- Append session details to game entries
- Configure file location for game entries
- Customize file name format
- Control image saving preferences
- Toggle session tracking features
- Open Obsidian
- Go to Settings β Community plugins
- Enable Community Plugins
- Click "Browse" and search for "Boardgame Search"
- Click "Install" and then "Enable"
- Download the latest release from GitHub
- Create a folder
your-vault/.obsidian/plugins/obsidian-boardgame-plugin
- Copy
main.js
,manifest.json
, andstyles.css
into the folder or just extract and move the zip - Enable the plugin in Obsidian
- Click the dice icon in the ribbon
- Type the game name in the search bar
- Browse and select a game
- Choose to create a game entry or start a game session
or use the command
Search BoardGameGeek
- Game entries include:
- Game title
- BGG ID
- Player count
- Play time
- Year published
- Rating
- Optional thumbnail image
- Click "Search BoardGameGeek"
- Search "Catan"
- Select the game
- Plugin creates a detailed game entry
- Support for Obsidian Charts plugin
- Visualize player count data
- Age recommendation statistics
- Language dependency information
The plugin uses Nunjucks templating for customizable game entries. Access available template data using the Data Explorer command in Obsidian.
game:
name: string
id: string
minPlayers: number
maxPlayers: number
playTime: number
yearPublished: string
rating: number
image: string
description: string
suggestedPlayerCount:
best: string
recommended: string
playerCountPoll: Array
playerAgePoll: object
languageDependencePoll: object
useCharts: boolean
chartWidth: string
useLocalImages: boolean
date: Date
## {{game.name}}
### Overview
{% if game.image %}
{% if useLocalImages %}
![[{{ game.image }}]]
{% else %}

{% endif %}
{% endif %}
### Game Details
- **Min Players:** {{ game.minPlayers | default('Unknown') }}
- **Max Players:** {{ game.maxPlayers | default('Unknown') }}
- **Play Time:** {{ game.playingTime | default('Unknown') }}{% if game.playingTime %} minutes{% endif %}
- **Year Published:** {{ game.yearPublished | default('Unknown') }}
- **BGG Rating:** {{ game.rating | number(1) | default('N/A') }}{% if game.rating %}/10{% endif %}
### Notes
{% persist "notes" %}
Add your personal notes here - this section won't be overwritten on reimport
{% endpersist %}
Use the persist
tag to create sections that won't be overwritten on reimport:
{% persist "section-name" %}
Your persistent content here
{% endpersist %}
If you have the Obsidian Charts plugin installed, enable chart support in settings to visualize data:
{% if useCharts %}
^playerCountData
\`\`\`chart
type: bar
id: playerCountData
layout: rows
width: {{ chartWidth }}
legend: true
title: Player Count Votes
beginAtZero: true
\`\`\`
{% endif %}
Here is an example for a collection, which uses:
Code:
---
notetype: database
cssclasses:
- cards
- cards-2-3
- cards-cover
- table-max
- table-nowrap
---
```meta-bind-button
label: New Game
icon: ""
hidden: false
class: ""
tooltip: ""
id: ""
style: default
actions:
- type: command
command: boardgame-search:search-bgg
```
```dataview
TABLE WITHOUT ID
embed(link(meta(link(image)).path)) as "",
link(file.link, title) as Title,
ownership,
choice(played, "β
", " - ") as Played
FROM #boardgame
WHERE !contains(file.path, "templates")
SORT title ASC
```
If you find this plugin useful, please consider a donation.
- Report issues on GitHub
- Submit pull requests
This plugin uses the BoardGameGeek XML API 2 to fetch game data. All game information is provided by BoardGameGeek.
All game data is property of BoardGameGeek and its users. Usage of this plugin is subject to BoardGameGeek's Terms of Service and XML API Terms of Use.
Built for the Obsidian community.