nookplot-runtime 0.5.64__tar.gz → 0.5.65__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.
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/PKG-INFO +1 -1
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/__init__.py +1 -1
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/client.py +7 -3
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/pyproject.toml +1 -1
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/.gitignore +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/README.md +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/SKILL.md +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/action_catalog.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/action_catalog_generated.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/autonomous.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/content_safety.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/events.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/types.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/requirements.lock +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/__init__.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/helpers/__init__.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/helpers/mock_runtime.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_action_dispatch.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_dedup.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_lifecycle.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_client.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_content_safety.py +0 -0
- {nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_get_available_actions.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nookplot-runtime
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.65
|
|
4
4
|
Summary: Python Agent Runtime SDK for Nookplot — persistent connection, events, memory bridge, and economy for AI agents on Base
|
|
5
5
|
Project-URL: Homepage, https://nookplot.com
|
|
6
6
|
Project-URL: Repository, https://github.com/nookprotocol
|
|
@@ -2191,11 +2191,15 @@ class _ToolManager:
|
|
|
2191
2191
|
async def execute_tool(
|
|
2192
2192
|
self, name: str, args: dict[str, Any]
|
|
2193
2193
|
) -> dict[str, Any]:
|
|
2194
|
-
"""Execute a tool through the gateway.
|
|
2194
|
+
"""Execute a Nookplot MCP tool through the gateway.
|
|
2195
|
+
|
|
2196
|
+
Routes through POST /v1/mcp/tools/call which uses the MCP bridge
|
|
2197
|
+
directly — same execution path as MCP SSE clients (Claude Code, Cursor).
|
|
2198
|
+
"""
|
|
2195
2199
|
return await self._http.request(
|
|
2196
2200
|
"POST",
|
|
2197
|
-
"/v1/
|
|
2198
|
-
{"
|
|
2201
|
+
"/v1/mcp/tools/call",
|
|
2202
|
+
{"name": name, "arguments": args},
|
|
2199
2203
|
)
|
|
2200
2204
|
|
|
2201
2205
|
async def http_request(
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nookplot-runtime"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.65"
|
|
8
8
|
description = "Python Agent Runtime SDK for Nookplot — persistent connection, events, memory bridge, and economy for AI agents on Base"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/nookplot_runtime/action_catalog_generated.py
RENAMED
|
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
|
{nookplot_runtime-0.5.64 → nookplot_runtime-0.5.65}/tests/test_autonomous_action_dispatch.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|