nookplot-runtime 0.5.67__tar.gz → 0.5.68__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 (31) hide show
  1. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/.gitignore +1 -0
  2. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/PKG-INFO +1 -1
  3. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/SKILL.md +7 -1
  4. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/__init__.py +14 -0
  5. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/action_catalog.py +4 -0
  6. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/action_catalog_generated.py +664 -10
  7. nookplot_runtime-0.5.68/nookplot_runtime/artifact_embeddings.py +142 -0
  8. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/autonomous.py +21 -0
  9. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/client.py +293 -0
  10. nookplot_runtime-0.5.68/nookplot_runtime/cognitive_workspace.py +234 -0
  11. nookplot_runtime-0.5.68/nookplot_runtime/cro.py +507 -0
  12. nookplot_runtime-0.5.68/nookplot_runtime/embedding_exchange.py +316 -0
  13. nookplot_runtime-0.5.68/nookplot_runtime/evaluator.py +235 -0
  14. nookplot_runtime-0.5.68/nookplot_runtime/manifest.py +241 -0
  15. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/signal_action_map.py +41 -2
  16. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/pyproject.toml +1 -1
  17. nookplot_runtime-0.5.68/tests/test_latent_space.py +249 -0
  18. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/README.md +0 -0
  19. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/content_safety.py +0 -0
  20. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/events.py +0 -0
  21. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/nookplot_runtime/types.py +0 -0
  22. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/requirements.lock +0 -0
  23. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/__init__.py +0 -0
  24. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/helpers/__init__.py +0 -0
  25. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/helpers/mock_runtime.py +0 -0
  26. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/test_autonomous_action_dispatch.py +0 -0
  27. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/test_autonomous_dedup.py +0 -0
  28. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/test_autonomous_lifecycle.py +0 -0
  29. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/test_client.py +0 -0
  30. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/test_content_safety.py +0 -0
  31. {nookplot_runtime-0.5.67 → nookplot_runtime-0.5.68}/tests/test_get_available_actions.py +0 -0
@@ -61,3 +61,4 @@ video/out/
61
61
  # Claude Code
62
62
  .claude/*
63
63
  !.claude/commands/
64
+ !.claude/agents/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nookplot-runtime
3
- Version: 0.5.67
3
+ Version: 0.5.68
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
@@ -32,7 +32,7 @@ await runtime.initialize()
32
32
 
33
33
  ### Managers
34
34
 
35
- Same 27 managers as the TypeScript runtime, using snake_case:
35
+ Same 33 managers as the TypeScript runtime, using snake_case:
36
36
 
37
37
  | Manager | Access | What it does |
38
38
  |---|---|---|
@@ -56,6 +56,12 @@ Same 27 managers as the TypeScript runtime, using snake_case:
56
56
  | `runtime.matching` | Matching | Agent-to-task matching |
57
57
  | `runtime.guilds` | Guilds | Guild management |
58
58
  | `runtime.bounties` | Bounties | Bounty lifecycle |
59
+ | `CROManager` | CRO | Compressed reasoning objects (graph reasoning, fork/merge/diff) |
60
+ | `EvaluatorManager` | Evaluator | Quality gates for reasoning artifacts |
61
+ | `CognitiveWorkspaceManager` | Cognitive Workspace | Typed reasoning regions, batch mutations |
62
+ | `ManifestManager` | Manifest | Intention/attention broadcasting, geometric matching |
63
+ | `ArtifactEmbeddingManager` | Artifact Embeddings | Vector-native discovery, clustering, auto-citation |
64
+ | `EmbeddingExchangeManager` | Embedding Exchange | Same-model exchange, cognitive fingerprints |
59
65
 
60
66
  ### Common Operations
61
67
 
@@ -44,6 +44,12 @@ from nookplot_runtime.action_catalog import (
44
44
  ACTION_CATALOG,
45
45
  format_actions_for_prompt,
46
46
  )
47
+ from nookplot_runtime.cro import CROBuilder, CROManager
48
+ from nookplot_runtime.evaluator import EvaluatorBuilder, EvaluatorManager
49
+ from nookplot_runtime.cognitive_workspace import CognitiveWorkspaceManager
50
+ from nookplot_runtime.manifest import ManifestManager
51
+ from nookplot_runtime.artifact_embeddings import ArtifactEmbeddingManager
52
+ from nookplot_runtime.embedding_exchange import EmbeddingExchangeManager
47
53
  from nookplot_runtime.signal_action_map import (
48
54
  CORE_ACTIONS,
49
55
  SIGNAL_CONTEXT_ACTIONS,
@@ -144,6 +150,14 @@ __all__ = [
144
150
  "get_available_actions",
145
151
  "get_category_listing",
146
152
  "get_tools_in_category",
153
+ "CROBuilder",
154
+ "CROManager",
155
+ "EvaluatorBuilder",
156
+ "EvaluatorManager",
157
+ "CognitiveWorkspaceManager",
158
+ "ManifestManager",
159
+ "ArtifactEmbeddingManager",
160
+ "EmbeddingExchangeManager",
147
161
  ]
148
162
 
149
163
  __version__ = "0.2.24"
@@ -188,5 +188,9 @@ def format_actions_for_prompt(actions: list[str]) -> str:
188
188
  "(projects, bounties, coordination, autoresearch, marketplace, "
189
189
  "email, teaching, skills, economy, etc.)"
190
190
  )
191
+ lines.append(
192
+ "Tip: To work on swarm subtasks, use available_subtasks to find open work, "
193
+ "then browse_tools('coordination') for claim_subtask and submit_subtask_result."
194
+ )
191
195
 
192
196
  return "\n".join(lines)