S8 Plan
unlistedby gzerro
Mobile-first weekly planner with recurring weekday tasks and monthly progress.
Updated 1mo agoMIT
S8 Plan
S8 Plan is a mobile-first Obsidian plugin with a weekly planner, recurring weekday tasks, and monthly/yearly progress tracking.
Features
Weekmode (main screen):- Monday-to-Sunday layout.
- Tasks shown only on selected weekdays.
- Per-date completion checkboxes.
- Per-day collapse/expand (
∧/∨). - By default, all non-today days are collapsed.
- Today is highlighted with the current theme accent color.
Overallmode:- Full-year overview grouped by months.
- Daily circles with completion percentage.
0%= gray circle,>0%= accent-colored circle.
- Sticky top header:
- Week navigation (
<,Today,>). - Mode toggle button (
Overall/Week). - Dynamic stats:
- in
Weekmode: monthly progress + today progress; - in
Overallmode: yearly progress.
- in
- Week navigation (
- Settings tab:
- Create task.
- Edit task title and weekdays.
- Delete task.
- Global task ordering (
Move up/Move down). - Interface language selection (
English/Русский).
Task and progress logic
- A task appears on a day only if that weekday is selected in the task settings.
- Completion is stored for exact dates (
YYYY-MM-DD), not globally. - Monthly progress is calculated using the real calendar month (no fixed “4 weeks” assumption).
- Daily percent =
completed tasks for date / planned tasks for that weekday. - Yearly percent = total completed for the year / total planned for the year.
Install in an Obsidian vault
- Build the plugin:
npm install
npm run build
- Create the plugin folder in your vault:
<Vault>/.obsidian/plugins/s8-plan/
- Copy files:
main.jsmanifest.jsonstyles.css
- In Obsidian:
- open
Settings -> Community plugins - disable
Restricted modeif enabled - enable
S8 Plan
How to use
- Open the planner:
- from the left ribbon icon, or
- with the command
Open weekly planner.
- Add tasks:
Settings -> Community plugins -> S8 Plan (gear icon).
-
Mark tasks complete in
Weekmode via checkboxes. -
Switch modes:
Overallfor yearly overview;Weekto return to weekly planning.
Data storage
The plugin stores planner data in a Markdown file in the vault root:
S8 Plan Data.md
Inside that file, data is saved as JSON in a json code block.
Stored data includes:
- task list;
- date-based completion map;
- selected interface language.
Migration behavior:
- if
S8 Plan Data.mdalready exists, it is used as the source of truth; - if it does not exist, the plugin tries to migrate legacy data from
.obsidian/plugins/s8-plan/data.json; - after migration, the plugin writes to
S8 Plan Data.md.
Development
Commands
npm install
npm run dev
npm run build
npx tsc --noEmit
Project structure
manifest.json- plugin metadata (id: s8-plan,isDesktopOnly: false)styles.css- plugin stylessrc/main.ts- plugin lifecycle, command, ribbon, view openingsrc/view.ts- main UI and mode switchingsrc/settings.ts- task and language settingssrc/store.ts- persistence and progress calculationssrc/date-utils.ts- date helperssrc/i18n.ts- localizationsrc/components/*- UI components
Compatibility
- Works in Obsidian Desktop and Obsidian Mobile.
- No desktop-only APIs are used.
For plugin developers
Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.