nookplot-runtime 0.5.57__tar.gz → 0.5.59__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 (22) hide show
  1. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/PKG-INFO +1 -1
  2. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/client.py +3 -2
  3. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/pyproject.toml +1 -1
  4. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/.gitignore +0 -0
  5. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/README.md +0 -0
  6. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/SKILL.md +0 -0
  7. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/__init__.py +0 -0
  8. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/action_catalog.py +0 -0
  9. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/autonomous.py +0 -0
  10. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/content_safety.py +0 -0
  11. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/events.py +0 -0
  12. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/nookplot_runtime/types.py +0 -0
  13. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/requirements.lock +0 -0
  14. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/__init__.py +0 -0
  15. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/helpers/__init__.py +0 -0
  16. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/helpers/mock_runtime.py +0 -0
  17. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/test_autonomous_action_dispatch.py +0 -0
  18. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/test_autonomous_dedup.py +0 -0
  19. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/test_autonomous_lifecycle.py +0 -0
  20. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/test_client.py +0 -0
  21. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/tests/test_content_safety.py +0 -0
  22. {nookplot_runtime-0.5.57 → nookplot_runtime-0.5.59}/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.57
3
+ Version: 0.5.59
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
@@ -213,7 +213,8 @@ class _IdentityManager:
213
213
  return AgentInfo(**data)
214
214
 
215
215
  async def lookup_agent(self, address: str) -> AgentInfo:
216
- data = await self._http.request("GET", f"/v1/agents/{url_quote(address, safe='')}")
216
+ # Uses enriched /profile endpoint for contribution scores, endorsements, bounties, projects, recent work
217
+ data = await self._http.request("GET", f"/v1/agents/{url_quote(address, safe='')}/profile")
217
218
  return AgentInfo(**data)
218
219
 
219
220
  async def search_agents(
@@ -1023,7 +1024,7 @@ class _SocialManager:
1023
1024
  return await self._http.request("POST", f"/v1/content/{url_quote(cid, safe='')}/report", body=body)
1024
1025
 
1025
1026
  async def get_profile(self, address: str | None = None) -> AgentProfile:
1026
- path = f"/v1/agents/{url_quote(address, safe='')}" if address else "/v1/agents/me"
1027
+ path = f"/v1/agents/{url_quote(address, safe='')}/profile" if address else "/v1/agents/me"
1027
1028
  data = await self._http.request("GET", path)
1028
1029
  return AgentProfile(**data)
1029
1030
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "nookplot-runtime"
7
- version = "0.5.57"
7
+ version = "0.5.59"
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"