i-am-rudi40 downloadsTrack your workouts, exercises, and fitness progress in Obsidian
This plugin aims to provide a comprehensive workout tracking solution within Obsidian. The focus is on providing a user experience reminiscent of dedicated fitness apps, while allowing enough customization and flexibility to fit various Knowledge Management Systems (KMS) and personal workflows.
The project originally started as a fork of the very nice Obsidian Workout Tracker plugin. But the new feature set has grown to such an extent that I want to share it as a separate plugin.
So far the plugin is mostly self-tested and was specifically designed to be used in my own vault. But I hope it can be useful to others as well, and I welcome any feedback, bug reports, or contributions.
https://github.com/I-am-Rudi/obsidian-workout-journal.gitlatest or a specific release tag).obsidian/plugins/ directorynpm installnpm run buildI will submit the plugin to the official Obsidian Community Plugins directory. Once approved, you can install it directly from the Obsidian app.
Ribbon Icon: Quick access to start a new workout or open the statistics view, includes a Quick Log option for creating a workout on the fly without a template
Command Palette: Access all plugin commands for creating, editing, and viewing exercises, workouts, plans, and statistics
Settings: Manage workout templates, exercise library, and plugin configuration, including date formatting and default folders as well as import options for Strong App data
Create a new workout while you perform it with "Quick Log"
Use the command palette: "Workout Journal: Create New Workout"
Use settings to create workout templates for your common routines (e.g., "Full Body Workout", "Leg Day", etc.)
Create a routine from an already completed workout to reuse it in the future with the "Create Routine from Current Workout" command
You can also directly create a workout file in the right folder with the
right frontmatter and content structure, and the plugin will recognize it as
a workout file. This is in general not recommended, use the Add .... Note
command instead.
You can start an active workout session for any workout file created by the plugin. This opens a dedicated interface where you can quickly log exercise values, add new sets, exercises, and notes on the fly. The session is designed to closely mirror the experience of a dedicated fitness app, allowing you to focus on your workout while keeping your data organized.
This is possible from the ribbon menu, or by opening an existing routine and
run Start Workout Session from Current Note command, or via the command
palette.
![]() |
![]() |
+
Use "Workout Journal: View Workout Statistics" to see comprehensive analytics about your workout progress.
Strong App allows users to export their workout history as a CSV file. In the settings of the plugin, you can find an option to import this CSV file. The plugin will parse the CSV data and create individual workout files for each entry, preserving all relevant details such as exercises, sets, reps, weights, and notes. Additionally, there is an option to create exercise notes for each unique exercise encountered during the import process, allowing you to build your exercise library seamlessly from your Strong App data.
[!tip] Using the
Create Routine from Current Workoutcommand on a workout imported from Strong App is a great way to quickly migrate your existing workout routines into reusable templates within Obsidian.
[!warning] The definition of the exercises imported this way is incomplete, so it is recommended to edit the created exercise notes after import to add muscle group targeting and other relevant information.
Insert exercise templates directly into your notes using "Workout Journal: Insert Exercise Template" command.
The plugin creates structured markdown files with YAML frontmatter for data storage and human-readable content below:
---
wj-id: "1672531200000"
wj-date: "2025-06-26"
name: "Morning Run"
wj-duration: 30
wj-exercises:
- name: "Running"
sets:
- duration: 30
distance: 3
wj-notes: "Beautiful morning for a run"
wj-type: workout
---
# Morning Run
**Date:** 2025-06-26
**Duration:** 30 minutes
## Exercises
### Running
| Set | Reps | Weight | Duration | Distance | Rest |
| --- | ---- | ------ | -------- | -------- | ---- |
| 1 | - | - | 30 | 3 | - |
## Notes
Beautiful morning for a run
Access comprehensive workout statistics including:
Access plugin settings through Settings → Community Plugins → Workout Journal:
# Install dependencies
npm install
# Development build with watch mode
npm run dev
# Production build
npm run build
MIT License - see LICENSE file for details