{"id":31690199,"url":"https://github.com/ebullient/obsidian-journal-reflect","last_synced_at":"2025-10-08T12:12:49.437Z","repository":{"id":317205023,"uuid":"1064856402","full_name":"ebullient/obsidian-journal-reflect","owner":"ebullient","description":null,"archived":false,"fork":false,"pushed_at":"2025-09-29T14:45:15.000Z","size":67,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-29T15:27:17.190Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ebullient.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-26T16:54:37.000Z","updated_at":"2025-09-29T14:45:20.000Z","dependencies_parsed_at":"2025-09-29T15:27:19.955Z","dependency_job_id":"1770a20b-8bc6-4f64-9a39-e44e080f9d57","html_url":"https://github.com/ebullient/obsidian-journal-reflect","commit_stats":null,"previous_names":["ebullient/obsidian-journal-reflect"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ebullient/obsidian-journal-reflect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebullient%2Fobsidian-journal-reflect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebullient%2Fobsidian-journal-reflect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebullient%2Fobsidian-journal-reflect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebullient%2Fobsidian-journal-reflect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ebullient","download_url":"https://codeload.github.com/ebullient/obsidian-journal-reflect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebullient%2Fobsidian-journal-reflect/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278940631,"owners_count":26072559,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-08T12:12:44.336Z","updated_at":"2025-10-08T12:12:49.430Z","avatar_url":"https://github.com/ebullient.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Journal Reflect Plugin\n\nAn Obsidian plugin that uses local AI (Ollama) to generate thoughtful reflection questions while journaling.\n\n## Features\n\n- **AI-Powered Reflections**: Uses your local Ollama instance to generate personalized reflection questions\n- **Smart Insertion**: Add reflections at your cursor position with intelligent formatting\n- **Privacy-First**: All processing happens locally using your own Ollama instance\n- **Customizable**: Configure system prompts, model selection, and Ollama connection settings\n\n## Requirements\n\n- [Ollama](https://ollama.ai/) running locally\n- A language model installed in Ollama (e.g., `llama3.1`, `mistral`)\n\n## Plugin installation\n\n1. Build the plugin\n    ```console\n    npm install\n    npm run build\n    ```\n\n2. Create a plugin directory in your obsidian vault: `.obsidian/plugins/journal-reflect`\n3. Copy the contents of the build directory to the plugin directory\n4. In Obsidian, refresh the list of Community plugins, and enable Journal Reflect\n\n## Setup\n\n1. Install and start Ollama (instructions beyond scope of this project)\n2. Pull a model: `ollama pull llama3.1`\n3. [Configure](#configuration) the plugin settings in Obsidian\n4. Test the connection in settings\n\n## Configuration\n\nAccess settings through Obsidian's plugin settings:\n\n- **Ollama URL**: Your local Ollama instance URL (default: `http://localhost:11434`)\n- **Model Name**: The Ollama model to use (e.g., `llama3.1`)\n- **System Prompt**: Default instructions for generating reflection questions\n\n## Usage\n\nUse the command palette to access:\n- **Generate reflection question** - Adds a question at your cursor position\n\nResponses appear as blockquotes (\u003e) in your journal. Position your cursor where you want the reflection to appear.\n\n### Frontmatter Override\nYou can override the system prompt on a per-document basis using frontmatter.\n\n**Prompt Resolution Priority:**\n1. `prompt` in frontmatter (highest priority)\n2. `prompt-file` in frontmatter\n3. Prompt defined in plugin configuration (fallback)\n\n#### Option 1: Direct prompt in frontmatter\n```yaml\n---\nprompt: \"You are a creative writing coach. Generate questions that help explore character motivations and plot development.\"\n---\n```\n\n#### Option 2: Reference a prompt file\n```yaml\n---\nprompt-file: \"prompts/creative-writing-coach.md\"\n---\n```\n\n## Privacy \u0026 Security\n\nThis plugin only communicates with your local Ollama instance. No data is sent to external services.\n\n## Acknowledgements\n\nThis is based on [Build an LLM Journaling Reflection Plugin for Obsidian](https://thomaschang.me/blog/obsidian-reflect) by Thomas Chang, see his implementation [here](https://github.com/tchbw/obsidian-reflect/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febullient%2Fobsidian-journal-reflect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Febullient%2Fobsidian-journal-reflect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febullient%2Fobsidian-journal-reflect/lists"}