memory-journal-mcp 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/.dockerignore +88 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +76 -0
  3. package/.github/ISSUE_TEMPLATE/config.yml +11 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.md +89 -0
  5. package/.github/ISSUE_TEMPLATE/question.md +63 -0
  6. package/.github/dependabot.yml +110 -0
  7. package/.github/pull_request_template.md +110 -0
  8. package/.github/workflows/DOCKER_DEPLOYMENT_SETUP.md +346 -0
  9. package/.github/workflows/codeql.yml +45 -0
  10. package/.github/workflows/dependabot-auto-merge.yml +42 -0
  11. package/.github/workflows/docker-publish.yml +277 -0
  12. package/.github/workflows/lint-and-test.yml +58 -0
  13. package/.github/workflows/publish-npm.yml +75 -0
  14. package/.github/workflows/secrets-scanning.yml +32 -0
  15. package/.github/workflows/security-update.yml +99 -0
  16. package/.memory-journal-team.db +0 -0
  17. package/.trivyignore +18 -0
  18. package/CHANGELOG.md +19 -0
  19. package/CODE_OF_CONDUCT.md +128 -0
  20. package/CONTRIBUTING.md +209 -0
  21. package/DOCKER_README.md +377 -0
  22. package/Dockerfile +64 -0
  23. package/LICENSE +21 -0
  24. package/README.md +461 -0
  25. package/SECURITY.md +200 -0
  26. package/VERSION +1 -0
  27. package/dist/cli.d.ts +5 -0
  28. package/dist/cli.d.ts.map +1 -0
  29. package/dist/cli.js +42 -0
  30. package/dist/cli.js.map +1 -0
  31. package/dist/constants/ServerInstructions.d.ts +8 -0
  32. package/dist/constants/ServerInstructions.d.ts.map +1 -0
  33. package/dist/constants/ServerInstructions.js +26 -0
  34. package/dist/constants/ServerInstructions.js.map +1 -0
  35. package/dist/database/SqliteAdapter.d.ts +198 -0
  36. package/dist/database/SqliteAdapter.d.ts.map +1 -0
  37. package/dist/database/SqliteAdapter.js +736 -0
  38. package/dist/database/SqliteAdapter.js.map +1 -0
  39. package/dist/filtering/ToolFilter.d.ts +63 -0
  40. package/dist/filtering/ToolFilter.d.ts.map +1 -0
  41. package/dist/filtering/ToolFilter.js +242 -0
  42. package/dist/filtering/ToolFilter.js.map +1 -0
  43. package/dist/github/GitHubIntegration.d.ts +91 -0
  44. package/dist/github/GitHubIntegration.d.ts.map +1 -0
  45. package/dist/github/GitHubIntegration.js +317 -0
  46. package/dist/github/GitHubIntegration.js.map +1 -0
  47. package/dist/handlers/prompts/index.d.ts +28 -0
  48. package/dist/handlers/prompts/index.d.ts.map +1 -0
  49. package/dist/handlers/prompts/index.js +366 -0
  50. package/dist/handlers/prompts/index.js.map +1 -0
  51. package/dist/handlers/resources/index.d.ts +27 -0
  52. package/dist/handlers/resources/index.d.ts.map +1 -0
  53. package/dist/handlers/resources/index.js +453 -0
  54. package/dist/handlers/resources/index.js.map +1 -0
  55. package/dist/handlers/tools/index.d.ts +26 -0
  56. package/dist/handlers/tools/index.d.ts.map +1 -0
  57. package/dist/handlers/tools/index.js +982 -0
  58. package/dist/handlers/tools/index.js.map +1 -0
  59. package/dist/index.d.ts +11 -0
  60. package/dist/index.d.ts.map +1 -0
  61. package/dist/index.js +13 -0
  62. package/dist/index.js.map +1 -0
  63. package/dist/server/McpServer.d.ts +18 -0
  64. package/dist/server/McpServer.d.ts.map +1 -0
  65. package/dist/server/McpServer.js +171 -0
  66. package/dist/server/McpServer.js.map +1 -0
  67. package/dist/types/index.d.ts +300 -0
  68. package/dist/types/index.d.ts.map +1 -0
  69. package/dist/types/index.js +15 -0
  70. package/dist/types/index.js.map +1 -0
  71. package/dist/utils/McpLogger.d.ts +61 -0
  72. package/dist/utils/McpLogger.d.ts.map +1 -0
  73. package/dist/utils/McpLogger.js +113 -0
  74. package/dist/utils/McpLogger.js.map +1 -0
  75. package/dist/utils/logger.d.ts +30 -0
  76. package/dist/utils/logger.d.ts.map +1 -0
  77. package/dist/utils/logger.js +70 -0
  78. package/dist/utils/logger.js.map +1 -0
  79. package/dist/vector/VectorSearchManager.d.ts +63 -0
  80. package/dist/vector/VectorSearchManager.d.ts.map +1 -0
  81. package/dist/vector/VectorSearchManager.js +235 -0
  82. package/dist/vector/VectorSearchManager.js.map +1 -0
  83. package/docker-compose.yml +37 -0
  84. package/eslint.config.js +86 -0
  85. package/mcp-config-example.json +21 -0
  86. package/package.json +71 -0
  87. package/releases/release-notes-v2.2.0.md +165 -0
  88. package/releases/release-notes.md +214 -0
  89. package/releases/v3.0.0.md +236 -0
  90. package/server.json +42 -0
  91. package/src/cli.ts +52 -0
  92. package/src/constants/ServerInstructions.ts +25 -0
  93. package/src/database/SqliteAdapter.ts +952 -0
  94. package/src/filtering/ToolFilter.ts +271 -0
  95. package/src/github/GitHubIntegration.ts +409 -0
  96. package/src/handlers/prompts/index.ts +420 -0
  97. package/src/handlers/resources/index.ts +529 -0
  98. package/src/handlers/tools/index.ts +1081 -0
  99. package/src/index.ts +53 -0
  100. package/src/server/McpServer.ts +230 -0
  101. package/src/types/index.ts +435 -0
  102. package/src/types/sql.js.d.ts +34 -0
  103. package/src/utils/McpLogger.ts +155 -0
  104. package/src/utils/logger.ts +98 -0
  105. package/src/vector/VectorSearchManager.ts +277 -0
  106. package/tools.json +300 -0
  107. package/tsconfig.json +51 -0
package/.dockerignore ADDED
@@ -0,0 +1,88 @@
1
+ # Git and version control
2
+ .git
3
+ .gitignore
4
+ .github/
5
+
6
+ # GitHub-specific files
7
+ CODE_OF_CONDUCT.md
8
+ CONTRIBUTING.md
9
+ .github/
10
+ SECURITY.md
11
+
12
+ # Python
13
+ __pycache__/
14
+ *.py[cod]
15
+ *$py.class
16
+ *.so
17
+ .Python
18
+ build/
19
+ develop-eggs/
20
+ dist/
21
+ downloads/
22
+ eggs/
23
+ .eggs/
24
+ lib/
25
+ lib64/
26
+ parts/
27
+ sdist/
28
+ var/
29
+ wheels/
30
+ *.egg-info/
31
+ .installed.cfg
32
+ *.egg
33
+
34
+ # Virtual environments
35
+ venv/
36
+ env/
37
+ ENV/
38
+
39
+ # IDE
40
+ .vscode/
41
+ .cursor/
42
+ *.swp
43
+ *.swo
44
+ *~
45
+
46
+ # OS
47
+ .DS_Store
48
+ Thumbs.db
49
+
50
+ # Documentation (keep README for Docker Hub description)
51
+ docs/
52
+ DOCKER.md
53
+ DOCKER_PUBLISH.md
54
+ memory_journal_v*.md
55
+
56
+ # Data directory (will be mounted as volume)
57
+ data/
58
+
59
+ # Temporary files
60
+ temp/
61
+ tmp/
62
+ *.tmp
63
+ *.temp
64
+
65
+ # Logs
66
+ *.log
67
+ logs/
68
+
69
+ # Database files (runtime only)
70
+ *.db
71
+ *.db-shm
72
+ *.db-wal
73
+
74
+ # Development files
75
+ docker-compose.yml
76
+ mcp-config-example.json
77
+ tools.json
78
+
79
+ # CI/CD files
80
+ .github/workflows/
81
+ dependabot.yml
82
+
83
+ # Security files
84
+ trivy-results.sarif
85
+ *.pem
86
+ *.key
87
+ .env
88
+ .env.*
@@ -0,0 +1,76 @@
1
+ ---
2
+ name: Bug Report
3
+ about: Create a report to help us improve the Memory Journal MCP Server
4
+ title: '[BUG] '
5
+ labels: ['bug']
6
+ assignees: ''
7
+ ---
8
+
9
+ ## ๐Ÿ› Bug Description
10
+ A clear and concise description of what the bug is.
11
+
12
+ ## ๐Ÿ”„ Steps to Reproduce
13
+ Steps to reproduce the behavior:
14
+ 1. Go to '...'
15
+ 2. Execute command '...'
16
+ 3. See error
17
+
18
+ ## โœ… Expected Behavior
19
+ A clear and concise description of what you expected to happen.
20
+
21
+ ## โŒ Actual Behavior
22
+ A clear and concise description of what actually happened.
23
+
24
+ ## ๐Ÿ“ฑ Environment
25
+ **MCP Client:**
26
+ - Client: [e.g. Cursor, Claude Desktop]
27
+ - Version: [e.g. 0.42.3]
28
+
29
+ **System:**
30
+ - OS: [e.g. Windows 11, macOS 14, Ubuntu 22.04]
31
+ - Python Version: [e.g. 3.11.5]
32
+ - Docker Version: [e.g. 24.0.6] (if using Docker)
33
+
34
+ **Memory Journal MCP:**
35
+ - Version/Tag: [e.g. :lite, :latest, commit hash]
36
+ - Installation Method: [Docker Hub, local build, manual]
37
+
38
+ ## ๐Ÿ“‹ Configuration
39
+ **MCP Configuration** (from ~/.cursor/mcp.json or similar):
40
+ ```json
41
+ {
42
+ "mcpServers": {
43
+ "memory-journal": {
44
+ // Your configuration here
45
+ }
46
+ }
47
+ }
48
+ ```
49
+
50
+ ## ๐Ÿ“Š Database State
51
+ - Database size: [e.g. 2.3MB, empty]
52
+ - Number of entries: [e.g. 150 entries, fresh install]
53
+ - Recent operations: [e.g. created 5 entries today]
54
+
55
+ ## ๐Ÿ” Error Logs
56
+ **Error Messages:**
57
+ ```
58
+ Paste any error messages or stack traces here
59
+ ```
60
+
61
+ **MCP Server Logs:**
62
+ ```
63
+ Include any relevant server output or logs
64
+ ```
65
+
66
+ ## ๐Ÿ–ผ๏ธ Screenshots
67
+ If applicable, add screenshots to help explain your problem.
68
+
69
+ ## ๐Ÿ”ง Additional Context
70
+ Add any other context about the problem here:
71
+ - Does this happen consistently or intermittently?
72
+ - Any recent changes to your setup?
73
+ - Workarounds you've tried?
74
+
75
+ ## โœจ Possible Solution
76
+ If you have ideas on how to fix this, please share them here.
@@ -0,0 +1,11 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: ๐Ÿ“š Documentation
4
+ url: https://github.com/neverinfamous/memory-journal-mcp/blob/main/README.md
5
+ about: Check the comprehensive README for setup instructions and usage examples
6
+ - name: ๐Ÿณ Docker Hub
7
+ url: https://hub.docker.com/r/writenotenow/memory-journal-mcp
8
+ about: View the official Docker images and installation instructions
9
+ - name: ๐Ÿ’ฌ GitHub Discussions
10
+ url: https://github.com/neverinfamous/memory-journal-mcp/discussions
11
+ about: Ask questions, share ideas, and discuss with the community
@@ -0,0 +1,89 @@
1
+ ---
2
+ name: Feature Request
3
+ about: Suggest an idea for the Memory Journal MCP Server
4
+ title: '[FEATURE] '
5
+ labels: ['enhancement']
6
+ assignees: ''
7
+ ---
8
+
9
+ ## ๐Ÿš€ Feature Summary
10
+ A clear and concise description of the feature you'd like to see.
11
+
12
+ ## ๐Ÿ’ก Problem Statement
13
+ **Is your feature request related to a problem? Please describe.**
14
+ A clear description of what the problem is. Ex. I'm always frustrated when [...]
15
+
16
+ ## ๐ŸŽฏ Proposed Solution
17
+ **Describe the solution you'd like**
18
+ A clear and concise description of what you want to happen.
19
+
20
+ ## ๐Ÿ”„ Developer Workflow
21
+ **How would this fit into developer workflows?**
22
+ Describe how this feature would be used in day-to-day development work:
23
+ - When would developers use this?
24
+ - What problem does it solve in their workflow?
25
+ - How does it integrate with existing tools/processes?
26
+
27
+ ## ๐Ÿ“‹ Detailed Requirements
28
+ **Specific functionality needed:**
29
+ - [ ] Requirement 1
30
+ - [ ] Requirement 2
31
+ - [ ] Requirement 3
32
+
33
+ ## ๐Ÿ› ๏ธ Technical Considerations
34
+ **Implementation thoughts:**
35
+ - Database schema changes needed?
36
+ - New MCP tools required?
37
+ - Docker image impact?
38
+ - Performance considerations?
39
+ - Breaking changes?
40
+
41
+ ## ๐Ÿ“Š Example Usage
42
+ **Show how this would work:**
43
+
44
+ ```javascript
45
+ // Example MCP tool usage
46
+ create_entry({
47
+ content: "Example of how the new feature would work",
48
+ new_feature_param: "value"
49
+ })
50
+ ```
51
+
52
+ **Or command examples:**
53
+ ```bash
54
+ # Example command or configuration
55
+ docker run memory-journal-mcp --new-feature
56
+ ```
57
+
58
+ ## ๐Ÿ”€ Alternatives Considered
59
+ **Describe alternatives you've considered**
60
+ A clear description of any alternative solutions or features you've considered.
61
+
62
+ ## ๐ŸŽจ User Experience
63
+ **How should this feel to use?**
64
+ - Should it be automatic or manual?
65
+ - What feedback should users get?
66
+ - How should errors be handled?
67
+ - Integration with existing UI/prompts?
68
+
69
+ ## ๐Ÿ“ˆ Success Criteria
70
+ **How will we know this feature is successful?**
71
+ - [ ] Criteria 1
72
+ - [ ] Criteria 2
73
+ - [ ] Criteria 3
74
+
75
+ ## ๐Ÿ”— Related Issues
76
+ **Link any related issues or discussions:**
77
+ - Fixes #123
78
+ - Related to #456
79
+ - Depends on #789
80
+
81
+ ## ๐Ÿ“ Additional Context
82
+ Add any other context, mockups, or screenshots about the feature request here.
83
+
84
+ ## ๐Ÿ† Implementation Interest
85
+ **Are you interested in implementing this feature?**
86
+ - [ ] I'd like to work on this
87
+ - [ ] I can help with testing
88
+ - [ ] I can help with documentation
89
+ - [ ] I'm just suggesting the idea
@@ -0,0 +1,63 @@
1
+ ---
2
+ name: Question
3
+ about: Ask a question about using the Memory Journal MCP Server
4
+ title: '[QUESTION] '
5
+ labels: ['question']
6
+ assignees: ''
7
+ ---
8
+
9
+ ## โ“ Question
10
+ A clear and concise question about the Memory Journal MCP Server.
11
+
12
+ ## ๐ŸŽฏ What I'm Trying to Do
13
+ Describe what you're trying to accomplish:
14
+ - What's your use case?
15
+ - What workflow are you trying to implement?
16
+ - What's the end goal?
17
+
18
+ ## ๐Ÿ”„ What I've Tried
19
+ **Steps I've already taken:**
20
+ 1. Checked the README documentation
21
+ 2. Searched existing issues
22
+ 3. Tried these approaches:
23
+ - Approach 1
24
+ - Approach 2
25
+
26
+ ## ๐Ÿ“ฑ Environment
27
+ **System:**
28
+ - OS: [e.g. Windows 11, macOS 14, Ubuntu 22.04]
29
+ - MCP Client: [e.g. Cursor 0.42.3]
30
+ - Installation: [Docker Hub :lite, local build, etc.]
31
+
32
+ ## ๐Ÿ“‹ Configuration
33
+ **Current MCP Configuration:**
34
+ ```json
35
+ {
36
+ "mcpServers": {
37
+ "memory-journal": {
38
+ // Your configuration here
39
+ }
40
+ }
41
+ }
42
+ ```
43
+
44
+ ## ๐Ÿ“Š Current Behavior
45
+ **What's happening now:**
46
+ Describe the current behavior you're seeing.
47
+
48
+ ## โœ… Expected/Desired Behavior
49
+ **What I want to happen:**
50
+ Describe what you'd like to see happen instead.
51
+
52
+ ## ๐Ÿ” Specific Questions
53
+ **Specific things I need help with:**
54
+ 1. Question 1?
55
+ 2. Question 2?
56
+ 3. Question 3?
57
+
58
+ ## ๐Ÿ“ Additional Context
59
+ Add any other context that might be helpful:
60
+ - Error messages
61
+ - Screenshots
62
+ - Related documentation you've read
63
+ - Similar tools you've used
@@ -0,0 +1,110 @@
1
+ # Dependabot configuration for Memory Journal MCP Server
2
+ # Manages 72+ dependencies including ML libraries and NVIDIA CUDA packages
3
+
4
+ version: 2
5
+ updates:
6
+ # Python dependencies (pip)
7
+ - package-ecosystem: "pip"
8
+ directory: "/"
9
+ schedule:
10
+ interval: "weekly"
11
+ day: "monday"
12
+ time: "09:00"
13
+ timezone: "America/New_York"
14
+ open-pull-requests-limit: 10
15
+ reviewers:
16
+ - "neverinfamous"
17
+ labels:
18
+ - "dependencies"
19
+ - "python"
20
+ # Group ML/AI related packages to reduce PR noise
21
+ groups:
22
+ ml-packages:
23
+ patterns:
24
+ - "torch*"
25
+ - "nvidia-*"
26
+ - "transformers*"
27
+ - "sentence-transformers*"
28
+ - "huggingface-*"
29
+ - "scikit-learn*"
30
+ - "scipy*"
31
+ - "numpy*"
32
+ - "faiss-*"
33
+ - "pillow*"
34
+ - "tokenizers*"
35
+ - "safetensors*"
36
+ update-types:
37
+ - "minor"
38
+ - "patch"
39
+ mcp-core:
40
+ patterns:
41
+ - "mcp*"
42
+ - "pydantic*"
43
+ - "httpx*"
44
+ - "starlette*"
45
+ - "uvicorn*"
46
+ update-types:
47
+ - "minor"
48
+ - "patch"
49
+ utilities:
50
+ patterns:
51
+ - "tqdm*"
52
+ - "click*"
53
+ - "pyyaml*"
54
+ - "requests*"
55
+ - "urllib3*"
56
+ - "certifi*"
57
+ - "charset-normalizer*"
58
+ - "idna*"
59
+ - "filelock*"
60
+ - "packaging*"
61
+ - "attrs*"
62
+ update-types:
63
+ - "patch"
64
+ # Ignore specific packages that might cause compatibility issues
65
+ ignore:
66
+ # NVIDIA CUDA packages - only update for security fixes
67
+ - dependency-name: "nvidia-*"
68
+ update-types: ["version-update:semver-minor"]
69
+ # PyTorch - be conservative with updates
70
+ - dependency-name: "torch"
71
+ update-types: ["version-update:semver-major"]
72
+ - dependency-name: "triton"
73
+ update-types: ["version-update:semver-major"]
74
+
75
+ # GitHub Actions
76
+ - package-ecosystem: "github-actions"
77
+ directory: "/"
78
+ schedule:
79
+ interval: "weekly"
80
+ day: "monday"
81
+ time: "10:00"
82
+ timezone: "America/New_York"
83
+ open-pull-requests-limit: 5
84
+ reviewers:
85
+ - "neverinfamous"
86
+ labels:
87
+ - "dependencies"
88
+ - "github-actions"
89
+ groups:
90
+ actions:
91
+ patterns:
92
+ - "actions/*"
93
+ update-types:
94
+ - "minor"
95
+ - "patch"
96
+
97
+ # Docker dependencies (if using Docker Compose)
98
+ - package-ecosystem: "docker"
99
+ directory: "/"
100
+ schedule:
101
+ interval: "weekly"
102
+ day: "tuesday"
103
+ time: "09:00"
104
+ timezone: "America/New_York"
105
+ open-pull-requests-limit: 3
106
+ reviewers:
107
+ - "neverinfamous"
108
+ labels:
109
+ - "dependencies"
110
+ - "docker"
@@ -0,0 +1,110 @@
1
+ ## ๐Ÿ“‹ Summary
2
+ Brief description of the changes in this PR.
3
+
4
+ ## ๐ŸŽฏ Type of Change
5
+ - [ ] ๐Ÿ› Bug fix (non-breaking change which fixes an issue)
6
+ - [ ] โœจ New feature (non-breaking change which adds functionality)
7
+ - [ ] ๐Ÿ’ฅ Breaking change (fix or feature that would cause existing functionality to not work as expected)
8
+ - [ ] ๐Ÿ“š Documentation update
9
+ - [ ] ๐Ÿ”ง Refactoring (no functional changes)
10
+ - [ ] โšก Performance improvement
11
+ - [ ] ๐Ÿงช Test addition or improvement
12
+
13
+ ## ๐Ÿ”— Related Issues
14
+ - Fixes #(issue number)
15
+ - Addresses #(issue number)
16
+ - Related to #(issue number)
17
+
18
+ ## ๐Ÿ”„ Changes Made
19
+ **Detailed description of changes:**
20
+ - Change 1: Description
21
+ - Change 2: Description
22
+ - Change 3: Description
23
+
24
+ ## ๐Ÿงช Testing Performed
25
+ **How did you test these changes?**
26
+ - [ ] Manual testing in Cursor
27
+ - [ ] Docker lite build tested
28
+ - [ ] Docker full build tested
29
+ - [ ] Database migration tested
30
+ - [ ] Existing functionality verified
31
+ - [ ] New functionality tested
32
+
33
+ **Test scenarios covered:**
34
+ 1. Scenario 1: Description and result
35
+ 2. Scenario 2: Description and result
36
+ 3. Scenario 3: Description and result
37
+
38
+ ## ๐Ÿ“ฑ Environment Tested
39
+ - **OS:** [e.g. Windows 11, macOS 14, Ubuntu 22.04]
40
+ - **Python:** [e.g. 3.11.5]
41
+ - **Docker:** [e.g. 24.0.6]
42
+ - **MCP Client:** [e.g. Cursor 0.42.3]
43
+
44
+ ## ๐Ÿ”„ Breaking Changes
45
+ **Are there any breaking changes?**
46
+ - [ ] No breaking changes
47
+ - [ ] Yes, breaking changes (describe below)
48
+
49
+ **If yes, describe the breaking changes:**
50
+ - What will break?
51
+ - How should users migrate?
52
+ - What's the impact?
53
+
54
+ ## ๐Ÿ“Š Database Changes
55
+ - [ ] No database schema changes
56
+ - [ ] Schema changes included (describe below)
57
+ - [ ] Migration script provided
58
+ - [ ] Backward compatibility maintained
59
+
60
+ **If schema changes, describe:**
61
+ - What tables/columns are affected?
62
+ - Is there a migration path?
63
+ - Any data loss potential?
64
+
65
+ ## ๐Ÿณ Docker Impact
66
+ - [ ] No Docker changes
67
+ - [ ] Dockerfile.lite updated
68
+ - [ ] Dockerfile updated
69
+ - [ ] New dependencies added
70
+ - [ ] Image size impact: [increase/decrease by X MB]
71
+
72
+ ## ๐Ÿ“š Documentation
73
+ - [ ] No documentation changes needed
74
+ - [ ] README.md updated
75
+ - [ ] CONTRIBUTING.md updated
76
+ - [ ] New documentation added
77
+ - [ ] Examples updated
78
+
79
+ ## โœ… Checklist
80
+ **Before submitting this PR:**
81
+ - [ ] Code follows the project's coding standards
82
+ - [ ] Self-review of the code completed
83
+ - [ ] Comments added to hard-to-understand areas
84
+ - [ ] Tests pass locally
85
+ - [ ] No new warnings or errors introduced
86
+ - [ ] Relevant documentation updated
87
+ - [ ] Changes work in both lite and full Docker variants
88
+
89
+ ## ๐Ÿ–ผ๏ธ Screenshots
90
+ **If applicable, add screenshots to help explain your changes:**
91
+ [Add screenshots here]
92
+
93
+ ## ๐Ÿš€ Deployment Notes
94
+ **Anything special needed for deployment?**
95
+ - Special configuration required?
96
+ - Migration steps needed?
97
+ - Rollback considerations?
98
+
99
+ ## ๐Ÿ“ Additional Notes
100
+ **Any other information that reviewers should know:**
101
+ - Implementation decisions made
102
+ - Trade-offs considered
103
+ - Future improvements planned
104
+ - Known limitations
105
+
106
+ ## ๐Ÿ™‹ Questions for Reviewers
107
+ **Specific areas where you'd like feedback:**
108
+ 1. Question 1?
109
+ 2. Question 2?
110
+ 3. Question 3?