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.
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/PKG-INFO +21 -2
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/README.md +20 -1
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/pyproject.toml +1 -1
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/.gitignore +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/LICENSE +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/post_tool_use.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/pre_tool_use.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/stop.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/hooks/subagent_stop.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/categorization/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/categorization/auto_tags.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/categorization/auto_type.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/config.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/connection.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/migrations.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/schema.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/database/sync.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/decay/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/decay/importance.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/embeddings/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/embeddings/local.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/activity.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/agent.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/memory.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/relationship.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/models/session.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/resources/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/hybrid.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/keyword.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/ranking.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/search/semantic.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/server.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/setup.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/activities.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/memories.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/sessions.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/tools/utilities.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/__init__.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/formatting.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/ids.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/timestamps.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/omni_cortex/utils/truncation.py +0 -0
- {omni_cortex-1.0.2 → omni_cortex-1.0.3}/scripts/import_ken_memories.py +0 -0
- {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.
|
|
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
|
|
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
|
|
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
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|