omni-cortex 1.0.2__tar.gz → 1.0.3__tar.gz

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 (49) hide show
  1. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/PKG-INFO +21 -2
  2. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/README.md +20 -1
  3. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/pyproject.toml +1 -1
  4. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/.gitignore +0 -0
  5. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/LICENSE +0 -0
  6. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/post_tool_use.py +0 -0
  7. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/pre_tool_use.py +0 -0
  8. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/stop.py +0 -0
  9. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/subagent_stop.py +0 -0
  10. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/__init__.py +0 -0
  11. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/categorization/__init__.py +0 -0
  12. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/categorization/auto_tags.py +0 -0
  13. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/categorization/auto_type.py +0 -0
  14. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/config.py +0 -0
  15. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/__init__.py +0 -0
  16. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/connection.py +0 -0
  17. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/migrations.py +0 -0
  18. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/schema.py +0 -0
  19. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/sync.py +0 -0
  20. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/decay/__init__.py +0 -0
  21. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/decay/importance.py +0 -0
  22. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/embeddings/__init__.py +0 -0
  23. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/embeddings/local.py +0 -0
  24. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/__init__.py +0 -0
  25. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/activity.py +0 -0
  26. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/agent.py +0 -0
  27. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/memory.py +0 -0
  28. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/relationship.py +0 -0
  29. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/session.py +0 -0
  30. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/resources/__init__.py +0 -0
  31. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/__init__.py +0 -0
  32. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/hybrid.py +0 -0
  33. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/keyword.py +0 -0
  34. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/ranking.py +0 -0
  35. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/semantic.py +0 -0
  36. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/server.py +0 -0
  37. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/setup.py +0 -0
  38. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/__init__.py +0 -0
  39. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/activities.py +0 -0
  40. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/memories.py +0 -0
  41. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/sessions.py +0 -0
  42. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/utilities.py +0 -0
  43. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/__init__.py +0 -0
  44. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/formatting.py +0 -0
  45. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/ids.py +0 -0
  46. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/timestamps.py +0 -0
  47. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/truncation.py +0 -0
  48. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/scripts/import_ken_memories.py +0 -0
  49. {omni_cortex-1.0.2 → omni_cortex-1.0.3}/scripts/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omni-cortex
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: Universal Memory MCP for Claude Code - dual-layer activity logging and knowledge storage
5
5
  Project-URL: Homepage, https://github.com/AllCytes/Omni-Cortex
6
6
  Project-URL: Repository, https://github.com/AllCytes/Omni-Cortex
@@ -207,8 +207,27 @@ context_depth: 3
207
207
 
208
208
  ## Documentation
209
209
 
210
- - [Tool Reference](docs/TOOLS.md) - Complete documentation for all 15 tools with examples
210
+ - [Tool Reference](docs/TOOLS.md) - Complete documentation for all 18 tools with examples
211
211
  - [Configuration Guide](docs/CONFIGURATION.md) - Configuration options and troubleshooting
212
+ - **Teaching Materials** (PDF):
213
+ - `docs/OmniCortex_QuickStart.pdf` - 3-page quick start guide
214
+ - `docs/OmniCortex_FeatureComparison.pdf` - Comparison with basic memory MCPs
215
+ - `docs/OmniCortex_Philosophy.pdf` - Design principles and inspiration
216
+ - `docs/OmniCortex_CommandReference.pdf` - All tools with parameters
217
+
218
+ ### Regenerating PDFs
219
+
220
+ To regenerate the teaching material PDFs:
221
+
222
+ ```bash
223
+ # Requires reportlab
224
+ pip install reportlab
225
+
226
+ # Generate all 4 PDFs
227
+ python docs/create_pdfs.py
228
+ ```
229
+
230
+ The PDFs use a light theme with blue/purple/green accents. Edit `docs/create_pdfs.py` to customize colors or content.
212
231
 
213
232
  ## Development
214
233
 
@@ -170,8 +170,27 @@ context_depth: 3
170
170
 
171
171
  ## Documentation
172
172
 
173
- - [Tool Reference](docs/TOOLS.md) - Complete documentation for all 15 tools with examples
173
+ - [Tool Reference](docs/TOOLS.md) - Complete documentation for all 18 tools with examples
174
174
  - [Configuration Guide](docs/CONFIGURATION.md) - Configuration options and troubleshooting
175
+ - **Teaching Materials** (PDF):
176
+ - `docs/OmniCortex_QuickStart.pdf` - 3-page quick start guide
177
+ - `docs/OmniCortex_FeatureComparison.pdf` - Comparison with basic memory MCPs
178
+ - `docs/OmniCortex_Philosophy.pdf` - Design principles and inspiration
179
+ - `docs/OmniCortex_CommandReference.pdf` - All tools with parameters
180
+
181
+ ### Regenerating PDFs
182
+
183
+ To regenerate the teaching material PDFs:
184
+
185
+ ```bash
186
+ # Requires reportlab
187
+ pip install reportlab
188
+
189
+ # Generate all 4 PDFs
190
+ python docs/create_pdfs.py
191
+ ```
192
+
193
+ The PDFs use a light theme with blue/purple/green accents. Edit `docs/create_pdfs.py` to customize colors or content.
175
194
 
176
195
  ## Development
177
196
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "omni-cortex"
7
- version = "1.0.2"
7
+ version = "1.0.3"
8
8
  description = "Universal Memory MCP for Claude Code - dual-layer activity logging and knowledge storage"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes