add auto-tagger, MOC generator and centralized config - #18
Merged
Conversation
- Centralized all AI prompts into prompts.json - Moved directory names and title formats to config.py for global control - Rebuilt auto_tagger.py to use structural YAML parsing (loop prevention) - Fixed Path.mkdir() bug in study_recap.py - Refactored moc_generator.py to support dynamic pathing and templated prompts - Rebuilt tagger_logic.py to interface with prompts.json
Updated README to enhance clarity and detail about Vaultmind's features, models, and installation process.
…d into feature/vault-upgrade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New Features
chat.py): Added a persistent, context-aware conversational interface that talks directly to the vault. Includes a local SQLite database (data/chat_history.db) for memory retention across sessions.auto_tagger.py): Introduced a metadata scanner usingPyYAMLto inject AI tags without destroying existing properties (aliases, links). Fully supports Unicode (Portuguese characters) and includes fuzzy-search for targeted note overrides.moc_generator.py): Added a categorical clustering tool to automatically build Maps of Content, effectively eliminating "orphan notes" by generating centralized index hubs.Architectural Changes
core/): Extracted all shared AI logic and routing into a dedicatedcore/package.Documentation
README.mdto reflect the new architecture.