strata-mem 1.6.2__py3-none-any.whl

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 (53) hide show
  1. strata/__init__.py +13 -0
  2. strata/__main__.py +2537 -0
  3. strata/_hooks/strata-stop-hook +14 -0
  4. strata/_migrations/.gitkeep +0 -0
  5. strata/_migrations/0001_initial.sql +57 -0
  6. strata/_migrations/0002_drop_fleet_tables.sql +86 -0
  7. strata/_migrations/0003_judgment_attempts.sql +25 -0
  8. strata/_migrations/0004_operator.sql +57 -0
  9. strata/_migrations/0005_publication.sql +65 -0
  10. strata/_skills/__init__.py +0 -0
  11. strata/_skills/strata/Skill.md +75 -0
  12. strata/_skills/strata-inspect/Skill.md +75 -0
  13. strata/_skills/strata-worker/Skill.md +108 -0
  14. strata/_templates/dev-team.yaml +81 -0
  15. strata/_templates/minimal.yaml +25 -0
  16. strata/_templates/research-group.yaml +43 -0
  17. strata/_templates/support-org.yaml +43 -0
  18. strata/_ui/app.jsx +401 -0
  19. strata/_ui/atlas.css +256 -0
  20. strata/_ui/atoms.jsx +244 -0
  21. strata/_ui/graph.jsx +545 -0
  22. strata/_ui/index.html +65 -0
  23. strata/_ui/scope-detail.jsx +545 -0
  24. strata/_ui/settings.jsx +180 -0
  25. strata/_ui/store.js +134 -0
  26. strata/_ui/tweaks-panel.jsx +530 -0
  27. strata/app.py +749 -0
  28. strata/bootstrap.py +42 -0
  29. strata/fleet_config.py +578 -0
  30. strata/fleet_export.py +136 -0
  31. strata/freshness.py +768 -0
  32. strata/install.py +496 -0
  33. strata/launch.py +311 -0
  34. strata/locks.py +46 -0
  35. strata/mcp/__init__.py +1 -0
  36. strata/mcp/server.py +1446 -0
  37. strata/migrator.py +224 -0
  38. strata/operator.py +741 -0
  39. strata/perspective.py +338 -0
  40. strata/preflight.py +243 -0
  41. strata/project_config.py +263 -0
  42. strata/publication.py +961 -0
  43. strata/record_store.py +1012 -0
  44. strata/scope_manager.py +1339 -0
  45. strata/session_state.py +460 -0
  46. strata/settings.py +74 -0
  47. strata/stores.py +90 -0
  48. strata/summary_store.py +461 -0
  49. strata_mem-1.6.2.dist-info/METADATA +18 -0
  50. strata_mem-1.6.2.dist-info/RECORD +53 -0
  51. strata_mem-1.6.2.dist-info/WHEEL +4 -0
  52. strata_mem-1.6.2.dist-info/entry_points.txt +3 -0
  53. strata_mem-1.6.2.dist-info/licenses/LICENSE +21 -0
strata/__init__.py ADDED
@@ -0,0 +1,13 @@
1
+ """Strata — shared memory for agent fleets."""
2
+
3
+ __version__ = "1.6.2"
4
+
5
+ #: PyPI distribution name. The import name (``strata``) and console scripts
6
+ #: (``strata``, ``strata-mcp``) are unchanged — only the package name pip
7
+ #: resolves is different, because ``strata`` on PyPI belongs to an unrelated,
8
+ #: dormant package (issue #49). The engine distribution is ``strata-mem``
9
+ #: (ADR 0009 D1); PyPI ``memfleet`` was repurposed for the cloud client.
10
+ #: Anything that looks up *this* project's installed distribution metadata
11
+ #: (e.g. ``importlib.metadata``) must use this constant, not the string
12
+ #: ``"strata"``.
13
+ DISTRIBUTION_NAME = "strata-mem"