rememberstack 0.1.0__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 (186) hide show
  1. rememberstack/__init__.py +9 -0
  2. rememberstack/adapters/__init__.py +42 -0
  3. rememberstack/adapters/codex_writer.py +221 -0
  4. rememberstack/adapters/markitdown_converter.py +42 -0
  5. rememberstack/adapters/openrouter.py +136 -0
  6. rememberstack/adapters/selfhost/__init__.py +54 -0
  7. rememberstack/adapters/selfhost/forget.py +66 -0
  8. rememberstack/adapters/selfhost/git.py +374 -0
  9. rememberstack/adapters/selfhost/lance.py +328 -0
  10. rememberstack/adapters/selfhost/minio.py +279 -0
  11. rememberstack/adapters/selfhost/mounts.py +249 -0
  12. rememberstack/adapters/selfhost/object_store.py +130 -0
  13. rememberstack/adapters/selfhost/projection.py +80 -0
  14. rememberstack/adapters/selfhost/queue.py +137 -0
  15. rememberstack/adapters/selfhost/telemetry.py +45 -0
  16. rememberstack/adapters/selfhost/watcher.py +70 -0
  17. rememberstack/adapters/testing/__init__.py +15 -0
  18. rememberstack/adapters/testing/cost_meter.py +13 -0
  19. rememberstack/adapters/testing/model_provider.py +83 -0
  20. rememberstack/adapters/testing/queue.py +43 -0
  21. rememberstack/adapters/testing/telemetry.py +22 -0
  22. rememberstack/client.py +19 -0
  23. rememberstack/core/__init__.py +127 -0
  24. rememberstack/core/blockizer.py +189 -0
  25. rememberstack/core/chunker.py +216 -0
  26. rememberstack/core/consumption_skill.py +275 -0
  27. rememberstack/core/conversion.py +76 -0
  28. rememberstack/core/core_manifest.py +598 -0
  29. rememberstack/core/extension_packs.py +124 -0
  30. rememberstack/core/forget.py +17 -0
  31. rememberstack/core/knowledge_authored.py +276 -0
  32. rememberstack/core/knowledge_compile.py +215 -0
  33. rememberstack/core/knowledge_fact_sheet.py +210 -0
  34. rememberstack/core/knowledge_hashing.py +68 -0
  35. rememberstack/core/knowledge_planner.py +64 -0
  36. rememberstack/core/knowledge_writer.py +175 -0
  37. rememberstack/core/ranking.py +200 -0
  38. rememberstack/core/recipe_linter.py +149 -0
  39. rememberstack/core/section_snap.py +209 -0
  40. rememberstack/core/storage_routing.py +27 -0
  41. rememberstack/eval/__init__.py +53 -0
  42. rememberstack/eval/consumption.py +141 -0
  43. rememberstack/eval/contradiction.py +184 -0
  44. rememberstack/eval/harness.py +136 -0
  45. rememberstack/eval/lifecycle.py +400 -0
  46. rememberstack/eval/operational_scale.py +49 -0
  47. rememberstack/eval/resolution.py +255 -0
  48. rememberstack/eval/retrieval_spikes.py +50 -0
  49. rememberstack/eval/skeleton.py +231 -0
  50. rememberstack/llm/__init__.py +1 -0
  51. rememberstack/model/__init__.py +589 -0
  52. rememberstack/model/adjudication.py +100 -0
  53. rememberstack/model/auth.py +27 -0
  54. rememberstack/model/blocks.py +30 -0
  55. rememberstack/model/chunks.py +190 -0
  56. rememberstack/model/claims.py +162 -0
  57. rememberstack/model/client.py +98 -0
  58. rememberstack/model/clustering.py +54 -0
  59. rememberstack/model/component_version.py +124 -0
  60. rememberstack/model/consumption.py +88 -0
  61. rememberstack/model/conversion.py +31 -0
  62. rememberstack/model/deployment.py +53 -0
  63. rememberstack/model/documents.py +168 -0
  64. rememberstack/model/envelope.py +513 -0
  65. rememberstack/model/evaluation.py +72 -0
  66. rememberstack/model/forget.py +143 -0
  67. rememberstack/model/git.py +13 -0
  68. rememberstack/model/knowledge.py +840 -0
  69. rememberstack/model/knowledge_authored.py +325 -0
  70. rememberstack/model/knowledge_planner.py +431 -0
  71. rememberstack/model/lifecycle.py +42 -0
  72. rememberstack/model/model_provider.py +78 -0
  73. rememberstack/model/mounts.py +24 -0
  74. rememberstack/model/object_store.py +21 -0
  75. rememberstack/model/operational_scale.py +59 -0
  76. rememberstack/model/operations.py +153 -0
  77. rememberstack/model/processing.py +228 -0
  78. rememberstack/model/queue.py +73 -0
  79. rememberstack/model/recipes.py +83 -0
  80. rememberstack/model/relations.py +79 -0
  81. rememberstack/model/resolution.py +83 -0
  82. rememberstack/model/retrieval_spikes.py +62 -0
  83. rememberstack/model/sections.py +120 -0
  84. rememberstack/model/telemetry.py +30 -0
  85. rememberstack/ports/__init__.py +29 -0
  86. rememberstack/ports/auth.py +16 -0
  87. rememberstack/ports/connector.py +23 -0
  88. rememberstack/ports/cost_meter.py +17 -0
  89. rememberstack/ports/forget.py +20 -0
  90. rememberstack/ports/git.py +20 -0
  91. rememberstack/ports/model_provider.py +28 -0
  92. rememberstack/ports/mounts.py +16 -0
  93. rememberstack/ports/object_store.py +27 -0
  94. rememberstack/ports/p1_index.py +92 -0
  95. rememberstack/ports/purge.py +93 -0
  96. rememberstack/ports/queue.py +23 -0
  97. rememberstack/ports/telemetry.py +21 -0
  98. rememberstack/profiles/__init__.py +22 -0
  99. rememberstack/profiles/selfhost.py +324 -0
  100. rememberstack/profiles/selfhost_forget.py +158 -0
  101. rememberstack/profiles/selfhost_operations.py +95 -0
  102. rememberstack/py.typed +1 -0
  103. rememberstack/spine/__init__.py +93 -0
  104. rememberstack/spine/admission.py +26 -0
  105. rememberstack/spine/backfill.py +168 -0
  106. rememberstack/spine/catalog_contract.py +742 -0
  107. rememberstack/spine/chunk_catalog.py +237 -0
  108. rememberstack/spine/claim_catalog.py +298 -0
  109. rememberstack/spine/clustering.py +740 -0
  110. rememberstack/spine/component_versions.py +208 -0
  111. rememberstack/spine/consumption.py +81 -0
  112. rememberstack/spine/deployment_bootstrap.py +445 -0
  113. rememberstack/spine/document_catalog.py +621 -0
  114. rememberstack/spine/entity_registry.py +205 -0
  115. rememberstack/spine/extension_packs.py +220 -0
  116. rememberstack/spine/fact_catalog.py +571 -0
  117. rememberstack/spine/forget.py +1753 -0
  118. rememberstack/spine/knowledge.py +5467 -0
  119. rememberstack/spine/lifecycle.py +1071 -0
  120. rememberstack/spine/migrations/__init__.py +1 -0
  121. rememberstack/spine/migrations/_helpers.py +153 -0
  122. rememberstack/spine/migrations/env.py +58 -0
  123. rememberstack/spine/migrations/script.py.mako +27 -0
  124. rememberstack/spine/migrations/versions/__init__.py +1 -0
  125. rememberstack/spine/migrations/versions/p0_02_0001_extensions_enums.py +189 -0
  126. rememberstack/spine/migrations/versions/p0_02_0002_infrastructure_registries.py +321 -0
  127. rememberstack/spine/migrations/versions/p0_02_0003_entities_evaluation_e0_e1.py +631 -0
  128. rememberstack/spine/migrations/versions/p0_02_0004_claims_facts_evidence.py +411 -0
  129. rememberstack/spine/migrations/versions/p0_02_0005_projection_knowledge_retrieval.py +391 -0
  130. rememberstack/spine/migrations/versions/p0_02_0006_partitions_views.py +158 -0
  131. rememberstack/spine/migrations/versions/p2_06_0007_invalidated_outcome.py +26 -0
  132. rememberstack/spine/migrations/versions/p3_01_0008_document_version_target.py +58 -0
  133. rememberstack/spine/migrations/versions/p3_05_0009_reconcile_stage.py +27 -0
  134. rememberstack/spine/migrations/versions/p3_07_0010_lifecycle_eval_suite.py +25 -0
  135. rememberstack/spine/migrations/versions/p4_01_0011_survivor_view_rewrite.py +57 -0
  136. rememberstack/spine/migrations/versions/p6_02_0012_knowledge_compile_recovery.py +58 -0
  137. rememberstack/spine/migrations/versions/p6_04_0013_knowledge_writer_ledger.py +46 -0
  138. rememberstack/spine/migrations/versions/p6_05_0014_knowledge_planner_runtime.py +217 -0
  139. rememberstack/spine/migrations/versions/p6_06_0015_authored_dispatch_runtime.py +38 -0
  140. rememberstack/spine/migrations/versions/p7_02_0016_operational_eval_suite.py +19 -0
  141. rememberstack/spine/migrations/versions/p7_05_0017_hard_forget.py +55 -0
  142. rememberstack/spine/observation_adjudication.py +778 -0
  143. rememberstack/spine/operations.py +298 -0
  144. rememberstack/spine/projection.py +662 -0
  145. rememberstack/spine/recipes.py +276 -0
  146. rememberstack/spine/resolver.py +763 -0
  147. rememberstack/spine/review.py +650 -0
  148. rememberstack/spine/settings.py +22 -0
  149. rememberstack/spine/supersession.py +510 -0
  150. rememberstack/spine/sync.py +128 -0
  151. rememberstack/spine/work_ledger.py +816 -0
  152. rememberstack/surfaces/__init__.py +110 -0
  153. rememberstack/surfaces/cli.py +447 -0
  154. rememberstack/surfaces/consumption_skill.py +87 -0
  155. rememberstack/surfaces/graph_queries.py +698 -0
  156. rememberstack/surfaces/http_api.py +377 -0
  157. rememberstack/surfaces/mcp.py +67 -0
  158. rememberstack/surfaces/query_engine.py +1591 -0
  159. rememberstack/surfaces/recipe_executor.py +185 -0
  160. rememberstack/surfaces/recipe_surface.py +219 -0
  161. rememberstack/surfaces/remote_mcp.py +133 -0
  162. rememberstack/surfaces/sdk.py +324 -0
  163. rememberstack/workers/__init__.py +155 -0
  164. rememberstack/workers/base.py +312 -0
  165. rememberstack/workers/e0.py +577 -0
  166. rememberstack/workers/e1.py +425 -0
  167. rememberstack/workers/e2.py +525 -0
  168. rememberstack/workers/e3.py +434 -0
  169. rememberstack/workers/forget.py +299 -0
  170. rememberstack/workers/knowledge_authored.py +146 -0
  171. rememberstack/workers/knowledge_driver.py +735 -0
  172. rememberstack/workers/knowledge_fact_sheet.py +123 -0
  173. rememberstack/workers/knowledge_planner.py +325 -0
  174. rememberstack/workers/knowledge_writer.py +393 -0
  175. rememberstack/workers/operations.py +42 -0
  176. rememberstack/workers/p1.py +234 -0
  177. rememberstack/workers/p2.py +513 -0
  178. rememberstack/workers/p2_analytics.py +276 -0
  179. rememberstack/workers/p3.py +673 -0
  180. rememberstack/workers/reconcile.py +485 -0
  181. rememberstack/workers/sync.py +168 -0
  182. rememberstack-0.1.0.dist-info/METADATA +213 -0
  183. rememberstack-0.1.0.dist-info/RECORD +186 -0
  184. rememberstack-0.1.0.dist-info/WHEEL +4 -0
  185. rememberstack-0.1.0.dist-info/entry_points.txt +2 -0
  186. rememberstack-0.1.0.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,213 @@
