agentcache-core 0.9.9__tar.gz → 0.9.10__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.
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/PKG-INFO +5 -3
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/README.md +4 -2
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/pyproject.toml +2 -1
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/__init__.py +1 -1
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/connect.py +394 -164
- agentcache_core-0.9.10/src/agentcache/integrations/__init__.py +5 -0
- agentcache_core-0.9.10/src/agentcache/integrations/hermes/README.md +107 -0
- agentcache_core-0.9.10/src/agentcache/integrations/hermes/__init__.py +485 -0
- agentcache_core-0.9.10/src/agentcache/integrations/hermes/plugin.yaml +12 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/mcp_stdio.py +1 -1
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/health.py +1 -1
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/viewer_helpers.py +1 -1
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache_core.egg-info/PKG-INFO +5 -3
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache_core.egg-info/SOURCES.txt +5 -0
- agentcache_core-0.9.10/tests/test_connect_repair.py +533 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/LICENSE +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/setup.cfg +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/app.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/cli.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/__init__.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/audit_log.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/config.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/context_builder.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/graph.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/image_store.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/infer.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/kv_scopes.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/lessons.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/llm.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/memory_store.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/observation_store.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/privacy.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/project_profile.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/search_service.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/session_store.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/core/slots.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/db.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/import_data.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/legacy.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/py.typed +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/replay_import.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/__init__.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/_deps.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/auth.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/graph.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/mcp.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/memories.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/migration.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/observations.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/routes/search.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/search.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/storage/__init__.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/storage/images.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/storage/paths.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/storage/scopes.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/viewer/favicon.svg +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/viewer/index.html +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache/workers.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache_core.egg-info/dependency_links.txt +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache_core.egg-info/entry_points.txt +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache_core.egg-info/requires.txt +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/src/agentcache_core.egg-info/top_level.txt +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/tests/test_auth.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/tests/test_legacy_reexports.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/tests/test_observation_store.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/tests/test_routes_auth_matrix.py +0 -0
- {agentcache_core-0.9.9 → agentcache_core-0.9.10}/tests/test_search_service.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentcache-core
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.10
|
|
4
4
|
Summary: A Python REST + WebSocket + MCP cache server for AI agents, backed by SQLite
|
|
5
5
|
Author-email: Yashwant K <yashwantk0303@gmail.com>
|
|
6
6
|
Maintainer-email: Yashwant K <yashwantk0303@gmail.com>
|
|
@@ -130,11 +130,13 @@ Top-level exports: `create_app`, `StateKV`, `KV`, `ObservationStore`, `Observati
|
|
|
130
130
|
## Wire it into your agent
|
|
131
131
|
|
|
132
132
|
```bash
|
|
133
|
-
agentcache connect claude-code # or: cursor, cline, kiro, antigravity, codex
|
|
133
|
+
agentcache connect claude-code # or: cursor, cline, kiro, antigravity, codex, hermes, vscode
|
|
134
134
|
agentcache connect --all # detect and wire every supported client
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
-
This registers the MCP stdio bridge (`agentcache.mcp_stdio`) and, with `--with-hooks`, installs workspace hook blocks that call `/agentcache/observe` on file events.
|
|
137
|
+
This registers the MCP stdio bridge (`agentcache.mcp_stdio`) and, with `--with-hooks`, installs workspace hook blocks that call `/agentcache/observe` on file events. Re-running is safe — the CLI detects stale entries (wrong interpreter path, missing env keys, etc.) and repairs them, or prints a `--force` hint when the entry is already up to date.
|
|
138
|
+
|
|
139
|
+
See [docs/mcp-setup.md](docs/mcp-setup.md) for per-client config paths, manual wiring, and troubleshooting.
|
|
138
140
|
|
|
139
141
|
---
|
|
140
142
|
|
|
@@ -91,11 +91,13 @@ Top-level exports: `create_app`, `StateKV`, `KV`, `ObservationStore`, `Observati
|
|
|
91
91
|
## Wire it into your agent
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
agentcache connect claude-code # or: cursor, cline, kiro, antigravity, codex
|
|
94
|
+
agentcache connect claude-code # or: cursor, cline, kiro, antigravity, codex, hermes, vscode
|
|
95
95
|
agentcache connect --all # detect and wire every supported client
|
|
96
96
|
```
|
|
97
97
|
|
|
98
|
-
This registers the MCP stdio bridge (`agentcache.mcp_stdio`) and, with `--with-hooks`, installs workspace hook blocks that call `/agentcache/observe` on file events.
|
|
98
|
+
This registers the MCP stdio bridge (`agentcache.mcp_stdio`) and, with `--with-hooks`, installs workspace hook blocks that call `/agentcache/observe` on file events. Re-running is safe — the CLI detects stale entries (wrong interpreter path, missing env keys, etc.) and repairs them, or prints a `--force` hint when the entry is already up to date.
|
|
99
|
+
|
|
100
|
+
See [docs/mcp-setup.md](docs/mcp-setup.md) for per-client config paths, manual wiring, and troubleshooting.
|
|
99
101
|
|
|
100
102
|
---
|
|
101
103
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "agentcache-core"
|
|
7
|
-
version = "0.9.
|
|
7
|
+
version = "0.9.10"
|
|
8
8
|
description = "A Python REST + WebSocket + MCP cache server for AI agents, backed by SQLite"
|
|
9
9
|
readme = { file = "README.md", content-type = "text/markdown" }
|
|
10
10
|
authors = [
|
|
@@ -63,6 +63,7 @@ include = ["agentcache*"]
|
|
|
63
63
|
[tool.setuptools.package-data]
|
|
64
64
|
"agentcache" = ["py.typed"]
|
|
65
65
|
"agentcache.viewer" = ["*.html", "*.svg", "*.js", "*.css"]
|
|
66
|
+
"agentcache.integrations.hermes" = ["plugin.yaml", "README.md"]
|
|
66
67
|
|
|
67
68
|
[tool.pytest.ini_options]
|
|
68
69
|
testpaths = ["tests"]
|