Jenny Tai27 downloadsRecap your journal entries with AI generated summaries.
Journal Recap is an Obsidian plugin that summarizes daily journal entries with the OpenAI Responses API. It writes a one-sentence summary into the note frontmatter.
This plugin is based on Auto Classifier by Hyeonseo Nam.
store: false for OpenAI Responses API calls.npm install.npm run dev to compile in watch mode.npm run build for a production build.npm run lint before shipping changes.Copy main.js, manifest.json, and styles.css to:
VaultFolder/.obsidian/plugins/journal-recap/
manifest.json with your new version number, such as 1.0.1, and the minimum Obsidian version required for your latest release.versions.json file with "new-plugin-version": "minimum-obsidian-version" so older versions of Obsidian can download an older version of your plugin that's compatible.v.manifest.json, main.js, styles.css as binary attachments. Note: The manifest.json file must be in two places, first the root path of your repository and also in the release.You can simplify the version bump process by running
npm version patch,npm version minorornpm version majorafter updatingminAppVersionmanually inmanifest.json. The command will bump version inmanifest.jsonandpackage.json, and add the entry for the new version toversions.json
README.md file in the root of your repo.This project uses the Dynalist permissive license included in LICENSE.