1
+ Metadata-Version: 2.4
2
+ Name: rememberstack
3
+ Version: 0.1.0
4
+ Summary: Open memory infrastructure for AI agents.
5
+ Project-URL: Homepage, https://remember.dev
6
+ Project-URL: Documentation, https://remember.dev/docs
7
+ Project-URL: Repository, https://github.com/writeitai/remember-stack
8
+ Project-URL: Issues, https://github.com/writeitai/remember-stack/issues
9
+ Author-email: "WriteIt.ai s.r.o." <info@writeit.ai>
10
+ License-Expression: Apache-2.0
11
+ License-File: LICENSE
12
+ Keywords: agents,ai,bitemporal,evidence,knowledge,memory
13
+ Classifier: Development Status :: 2 - Pre-Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Operating System :: OS Independent
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Classifier: Typing :: Typed
23
+ Requires-Python: >=3.12
24
+ Requires-Dist: httpx>=0.28.1
25
+ Requires-Dist: pydantic-settings>=2.10
26
+ Requires-Dist: pydantic>=2.11
27
+ Provides-Extra: connectors-watched-directory
28
+ Provides-Extra: k
29
+ Provides-Extra: server
30
+ Requires-Dist: alembic>=1.16; extra == 'server'
31
+ Requires-Dist: boto3>=1.42; extra == 'server'
32
+ Requires-Dist: fastapi>=0.139.2; extra == 'server'
33
+ Requires-Dist: ladybug>=0.18.2; extra == 'server'
34
+ Requires-Dist: lancedb>=0.34.0; extra == 'server'
35
+ Requires-Dist: markdown-it-py>=4.2.0; extra == 'server'
36
+ Requires-Dist: markitdown>=0.1.6; extra == 'server'
37
+ Requires-Dist: onnxruntime>=1.24.1; (python_version >= '3.14') and extra == 'server'
38
+ Requires-Dist: psycopg[binary]>=3.2; extra == 'server'
39
+ Requires-Dist: sqlalchemy>=2.0; extra == 'server'
40
+ Requires-Dist: uvicorn>=0.37; extra == 'server'
41
+ Description-Content-Type: text/markdown
42
+
43
+ # RememberStack
44
+
45
+ [![CI](https://github.com/writeitai/remember-stack/actions/workflows/ci.yml/badge.svg)](https://github.com/writeitai/remember-stack/actions/workflows/ci.yml)
46
+ [![Coverage](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/writeitai/remember-stack/python-coverage-comment-action-data/endpoint.json)](https://github.com/writeitai/remember-stack/tree/python-coverage-comment-action-data)
47
+
48
+ A memory system for AI agents, designed to ingest **millions** of heterogeneous documents and
49
+ distill them into progressively more abstract, navigable knowledge — while keeping everything
50
+ auditable by humans. Scale is a requirement, not an aspiration: it is meant to still be useful
51
+ at a million documents.
52
+
53
+ > **Pre-release software.** Phases 0–7 are implemented and tested. Release automation, trusted
54
+ > publishing, tag protection, and bounded contributor-agreement enforcement are in place; the
55
+ > first public tag remains. The fresh-deployment Docker
56
+ > Compose skeleton is documented under
57
+ > [Self-host deployment](website/src/app/docs/deployment/page.mdx); it proves PostgreSQL, MinIO,
58
+ > API ingestion, and the first two E0 worker stages, not a production rollout. The build follows
59
+ > [plan/plans/roadmap.md](plan/plans/roadmap.md).
60
+
61
+ ## TL;DR
62
+
63
+ Imagine pouring a million documents into a system and being able to ask it not just "where did
64
+ I read this?" but "what do we actually know, and what changed our mind?" That's the goal.
65
+
66
+ The design is organized as **three planes** — a useful mental model for the whole system:
67
+
68
+ | Plane | Plain-English meaning | What it holds | Can we rebuild it? |
69
+ |---|---|---|---|
70
+ | **E — Evidence** | *what we ingested* | Raw inputs broken down step by step: files → chunks → atomic claims → relations (facts) | No — it's the ground truth |
71
+ | **K — Knowledge** | *what we concluded* | LLM-distilled and human-editable summaries and beliefs, version-controlled like code | No — authored/curated |
72
+ | **P — Projections** | *how we reach it* | Search indexes, a knowledge graph, and a browsable filesystem, derived from the evidence spine | Yes — regenerate any time |
73
+
74
+ The one-line version: **E** is what we ingested, **K** is what we concluded, **P** is how we
75
+ reach it — and **P can always be rebuilt from E.**
76
+
77
+ Each plane breaks into a handful of layers:
78
+
79
+ **E — Evidence** *(per-document chain; Postgres is truth)*
80
+
81
+ | | What it is | Backed by | Holds |
82
+ |---|---|---|---|
83
+ | **E0** | Files / document layer | GCS (raw + artifacts) + Postgres | original bytes, markdown, per-doc section structure (PageIndex) |
84
+ | **E1** | Chunks | Postgres + Lance | retrieval-sized units with context prefixes |
85
+ | **E2** | Claims | Postgres | atomic, verifiable natural-language assertions (immutable) |
86
+ | **E3** | Relations + Observations | Postgres | **relations**: normalized `(subject, predicate, object)` entity↔entity facts (graph-projected); **observations**: untyped, entity-anchored non-graph facts (a value/statement about one entity) — both bi-temporal (D43) |
87
+
88
+ **K — Knowledge** *(LLM-compiled markdown; git is truth)*
89
+
90
+ | | What it is | Backed by | Holds |
91
+ |---|---|---|---|
92
+ | **K1** | General knowledge | git repo | progressive-disclosure summaries over the claims |
93
+ | **K2** | Special-purpose scopes | git repo | pluggable domains (people profiles, projects, a personal operating doctrine, …), mixing compiled support with authored principles |
94
+
95
+ Plane K is a **framework**, not fixed layers (D45–D47, refined by D73): one compile machine — an LLM
96
+ planner owning *structure*, LLM writers owning *content*, a deterministic driver owning
97
+ staleness, routing, and commits — over two page kinds: **compiled** (regenerated from the
98
+ evidence when it changes) and **authored** (human/agent commitments that are never rewritten,
99
+ only *alerted* when the evidence they cite changes). K1 plus any number of K2 scopes is the
100
+ shipped configuration; deployments define their own scopes ("knowledge structure is
101
+ configuration, not machinery"). Core principles and stances are authored K2 pages because an
102
+ evidence threshold cannot decide what a person or organization endorses.
103
+
104
+ **P — Projections** *(derived from the E spine; rebuildable, hold no source-of-truth; K pages
105
+ cross-link with P3 but are never a structural input — D40 refined)*
106
+
107
+ | | What it is | Backed by | Serves |
108
+ |---|---|---|---|
109
+ | **P1** | Search indexes | LanceDB | vector (semantic) + FTS/BM25 search over chunks, claims, relation + observation labels |
110
+ | **P2** | Graph | LadybugDB | neighborhood / path / as-of traversal over entities + relations |
111
+ | **P3** | Corpus filesystem | GCS directory tree | agents browsing the memory as a mounted filesystem (`ls`/`cat`/`grep`) |
112
+
113
+ A few ideas give the design its character:
114
+
115
+ - **Nothing is silently overwritten.** New information *supersedes* old information by closing a
116
+ validity window rather than erasing it; contradictions are surfaced, not quietly resolved.
117
+ - **Two notions of time, everywhere.** When a fact was true in the world, and when the system
118
+ learned it — so you can ask "what did we believe as of last March?"
119
+ - **Built for agents, auditable by humans.** Every conclusion traces back to the exact claims
120
+ and source documents that support (or contradict) it.
121
+ - **Clear sources of truth.** The evidence spine lives in Postgres (original files in
122
+ cloud storage), the distilled knowledge in a git repo, and the search and graph layers are
123
+ derived, rebuildable projections on top.
124
+
125
+ ## Open source and the cloud
126
+
127
+ This repository is the complete memory system, not a teaser for a hosted product (D60):
128
+
129
+ - **Everything that makes the memory trustworthy is here**, under Apache-2.0 — extraction, entity
130
+ resolution, supersession, grounding and provenance, evals, budgets, dead-letter queues, deletion.
131
+ If it affects correctness, it will never be paywalled.
132
+ - **The hosted offering runs this same code, unmodified.** What the cloud adds is operation
133
+ (multi-tenant infrastructure, HA, upgrades, backups) and the human layer (web UI, SSO, teams,
134
+ billing). The library's consumers are agents, and its agent surfaces — API, CLI, MCP, mounted
135
+ filesystems — are the complete consumption story.
136
+ - **Self-hosting gives you the full engine for one deployment**, on your own infrastructure via the
137
+ provider ports (D61): S3-compatible storage, a Postgres-backed queue, local mounts, your own git
138
+ remote, your own model keys. Support is community-only.
139
+
140
+ For the full picture, start with [plan/designs/overall_design.md](plan/designs/overall_design.md).
141
+
142
+ ## The `plan/` directory
143
+
144
+ All project planning lives in `plan/`, organized into four areas — three levels of abstraction
145
+ plus the research behind them:
146
+
147
+ - **`plan/requirements/`** — the highest level of abstraction: *what we want from the system*.
148
+ Mostly bullet points. No technology choices, no architecture — just needs, constraints, and
149
+ goals.
150
+ - **`plan/designs/`** — drill-downs into the architecture: *how a part of the system works*.
151
+ Data models, store layouts, pipelines, trade-offs and decision rationale. Each design serves
152
+ one area and traces back to the requirements it satisfies.
153
+ - **`plan/plans/`** — *bringing it all together*: concrete, ordered plans for building the
154
+ system. Plans reference the designs (never duplicate them) and sequence the work — phases,
155
+ dependencies, deliverables. Start at [plan/plans/roadmap.md](plan/plans/roadmap.md): the
156
+ phase spine (0 foundations+harness → 1 walking skeleton → … → 8 competitive benchmarks),
157
+ the technology stack, the gate register (which open decisions and spikes block which
158
+ phase), and the work-package format coding agents execute against.
159
+ - **`plan/analysis/`** — the working material *behind* the designs: research reports,
160
+ capability surveys (e.g. `ladybug_capabilities.md`), option explorations, worked explainers
161
+ (e.g. `concepts.md`), external-review digests. Analyses are allowed to be messy,
162
+ opinionated, and eventually superseded — they capture *why we believe things*. Designs
163
+ distill analyses into the binding picture and cite them; nothing in `analysis/` is binding
164
+ on its own.
165
+
166
+ Rule of thumb: requirements say **what**, designs say **how**, plans say **in what order**,
167
+ analysis says **why we think so**. A change should land at the highest level it applies to
168
+ and flow downward.
169
+
170
+ Beside the plan lives **`website/`** — the public documentation site
171
+ ([remember.dev](https://remember.dev)), a self-contained Next.js/MDX static app
172
+ that documents the system *as it ships* (D66): user-facing changes update their docs page in
173
+ the same PR, and the full-scope design intent stays here in `plan/`.
174
+
175
+ ## Document index
176
+
177
+ | Doc | Purpose |
178
+ |---|---|
179
+ | [loopy_loop_runbook.md](loopy_loop_runbook.md) | Operating the autonomous implementation loop (start/monitor/resume/stop) |
180
+ | [plan/requirements/requirements_v3.md](plan/requirements/requirements_v3.md) | Requirements (current) |
181
+ | [plan/designs/overall_design.md](plan/designs/overall_design.md) | Overall system design — **best place to start** |
182
+ | [plan/designs/registries_design.md](plan/designs/registries_design.md) | Entity resolution, ontology, governance, review, eval (D15–D24) |
183
+ | [plan/designs/e2_e3_claims_relations_design.md](plan/designs/e2_e3_claims_relations_design.md) | Claim extraction + relation normalization; why there is no value gate (D31–D35, D25) |
184
+ | [plan/designs/e0_files_design.md](plan/designs/e0_files_design.md) | E0 document layer + P3 corpus filesystem (D36–D40) |
185
+ | [plan/designs/p2_graph_design.md](plan/designs/p2_graph_design.md) | P2 graph layer design (formerly L6) |
186
+ | [plan/designs/k_layers_design.md](plan/designs/k_layers_design.md) | K plane: manifest-driven compiled + authored knowledge (D45–D47) |
187
+ | [plan/designs/retrieval_design.md](plan/designs/retrieval_design.md) | The query machine: primitives, recipes, envelope, mounts, consumption skill (D48–D51) |
188
+ | [plan/analysis/retrieval_scenarios.md](plan/analysis/retrieval_scenarios.md) | Retrieval stress battery S1–S63 — drives the retrieval design + the D22 golden set |
189
+ | [plan/analysis/objections.md](plan/analysis/objections.md) | Step-back critique O1–O6 with acceptance status |
190
+ | [plan/analysis/retrieval_review/](plan/analysis/retrieval_review/) | External adversarial review of the retrieval design (Codex) + reconciliation |
191
+ | [plan/designs/evidence_lifecycle_design.md](plan/designs/evidence_lifecycle_design.md) | Document versions, testimony currency, the counting rule, content-addressed reuse (D54–D56) |
192
+ | [plan/analysis/evidence_lifecycle/](plan/analysis/evidence_lifecycle/) | Parallel analyses (internal + Codex) + SYNTHESIS behind D54–D56; stress-test amendments |
193
+ | [plan/designs/e1_chunks_design.md](plan/designs/e1_chunks_design.md) | E1: blocks + blockizer, sections on the grid, chunk packing, reuse mechanics (D57–D58) |
194
+ | [plan/analysis/design_review_2026_07.md](plan/analysis/design_review_2026_07.md) | Second step-back review F1–F9 (post-D44) — K-plane build system, attributed stance, evidence inflation, … |
195
+ | [plan/analysis/entity_registry.md](plan/analysis/entity_registry.md) | Entity resolution, ontology (core+extensions), scope views |
196
+ | [plan/analysis/registry_research/](plan/analysis/registry_research/) | R1–R10 multi-agent research + SYNTHESIS (→ D17–D24) |
197
+ | [plan/analysis/entity_typing_research/](plan/analysis/entity_typing_research/) | Entity typing cascade options + SYNTHESIS (→ registries design) |
198
+ | [plan/analysis/value_gate_research/](plan/analysis/value_gate_research/) | O3 value-gate research + SYNTHESIS (gate mechanism rejected — see D25 / objections O3) |
199
+ | [plan/analysis/claimify_research/](plan/analysis/claimify_research/) | Claimify E2 research: de-contextualization + claim-level value selection + SYNTHESIS (→ D31–D35) |
200
+ | [plan/analysis/concepts.md](plan/analysis/concepts.md) | Explainer: claims vs. relations, evidence, bi-temporality |
201
+ | [plan/analysis/ladybug_capabilities.md](plan/analysis/ladybug_capabilities.md) | Verified LadybugDB capability findings |
202
+ | [plan/analysis/ladybug_translation_research/SYNTHESIS.md](plan/analysis/ladybug_translation_research/SYNTHESIS.md) | Postgres→LadybugDB translation (the `v_graph_*` projection contract, D44) |
203
+ | [plan/analysis/ladybug_query_semantics.md](plan/analysis/ladybug_query_semantics.md) | **LadybugDB query rulebook** — traversal-time vs post-hoc filtering, SHORTEST semantics, all engine quirks; read before writing any graph query |
204
+ | [plan/analysis/lance_indexing_maintenance.md](plan/analysis/lance_indexing_maintenance.md) | **LanceDB indexing rulebook** — nothing is automatic: index-set completeness, the unindexed tail, the mandatory optimize loop; read before writing any P1 table or query |
205
+ | [plan/analysis/p3_agent_navigation.md](plan/analysis/p3_agent_navigation.md) | P3 agent navigation — materialized tree vs index-only, the `_index.md` contract, facets/views/fan-out, why directory LLM summaries are rejected (→ e0 §6, F6) |
206
+ | [plan/plans/roadmap.md](plan/plans/roadmap.md) | Build order: phase spine, stack, gate register, WP format (phases 0–8) |
207
+ | [plan/designs/packaging_distribution_design.md](plan/designs/packaging_distribution_design.md) | Delivery artifacts, delivery-only task execution, enforced code architecture (D62) |
208
+ | [plan/designs/media_design.md](plan/designs/media_design.md) | Media (images/audio/video): converter routes, source locators, derivation disclosure, media search (D65) |
209
+ | [plan/analysis/media_handling/](plan/analysis/media_handling/) | Parallel analyses (internal + Codex) + SYNTHESIS behind D65 |
210
+ | [plan/designs/docs_site_design.md](plan/designs/docs_site_design.md) | Public docs site: in-repo Next.js/MDX static module + same-PR truthfulness contract (D66) |
211
+ | [decisions.md](decisions.md) | Architecture decision log (D1–D66) with rationale |
212
+ | [questions.md](questions.md) | Open questions to resolve before building |
213
+ | [RELEASING.md](RELEASING.md) | Maintainer setup, release procedure, and public-artifact verification |
@@ -0,0 +1,186 @@
1
+ rememberstack/__init__.py,sha256=Q9MoFbuObDQW3eXszb8a69ifsY3wKl_LkUq_4L67H_M,319
2
+ rememberstack/client.py,sha256=soxHZp1tBndTknM60LT_CycG2_cImDPOI5pQZQGsqzM,614
3
+ rememberstack/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ rememberstack/adapters/__init__.py,sha256=lgILcKI1hvKh1fTb0Jtbm9g76YWDR-bwyp0G1N10vKM,1557
5
+ rememberstack/adapters/codex_writer.py,sha256=9iSX2NDyii-DDfr7Uf1Cb9-ExfLWmDKRIKAuIYEZfM8,8084
6
+ rememberstack/adapters/markitdown_converter.py,sha256=vW-QU56d6gy1qlvrShrfd7OVYKxjcCuw5OA8V372bBU,1541
7
+ rememberstack/adapters/openrouter.py,sha256=CCvBaMy2aZjQdUyqXUf2RBpfeDzZu4pJ6eRI-NlRI7c,5278
8
+ rememberstack/adapters/selfhost/__init__.py,sha256=MaN3Ae3nah386w_VDVZr5nemnh_ZIq_zeSTn4fY7UeA,2217
9
+ rememberstack/adapters/selfhost/forget.py,sha256=Cenf0Q49aJx9Ad9GWprjiMfG0GpIIKhvApOEhYBN0d8,2707
10
+ rememberstack/adapters/selfhost/git.py,sha256=sp3PavuhznEBmPLMgNrwG2BTBwxdhIS-4bQ4IvymqqA,12374
11
+ rememberstack/adapters/selfhost/lance.py,sha256=GAXHWLl4T73jC13ZC_rFMqVD6WYhvWlgBHizdcDS768,12514
12
+ rememberstack/adapters/selfhost/minio.py,sha256=7T5O0DRA08Ncs3TRXYliDE5xB4YPBlLWzBXXCFt2YnY,9531
13
+ rememberstack/adapters/selfhost/mounts.py,sha256=KAfiWIaZu72ZoiJ9C0J5rvqR-8s9mIwPIB1Gb8xGXrs,10439
14
+ rememberstack/adapters/selfhost/object_store.py,sha256=v_xWEOZDgYmuTyP-Ei7vJ-n_0xPKmY_6srhCABsPMbY,5405
15
+ rememberstack/adapters/selfhost/projection.py,sha256=theINU2Hu2z3nb8XIBk82mreeu8YM5LtAmbRWwlvUu0,3070
16
+ rememberstack/adapters/selfhost/queue.py,sha256=siQ8VvrE0N05UQggYCyWofaYo1Yt6sauC_XRC-Ug63o,4992
17
+ rememberstack/adapters/selfhost/telemetry.py,sha256=5cYg7AzPVPAoHjCCSNrrNSRvfFYNU8_hJwXRJ13MUww,1584
18
+ rememberstack/adapters/selfhost/watcher.py,sha256=2I7cFC0_GDwZPa70nhqwFGBsdUXo6rmkkb6fWWgoPbo,2796
19
+ rememberstack/adapters/testing/__init__.py,sha256=1KSyNbTe988F0yJUYp2bdenT2V-ahgIOnrT0SUHrMaw,580
20
+ rememberstack/adapters/testing/cost_meter.py,sha256=BeO3smHeWkUp6n8PU0Ig0AZN_sLy9OqsSihb4q3DcfU,396
21
+ rememberstack/adapters/testing/model_provider.py,sha256=LZujM1ULNfiEBp-FxQu6YhpGIFwiw5eUsTcQ8hQtbvs,3272
22
+ rememberstack/adapters/testing/queue.py,sha256=tGMLmv1vTexK2ITzWHivbiISIIl0vaTScZg5jkTdTEY,1262
23
+ rememberstack/adapters/testing/telemetry.py,sha256=PEmsk-_yKO_rAtiEWn5Qt_d6HtBQyzI3BfUtA8kgfN4,796
24
+ rememberstack/core/__init__.py,sha256=8WOdriIII927rzzeeJRuHpw01EqieLG_alLEaCDSzlg,5776
25
+ rememberstack/core/blockizer.py,sha256=7L07dhdupvBK92uAGoCZvJMjKqhmBTGyPlOXshOITYI,6667
26
+ rememberstack/core/chunker.py,sha256=DNwS7M0yW0b6a0UqoVnQKfUpK6eEPoU5Lv9hfgpbY_M,8196
27
+ rememberstack/core/consumption_skill.py,sha256=LWH9Vs3aZlH6vXKjcUaWY3ZKKSjgaQCQeJCRW9nFlqk,12043
28
+ rememberstack/core/conversion.py,sha256=Cd84HvlAraLxog7wFIcnjky7lj5obIviq4NtSFyENgA,2757
29
+ rememberstack/core/core_manifest.py,sha256=oAvAy0xKnBIVHcYjDF18PvmcHHRosbD1AFfDsVXxQ3c,20729
30
+ rememberstack/core/extension_packs.py,sha256=QosnPUrxrGh-K16GaSEsuSqrMbyHRWmyjZ_XwjzDeW0,3851
31
+ rememberstack/core/forget.py,sha256=2LTbau045Xplywfr_vhayN_TfLs46u0hE65aRK0yXqc,503
32
+ rememberstack/core/knowledge_authored.py,sha256=-0x_JoPI5HvseV1AX_ASZ-xsvZiOjFySw4veH2labMQ,10469
33
+ rememberstack/core/knowledge_compile.py,sha256=bMsZsk6sNHeTskiDp6TYoN8Xe_gVpMuUJlKerE9Me2Y,8183
34
+ rememberstack/core/knowledge_fact_sheet.py,sha256=41JxRvl06JHjgFhF6n0zofpCu-o0QNpjoS7WufuSt10,7266
35
+ rememberstack/core/knowledge_hashing.py,sha256=ndqJCchBPSWmV3Q6BT4ttPHz7WO66dawr4QKTatmCCQ,2551
36
+ rememberstack/core/knowledge_planner.py,sha256=hAQ11KBTY3CkUxNatxbQhd7qaMZx80k1kEzh2ZMkGgE,2589
37
+ rememberstack/core/knowledge_writer.py,sha256=f51QjUisDH3rkwkhipc_aRYkfo4BBPGuwjTYA7g3Ikg,7250
38
+ rememberstack/core/ranking.py,sha256=vPZ0u8nw2z27xco5nyEvMl0CnU5M_cN2BPaWRDXXdsQ,8397
39
+ rememberstack/core/recipe_linter.py,sha256=V2lj0IUR3x5_Cimnw-a4Gqu1rrOZb7ivzpgqx9p9c5Y,7160
40
+ rememberstack/core/section_snap.py,sha256=L4DehiECS1aW4tGcaNCgpHjTcTuD7UWXLbZ1SN-Ru-A,7680
41
+ rememberstack/core/storage_routing.py,sha256=LYlLFt-Pe1Li-XOpqzvc5OYWxiRhiz48aLydk8Cr5jI,1145
42
+ rememberstack/eval/__init__.py,sha256=UycB358nDkM-r7yi74KgFspRKrfXIvFQRCjFgzmfskw,2352
43
+ rememberstack/eval/consumption.py,sha256=7-aEowhIiYrlnB3WnptqmHcA5omd2Xjbrp0RJ7lef_c,5204
44
+ rememberstack/eval/contradiction.py,sha256=-sOZLVqhPqmy9Y5zWwQl6Tjv8WXFLIdjye6IOQ5l4S0,6388
45
+ rememberstack/eval/harness.py,sha256=NK_CpKveJ01lZM9a1n-AEfbQ7_N-L_4akb-E4lSruOA,4991
46
+ rememberstack/eval/lifecycle.py,sha256=Yq-mXRY-JcoUHmOEqoRQEdxOSqJ2rphfb3LlReZ_bfY,15182
47
+ rememberstack/eval/operational_scale.py,sha256=tMS28anmM0vvowYqcLnSQofmynEBQUpK4SEmOs3u9OM,1393
48
+ rememberstack/eval/resolution.py,sha256=_f2ftBx5iS6F_R6QcJJumD3XQWQuyI_Q1OWBwZbkxXw,8919
49
+ rememberstack/eval/retrieval_spikes.py,sha256=LfE49NcQbOq2RfVvi6cFlYN-6UqcshfvHN7tGFOusIk,1451
50
+ rememberstack/eval/skeleton.py,sha256=AOK43m_BEtxwHrunt2FmpCqfihG0fDIKxABUhgydkcc,9229
51
+ rememberstack/llm/__init__.py,sha256=Og8l2Z68tOEj3TgnevW9yL-ms0x2q8SNFucrT70I_a8,32
52
+ rememberstack/model/__init__.py,sha256=YKZZRQHxRftndDX2omZlx28HUr4NWQhQgWGMqeEvU5s,26341
53
+ rememberstack/model/adjudication.py,sha256=zF8x1iFCWo-u0adf1tHQ7FWOFU_Wc6dwuHdS6bEF2lY,3223
54
+ rememberstack/model/auth.py,sha256=GxT1stz0bQ_-zuNhYBHggN7SOJG00gxZERmTxd0H_3w,757
55
+ rememberstack/model/blocks.py,sha256=SLskh9RMmPXl5FIPM-9ylP5bNGGpBlEnnETFdrGGvnc,733
56
+ rememberstack/model/chunks.py,sha256=7h881LixYBMFHPu4fFs8X1o_NlP1IhjibGcHIRldGiQ,5349
57
+ rememberstack/model/claims.py,sha256=d8jJb2nfPSirFUHsnq1SqbfQ2YZSE7w7oyLKqnA7MCU,4234
58
+ rememberstack/model/client.py,sha256=ISfc1rcP2GY-ZU6Q217Okq2eiuXIqzckvzeBy2zybqo,2955
59
+ rememberstack/model/clustering.py,sha256=9ea1ukhU5lgFRUwPxpAEUnm1zBXD_sDDOuuntjP0ZHY,1696
60
+ rememberstack/model/component_version.py,sha256=IZDv8F516y4ZHQapdjFrnYupPtY3v8tG32pn144Enfg,3917
61
+ rememberstack/model/consumption.py,sha256=c1eU9EI4zNjchHfdrDq1eBvfDHwGYLfik_N85Ujmx5Y,2888
62
+ rememberstack/model/conversion.py,sha256=oARrZiI2NTpmZncj3db_x7Bs-EWm0_n0CaBgn0dR-og,1046
63
+ rememberstack/model/deployment.py,sha256=ypjw6EpLAqw9O6ndcoB08S6_sglMc4GvCH8JcT3A3zM,1585
64
+ rememberstack/model/documents.py,sha256=BMczqyjg5p06GFJqeoHgGuBSo1Y5lqFB66MDg8qoTSk,4907
65
+ rememberstack/model/envelope.py,sha256=X4zXBxJT05026RESr06svk4PgfxQFjhxA8bDeR9aW8Y,18353
66
+ rememberstack/model/evaluation.py,sha256=gWWEEW19NR-2GUbAKovSpRWow-d1V2stMghcyjWbScM,1972
67
+ rememberstack/model/forget.py,sha256=McWbMY_r4sI5HAzEc3WJrLC9N4xJ2OB2JQHYYhDc7k4,4658
68
+ rememberstack/model/git.py,sha256=lZfBJoU-FljX4px-cFlbsWtpAVNsKxbbRksCbhGS6C4,382
69
+ rememberstack/model/knowledge.py,sha256=0jzvO9HMV4zpMP_LjM2cnY5GBi5x4TVxw-pOXtWumPA,27494
70
+ rememberstack/model/knowledge_authored.py,sha256=JLSU3c77Oynu3I05BYCrvkC5ndMhufrdRdND3yvJwqY,11176
71
+ rememberstack/model/knowledge_planner.py,sha256=vGqx3FJlUvgrvQ4HJ80mP0rSsLSA5w0-1-ga8Z9vNP0,16141
72
+ rememberstack/model/lifecycle.py,sha256=8SWgTz-c7jY-hoBUQMboVwprZ-eumRBXN3TU0R_JtiM,1321
73
+ rememberstack/model/model_provider.py,sha256=dgxHlYDrNmGEtcKcEOBLBHKe1VMojRR3iN2lwwxMC5M,2487
74
+ rememberstack/model/mounts.py,sha256=9f7PG0dB5J3Xf_iVXH706Wk3NVTQOKdRW8Y1xHJyV2E,633
75
+ rememberstack/model/object_store.py,sha256=iAkIQfXcNGDB_KIAlLnXJBfASu_UqIDIMDfl0c8xwPs,639
76
+ rememberstack/model/operational_scale.py,sha256=q7CynxBehL2cHgHib1epnL9zDmAdtxamaGfTVCcr_tY,1878
77
+ rememberstack/model/operations.py,sha256=HzQOZZzfNE8tznoUVjGHYWYrPsPSMWaNavRqNe7yuv4,4419
78
+ rememberstack/model/processing.py,sha256=AIlffdLgkh62oyFXO0G8tlaYAu8bHNqMGNZ8DYRjync,6505
79
+ rememberstack/model/queue.py,sha256=b89x7GMr9JrD1ZKPSs9Hrti1b2qX29KU3BjqQ1BEs_o,2236
80
+ rememberstack/model/recipes.py,sha256=_oOeWJD_6z6uWOtpjZ8-Ox1GLhiO-jWhEDt_NXMPMes,3468
81
+ rememberstack/model/relations.py,sha256=bx2RE7cUHFFwwOXQsOyyBo83MetZIBDss6D6juaSSNc,2023
82
+ rememberstack/model/resolution.py,sha256=2oQEOExO5-RsStJjJPcdhDvEwxTBi_gxwJQ7adeaZQ8,2757
83
+ rememberstack/model/retrieval_spikes.py,sha256=-NptUV6l_VegBvdTXFmjbDpXW7WoA6HCVlQc1UqpeGo,2011
84
+ rememberstack/model/sections.py,sha256=n_1p2Xffp88Ao1anLYwI3jFgh0k9L0jKecaJRSoT4HY,4241
85
+ rememberstack/model/telemetry.py,sha256=wMkFqZ1XnWf37ioH4JSuL0zzMnOVEI2zOKvABHolNnI,819
86
+ rememberstack/ports/__init__.py,sha256=ko1aKNkrciUws8xGQbKKHmapPqj_WQWhQLSia3CaQmM,1041
87
+ rememberstack/ports/auth.py,sha256=Pw13DxlLlIMQPjht4JzUyoF-hflxB43QPuUb01h-3zs,565
88
+ rememberstack/ports/connector.py,sha256=Fe4mow0nbYvqmpuSO6oo0rlR-tTtOZ9P7wm1UHmWSPE,822
89
+ rememberstack/ports/cost_meter.py,sha256=Dmwr_lI-MvmpOare7MT5FPX_afGeewNRWAsWJkPNoKo,532
90
+ rememberstack/ports/forget.py,sha256=fTLQ82PFRhZH9OrQGp7v0LExlF1oScXrzk7C1YY7CgU,662
91
+ rememberstack/ports/git.py,sha256=hdoNmgX-9nOio0gv2Zln1koSoTApbz-5p0B81PVkVl8,649
92
+ rememberstack/ports/model_provider.py,sha256=2KpyfyvXlu7ESXbOTH8CI8RhHtSXiaa9kddYONkAFBA,1016
93
+ rememberstack/ports/mounts.py,sha256=DijJvOObmSjKtR7FdiYpLsQG00NtoGInnf6fnua1kOo,505
94
+ rememberstack/ports/object_store.py,sha256=30RL1cmLYRh9vCIcVpgd8xnhbL3zpf3eNgX_kASWlls,983
95
+ rememberstack/ports/p1_index.py,sha256=QG71_IvaqMEWlr_oDPwBLnc7mG6hWqI5ZR09BhiXn7U,2893
96
+ rememberstack/ports/purge.py,sha256=0PgiawKzYsAZXne2mCG4WE-iPGBds_FuWybVwXUcSrM,2890
97
+ rememberstack/ports/queue.py,sha256=jaiUx5NepRSKCpAGtrGLPztQvk7kqduE1p_uCe_U3dU,655
98
+ rememberstack/ports/telemetry.py,sha256=Aj2Aa7ZBPE6nPK-wWjc5yYaUz6x6uoCdZg9IZWT5gXU,688
99
+ rememberstack/profiles/__init__.py,sha256=WGIcnkwKIfMZMa0dsZ1neSidEdQK1GbyUHR8jLwn6ZE,695
100
+ rememberstack/profiles/selfhost.py,sha256=HNGP8HZkBw-ZeWckuqxjSExge7vqX6fz8CIlRTX85yc,13244
101
+ rememberstack/profiles/selfhost_forget.py,sha256=X6TEe4bEwIW42otiHlJkzTnDkpKc6G7vTHFvltHEPz4,6016
102
+ rememberstack/profiles/selfhost_operations.py,sha256=ggUyqIY4R3YR1TtFJ-bTsByudCycefQrG5vxYmmSRbg,3642
103
+ rememberstack/spine/__init__.py,sha256=zjqNzN6KIuNrgWgTBYA31p-STDBDwVl5SWlauwZ-y7Q,4062
104
+ rememberstack/spine/admission.py,sha256=QMNDg4Dcu4XQSjJkaVk7VTcFqfsZw3PM1V-PzPw3_n0,721
105
+ rememberstack/spine/backfill.py,sha256=t2Nq5ABSlkqeifqWb6lPEhZqs1Ur1LJGpNfVV5xXXB8,6604
106
+ rememberstack/spine/catalog_contract.py,sha256=21i89PC8e51_EI4WqibbWcfeCBdDD1EjrY67iK8SWNY,24837
107
+ rememberstack/spine/chunk_catalog.py,sha256=D0224wXboQd64MjMWYyTpU3Bd53BeIDiatskUySyz00,8657
108
+ rememberstack/spine/claim_catalog.py,sha256=0oSFHz2HU-TSDQkQ4Ubt8fmCxuhKxS1kPJuKlVPDXWE,11322
109
+ rememberstack/spine/clustering.py,sha256=F_i1o_Ikn2aK3d2FzkOeMzRS8CtcwwzLmR1LuAcuhdM,27281
110
+ rememberstack/spine/component_versions.py,sha256=IiQKUtOKB8e40mztxmsOndYT0q0cxmjbd12M0upNTJ4,7448
111
+ rememberstack/spine/consumption.py,sha256=DLPwVeMuH4jyK8vEyhSYl-60zwv3Z30kj175gpu_Xac,2634
112
+ rememberstack/spine/deployment_bootstrap.py,sha256=KR-QoJQ6cWff4LGmN0wGRLwrzsM7aW2JnV0hkm3jPCI,13396
113
+ rememberstack/spine/document_catalog.py,sha256=cHFXMcWyK3XKhsO0d_eg-k5qBuJfSXssS_WZeK0rvI8,23843
114
+ rememberstack/spine/entity_registry.py,sha256=UCDNW00XHve1eqMIacykX1rYoi8AVsZkG2u_7-0PEFY,7748
115
+ rememberstack/spine/extension_packs.py,sha256=JI6S21sDAF3MSBS5xk8SLyYdL-a3lGhrzoMhzeuh-yo,7776
116
+ rememberstack/spine/fact_catalog.py,sha256=6SNeIfpHPXFWydAUJrLkWnRn-FyDNlNzzIPNgW0xRTg,20790
117
+ rememberstack/spine/forget.py,sha256=wzMz496U_irLxELEHx-E6xNI5YJ9UlF6nUEuWyXtDes,64160
118
+ rememberstack/spine/knowledge.py,sha256=XQQivDEQRTIQ70t--mwfA-Hnaef-Dmg4GlchqkdOd4Q,206153
119
+ rememberstack/spine/lifecycle.py,sha256=HLefqkFk2Oe39OPQGRQ68T3QGwerUJ9iihJMI2mK19E,38842
120
+ rememberstack/spine/observation_adjudication.py,sha256=y8OGdJvzpjc1evPSUanMIIdu1gYlznha2RKgPQ5f6NU,29356
121
+ rememberstack/spine/operations.py,sha256=M-BIQHUEDxmhOVxS9s7UxDZ7P2tkoXmXzhOUge0gucM,10398
122
+ rememberstack/spine/projection.py,sha256=EeB-BcJwcz9xlOuEw2ixlSk11tGNfS2s_lUCi_qYZgQ,24118
123
+ rememberstack/spine/recipes.py,sha256=f9qvp0VZm7CmMgK2JxrRn-4K5tzPkxSvdmDLVsa9EiQ,11495
124
+ rememberstack/spine/resolver.py,sha256=jf42NWhlh_PaVMXJ9o3H3G6L0H5Bka-o3Gy2Z7iwbuE,27348
125
+ rememberstack/spine/review.py,sha256=QZbHlUOU2_mT6xVy4nd8A7Q4YdxfqBgGQXDquzs10ws,22414
126
+ rememberstack/spine/settings.py,sha256=z9aRGyCjP5li3jDZG_R0iWskCCij70hRSBeq5KNN4is,750
127
+ rememberstack/spine/supersession.py,sha256=99DNl9Jw2UCKtGHQiLO-aTqqsE3z-s46byjmnoguiMc,20297
128
+ rememberstack/spine/sync.py,sha256=jxRjBZ1D-FicyC8gR_Syv55g2_IIQ31mMbFG-0CFHO4,4401
129
+ rememberstack/spine/work_ledger.py,sha256=HsW8wHcKD8miiAF2xGX_b-UrjiQWuWL_vtfL4UE1uXU,30632
130
+ rememberstack/spine/migrations/__init__.py,sha256=pacRemV_YPD5fLO9O8sTPkBwXTgd7D-mEOlR1b0FOiU,65
131
+ rememberstack/spine/migrations/_helpers.py,sha256=rmPdKlLyrBmpFeyoRvXcEl1Jlsz_H4TmAhmpf5m204Q,5084
132
+ rememberstack/spine/migrations/env.py,sha256=QEqQoUZfboQkiHJcwREc8I95tyGoqSik-_pwjp2sWy4,1684
133
+ rememberstack/spine/migrations/script.py.mako,sha256=YkcXdM00WT8MdgDVABBYlMPMEgZ7hCm07jbtSnb2kx0,657
134
+ rememberstack/spine/migrations/versions/__init__.py,sha256=bAqC7xGDC41ctJ6sWsHw0ulnaZN3-rHLNNdRWFyXNmw,52
135
+ rememberstack/spine/migrations/versions/p0_02_0001_extensions_enums.py,sha256=LqDTW7QRmiMo7WLG9nCf8lwsFCBYpXb_lZ26jG9sz-c,12107
136
+ rememberstack/spine/migrations/versions/p0_02_0002_infrastructure_registries.py,sha256=anGjO0CyBr9m01EaMZGOmxie6uQacPZi04L7GFleenI,26627
137
+ rememberstack/spine/migrations/versions/p0_02_0003_entities_evaluation_e0_e1.py,sha256=gUgEdVm9XgDp1Xtx2Jpv8hb_6KqGVe9MJuhUNi5yqPw,58472
138
+ rememberstack/spine/migrations/versions/p0_02_0004_claims_facts_evidence.py,sha256=zWyV1G9uGZsdAzf2uI1IGpCvRXgS7ZR9LDkguW4Gq0o,41979
139
+ rememberstack/spine/migrations/versions/p0_02_0005_projection_knowledge_retrieval.py,sha256=EQzWs8Ph1YPguqG1hPE8cscBA_AIpReXsCcQtnsFZXM,35428
140
+ rememberstack/spine/migrations/versions/p0_02_0006_partitions_views.py,sha256=2hKLHNrOiI94pAVZ0wMo8iR7bUy6ZE5dEUKCoNdj4LI,7395
141
+ rememberstack/spine/migrations/versions/p2_06_0007_invalidated_outcome.py,sha256=BE_1As26EnshZ_VZA95HqyY9-BEgjKthe-u-S0Ka2vE,934
142
+ rememberstack/spine/migrations/versions/p3_01_0008_document_version_target.py,sha256=SuTgBSan84tE7yntaQAndi7nlZ-37B6-iNIL0eUD5jg,2385
143
+ rememberstack/spine/migrations/versions/p3_05_0009_reconcile_stage.py,sha256=ba-PgQTylq1HpXDtkVeCCQM0kUNrJDEkK_kxEDyP2a8,968
144
+ rememberstack/spine/migrations/versions/p3_07_0010_lifecycle_eval_suite.py,sha256=1Loqiq6ho33eM7WGkNb7x84lHCGl4zlutTZITqnCCFU,865
145
+ rememberstack/spine/migrations/versions/p4_01_0011_survivor_view_rewrite.py,sha256=88iO-1PWFVXOUKKn2GHUnle3jRosV8cTr17_fxY62m8,2109
146
+ rememberstack/spine/migrations/versions/p6_02_0012_knowledge_compile_recovery.py,sha256=0ZqdQU3-unkvffrffVTHFsP_7pwcAxlavHCM5jYPJMs,2193
147
+ rememberstack/spine/migrations/versions/p6_04_0013_knowledge_writer_ledger.py,sha256=7NjDsSlw2VeqGoxUR_vsJ4gkzYRdOpY7F2cbSzUVCWk,1615
148
+ rememberstack/spine/migrations/versions/p6_05_0014_knowledge_planner_runtime.py,sha256=jLhRy04kcegn9Ga-y3C0EzLtoIFHv8VtAqvN9HHxfBk,8390
149
+ rememberstack/spine/migrations/versions/p6_06_0015_authored_dispatch_runtime.py,sha256=QxqdaoosHRQdaP6SsDUkpAINtogQHzptNfDNx_hLTJ0,1294
150
+ rememberstack/spine/migrations/versions/p7_02_0016_operational_eval_suite.py,sha256=mZ3Wt3UxNxZw4WDT-YUxzMCY7eppFx7aycChMAKz_-0,553
151
+ rememberstack/spine/migrations/versions/p7_05_0017_hard_forget.py,sha256=YFLDvmSv5qKCtK7J7a67jPP_MVGtVO3PsZBXSZxvRTA,3060
152
+ rememberstack/surfaces/__init__.py,sha256=zadLFdenkpjDTr1DYaFVvN8U4rNnLwIAu54OL1NI9F4,4263
153
+ rememberstack/surfaces/cli.py,sha256=fmL0d2pld8udeG_a6zL4JdlTb7Dl_FifbWeU0eA8X-g,16623
154
+ rememberstack/surfaces/consumption_skill.py,sha256=ESJpWs4yfyxURh0SJlU7cpI4nPp-tJ18PT3KHnm1NEo,3274
155
+ rememberstack/surfaces/graph_queries.py,sha256=UXMQwojHfAKpF7Gz-V8dlRTo0NVpi6uJKXFlzhJi1HY,27997
156
+ rememberstack/surfaces/http_api.py,sha256=troyFrcQ1lfao1RRnUb5ZbYfFVUnYJaxB-4_gBq0l50,14996
157
+ rememberstack/surfaces/mcp.py,sha256=sLginIGiTR_ZmwD5rFeCytV_bUjfonzIAKx-E5bAGQA,2846
158
+ rememberstack/surfaces/query_engine.py,sha256=OPeqEqa3Vc0pjkg3nl_g7lgHbhHji_z7vgYPdg95jsI,63044
159
+ rememberstack/surfaces/recipe_executor.py,sha256=s5U8G7HoEEEa8fP76rp3WPsMNcM8vX7bug_nPEuaUhI,6797
160
+ rememberstack/surfaces/recipe_surface.py,sha256=kbnaKOCs28L6eO3wrUek6ZI06mHvZRK2ZqJ7iaL7b-I,8700
161
+ rememberstack/surfaces/remote_mcp.py,sha256=0IX_OLlRNdmTxh2v91VE2BS1yzD65wtZas06RfM5Hm4,4861
162
+ rememberstack/surfaces/sdk.py,sha256=yWH3JUPHIFteO-5CVD-7hOgC1V4lr_tbxczZP-EvM7I,11877
163
+ rememberstack/workers/__init__.py,sha256=viQ5t4KAmQtDaLPHrggiRQg1rO3z4mcWWwlPG8Srdkk,6895
164
+ rememberstack/workers/base.py,sha256=IQ21LbPBOcbgeeaNuRr72klI0FTPyjOmt9bZjgxk3xw,11944
165
+ rememberstack/workers/e0.py,sha256=z1ZsvsJ79O22jb6jyG-rzVyc347Qwv9xKqp3dorh6CM,23448
166
+ rememberstack/workers/e1.py,sha256=jiD8oIPm6IO7HFaUkMJlpGhLHo8n2_OjJMHZTlhkRX4,16178
167
+ rememberstack/workers/e2.py,sha256=C3Lg376jjT7zHdn_Rl5sHyHRcHLwX14s1TdoloN7Rws,20542
168
+ rememberstack/workers/e3.py,sha256=bJuzQOwGXC4_YQs8zP04Tvs_8IHRDmq7mLL8RTyIEqQ,18698
169
+ rememberstack/workers/forget.py,sha256=2ifD4QRy1aezGXN-nqj4Ti45PlMLZruQhUBK2o4_di0,11848
170
+ rememberstack/workers/knowledge_authored.py,sha256=g5grYGX6pvUzjZKN-GLVb5DVwMg-QqeLck7alsatRSg,6263
171
+ rememberstack/workers/knowledge_driver.py,sha256=WEINgbT--YKSJ-FkWo2847cM82FVIjRi1W7qin_uDXU,30886
172
+ rememberstack/workers/knowledge_fact_sheet.py,sha256=YGSwP1IuawVxVcnhnY-emy0WFau4KK9oVv_u-beEoNs,4776
173
+ rememberstack/workers/knowledge_planner.py,sha256=Tz4UKzo-BlyKHu8ywH7GqbleShjYZ934gt9_3QRKoxM,14634
174
+ rememberstack/workers/knowledge_writer.py,sha256=6uTQoenQPRCuP4MbMOlI6ubECpXWc86X6kvK7oj3acc,16882
175
+ rememberstack/workers/operations.py,sha256=kwbeDlJ6ZdmZvtHwJcB4eFKbiiIcoqKYv9MB6WoN0O4,1460
176
+ rememberstack/workers/p1.py,sha256=fUf5lk2VH_wIQ-yc2Su9QvYheF4rP3cTS6FGTwQ22JY,9751
177
+ rememberstack/workers/p2.py,sha256=fn2Qt4Mful3LCxhSoxyXV3Bv0UCHmeDOUEiNzYJc9Hk,20410
178
+ rememberstack/workers/p2_analytics.py,sha256=S-POCWfH554ffWaXzkcxnM96fhVhDDxNSuqyhq7BOGs,11357
179
+ rememberstack/workers/p3.py,sha256=gXY7bnjUR88lBQe9E-EgTbjmz9J8hpPj7xo4S8qLmFM,26824
180
+ rememberstack/workers/reconcile.py,sha256=MLBKpiTDT_40LuyNw91pil4118umwK5wF_ZnPvu9jbc,20771
181
+ rememberstack/workers/sync.py,sha256=oyvuV2P5Ji-oy6qa7ZC_M358OWex6J4YmX45lqOZdjA,6415
182
+ rememberstack-0.1.0.dist-info/METADATA,sha256=o51dP3t2CZSPFll_PgMQcg_zjAg2YnUsqQTtEdU-pUg,15977
183
+ rememberstack-0.1.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
184
+ rememberstack-0.1.0.dist-info/entry_points.txt,sha256=mNK8GQfDBqlJpJ9tTjZfRmorosNV71lvRCprHZxY22g,61
185
+ rememberstack-0.1.0.dist-info/licenses/LICENSE,sha256=_Iq-s_7iKwzutMhBsdHLXiGhXz2m7o_J618yabDn3ig,11347
186
+ rememberstack-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ remember = rememberstack.surfaces.cli:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2026 WriteIt.ai s.r.o.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.