notrix-trax 0.1.0__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 (78) hide show
  1. notrix_trax-0.1.0/LICENSE +159 -0
  2. notrix_trax-0.1.0/NOTICE +9 -0
  3. notrix_trax-0.1.0/PKG-INFO +314 -0
  4. notrix_trax-0.1.0/README.md +292 -0
  5. notrix_trax-0.1.0/notrix_trax.egg-info/PKG-INFO +314 -0
  6. notrix_trax-0.1.0/notrix_trax.egg-info/SOURCES.txt +76 -0
  7. notrix_trax-0.1.0/notrix_trax.egg-info/dependency_links.txt +1 -0
  8. notrix_trax-0.1.0/notrix_trax.egg-info/entry_points.txt +2 -0
  9. notrix_trax-0.1.0/notrix_trax.egg-info/requires.txt +1 -0
  10. notrix_trax-0.1.0/notrix_trax.egg-info/top_level.txt +1 -0
  11. notrix_trax-0.1.0/pyproject.toml +40 -0
  12. notrix_trax-0.1.0/setup.cfg +4 -0
  13. notrix_trax-0.1.0/tests/test_adapters_openai.py +32 -0
  14. notrix_trax-0.1.0/tests/test_adapters_otel.py +63 -0
  15. notrix_trax-0.1.0/tests/test_adapters_retrieval.py +32 -0
  16. notrix_trax-0.1.0/tests/test_capture.py +48 -0
  17. notrix_trax-0.1.0/tests/test_capture_surfaces.py +104 -0
  18. notrix_trax-0.1.0/tests/test_cli.py +44 -0
  19. notrix_trax-0.1.0/tests/test_cli_help.py +31 -0
  20. notrix_trax-0.1.0/tests/test_cli_theme.py +26 -0
  21. notrix_trax-0.1.0/tests/test_cli_verdicts.py +156 -0
  22. notrix_trax-0.1.0/tests/test_collector.py +25 -0
  23. notrix_trax-0.1.0/tests/test_detect.py +183 -0
  24. notrix_trax-0.1.0/tests/test_diff.py +284 -0
  25. notrix_trax-0.1.0/tests/test_enums.py +15 -0
  26. notrix_trax-0.1.0/tests/test_examples.py +91 -0
  27. notrix_trax-0.1.0/tests/test_explain.py +249 -0
  28. notrix_trax-0.1.0/tests/test_graph.py +97 -0
  29. notrix_trax-0.1.0/tests/test_graph_export.py +113 -0
  30. notrix_trax-0.1.0/tests/test_inspect.py +215 -0
  31. notrix_trax-0.1.0/tests/test_langgraph_adapter.py +93 -0
  32. notrix_trax-0.1.0/tests/test_normalize.py +315 -0
  33. notrix_trax-0.1.0/tests/test_packaging.py +27 -0
  34. notrix_trax-0.1.0/tests/test_replay.py +267 -0
  35. notrix_trax-0.1.0/trax/__init__.py +7 -0
  36. notrix_trax-0.1.0/trax/adapters/__init__.py +7 -0
  37. notrix_trax-0.1.0/trax/adapters/openai.py +65 -0
  38. notrix_trax-0.1.0/trax/adapters/otel.py +124 -0
  39. notrix_trax-0.1.0/trax/adapters/retrieval.py +53 -0
  40. notrix_trax-0.1.0/trax/cli/__init__.py +1 -0
  41. notrix_trax-0.1.0/trax/cli/formatters.py +25 -0
  42. notrix_trax-0.1.0/trax/cli/main.py +981 -0
  43. notrix_trax-0.1.0/trax/cli/theme.py +134 -0
  44. notrix_trax-0.1.0/trax/collector/__init__.py +23 -0
  45. notrix_trax-0.1.0/trax/collector/events.py +47 -0
  46. notrix_trax-0.1.0/trax/config.py +37 -0
  47. notrix_trax-0.1.0/trax/detect/__init__.py +5 -0
  48. notrix_trax-0.1.0/trax/detect/engine.py +42 -0
  49. notrix_trax-0.1.0/trax/detect/rules.py +213 -0
  50. notrix_trax-0.1.0/trax/diff/__init__.py +14 -0
  51. notrix_trax-0.1.0/trax/diff/engine.py +254 -0
  52. notrix_trax-0.1.0/trax/diff/matcher.py +81 -0
  53. notrix_trax-0.1.0/trax/diff/models.py +69 -0
  54. notrix_trax-0.1.0/trax/explain/__init__.py +6 -0
  55. notrix_trax-0.1.0/trax/explain/diagnosis.py +56 -0
  56. notrix_trax-0.1.0/trax/explain/engine.py +58 -0
  57. notrix_trax-0.1.0/trax/explain/models.py +38 -0
  58. notrix_trax-0.1.0/trax/explain/playbooks.py +39 -0
  59. notrix_trax-0.1.0/trax/explain/ranker.py +61 -0
  60. notrix_trax-0.1.0/trax/graph/__init__.py +6 -0
  61. notrix_trax-0.1.0/trax/graph/builder.py +150 -0
  62. notrix_trax-0.1.0/trax/graph/export.py +79 -0
  63. notrix_trax-0.1.0/trax/langgraph/__init__.py +5 -0
  64. notrix_trax-0.1.0/trax/langgraph/adapter.py +92 -0
  65. notrix_trax-0.1.0/trax/models/__init__.py +5 -0
  66. notrix_trax-0.1.0/trax/models/core.py +116 -0
  67. notrix_trax-0.1.0/trax/normalize/__init__.py +5 -0
  68. notrix_trax-0.1.0/trax/normalize/engine.py +288 -0
  69. notrix_trax-0.1.0/trax/replay/__init__.py +6 -0
  70. notrix_trax-0.1.0/trax/replay/engine.py +144 -0
  71. notrix_trax-0.1.0/trax/replay/models.py +51 -0
  72. notrix_trax-0.1.0/trax/replay/safety.py +26 -0
  73. notrix_trax-0.1.0/trax/sdk/__init__.py +5 -0
  74. notrix_trax-0.1.0/trax/sdk/capture.py +375 -0
  75. notrix_trax-0.1.0/trax/storage/__init__.py +30 -0
  76. notrix_trax-0.1.0/trax/storage/artifacts.py +39 -0
  77. notrix_trax-0.1.0/trax/storage/bootstrap.py +120 -0
  78. notrix_trax-0.1.0/trax/storage/repository.py +268 -0
@@ -0,0 +1,159 @@
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, and
10
+ distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright
13
+ owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all other entities
16
+ that control, are controlled by, or are under common control with that entity.
17
+ For the purposes of this definition, "control" means (i) the power, direct or
18
+ indirect, to cause the direction or management of such entity, whether by
19
+ contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
23
+ permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications, including
26
+ but not limited to software source code, documentation source, and configuration
27
+ files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical transformation or
30
+ translation of a Source form, including but not limited to compiled object code,
31
+ generated documentation, and conversions to other media types.
32
+
33
+ "Work" shall mean the work of authorship, whether in Source or Object form, made
34
+ available under the License, as indicated by a copyright notice that is included
35
+ in or attached to the work (an example is provided in the Appendix below).
36
+
37
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is
38
+ based on (or derived from) the Work and for which the editorial revisions,
39
+ annotations, elaborations, or other modifications represent, as a whole, an
40
+ original work of authorship. For the purposes of this License, Derivative Works
41
+ shall not include works that remain separable from, or merely link (or bind by
42
+ name) to the interfaces of, the Work and Derivative Works thereof.
43
+
44
+ "Contribution" shall mean any work of authorship, including the original version
45
+ of the Work and any modifications or additions to that Work or Derivative Works
46
+ thereof, that is intentionally submitted to Licensor for inclusion in the Work
47
+ by the copyright owner or by an individual or Legal Entity authorized to submit
48
+ on behalf of the copyright owner. For the purposes of this definition,
49
+ "submitted" means any form of electronic, verbal, or written communication sent
50
+ to the Licensor or its representatives, including but not limited to
51
+ communication on electronic mailing lists, source code control systems, and
52
+ issue tracking systems that are managed by, or on behalf of, the Licensor for
53
+ the purpose of discussing and improving the Work, but excluding communication
54
+ that is conspicuously marked or otherwise designated in writing by the copyright
55
+ owner as "Not a Contribution."
56
+
57
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
58
+ whom a Contribution has been received by Licensor and subsequently incorporated
59
+ within the Work.
60
+
61
+ 2. Grant of Copyright License. Subject to the terms and conditions of this
62
+ License, each Contributor hereby grants to You a perpetual, worldwide,
63
+ non-exclusive, no-charge, royalty-free, irrevocable copyright license to
64
+ reproduce, prepare Derivative Works of, publicly display, publicly perform,
65
+ sublicense, and distribute the Work and such Derivative Works in Source or
66
+ Object form.
67
+
68
+ 3. Grant of Patent License. Subject to the terms and conditions of this License,
69
+ each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
70
+ no-charge, royalty-free, irrevocable (except as stated in this section) patent
71
+ license to make, have made, use, offer to sell, sell, import, and otherwise
72
+ transfer the Work, where such license applies only to those patent claims
73
+ licensable by such Contributor that are necessarily infringed by their
74
+ Contribution(s) alone or by combination of their Contribution(s) with the Work
75
+ to which such Contribution(s) was submitted. If You institute patent litigation
76
+ against any entity (including a cross-claim or counterclaim in a lawsuit)
77
+ alleging that the Work or a Contribution incorporated within the Work
78
+ constitutes direct or contributory patent infringement, then any patent licenses
79
+ granted to You under this License for that Work shall terminate as of the date
80
+ such litigation is filed.
81
+
82
+ 4. Redistribution. You may reproduce and distribute copies of the Work or
83
+ Derivative Works thereof in any medium, with or without modifications, and in
84
+ Source or Object form, provided that You meet the following conditions:
85
+
86
+ (a) You must give any other recipients of the Work or Derivative Works a copy of
87
+ this License; and
88
+
89
+ (b) You must cause any modified files to carry prominent notices stating that You
90
+ changed the files; and
91
+
92
+ (c) You must retain, in the Source form of any Derivative Works that You
93
+ distribute, all copyright, patent, trademark, and attribution notices from the
94
+ Source form of the Work, excluding those notices that do not pertain to any part
95
+ of the Derivative Works; and
96
+
97
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then
98
+ any Derivative Works that You distribute must include a readable copy of the
99
+ attribution notices contained within such NOTICE file, excluding those notices
100
+ that do not pertain to any part of the Derivative Works, in at least one of the
101
+ following places: within a NOTICE text file distributed as part of the
102
+ Derivative Works; within the Source form or documentation, if provided along
103
+ with the Derivative Works; or, within a display generated by the Derivative
104
+ Works, if and wherever such third-party notices normally appear. The contents of
105
+ the NOTICE file are for informational purposes only and do not modify the
106
+ License. You may add Your own attribution notices within Derivative Works that
107
+ You distribute, alongside or as an addendum to the NOTICE text from the Work,
108
+ provided that such additional attribution notices cannot be construed as
109
+ modifying the License.
110
+
111
+ You may add Your own copyright statement to Your modifications and may provide
112
+ additional or different license terms and conditions for use, reproduction, or
113
+ distribution of Your modifications, or for any such Derivative Works as a whole,
114
+ provided Your use, reproduction, and distribution of the Work otherwise complies
115
+ with the conditions stated in this License.
116
+
117
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any
118
+ Contribution intentionally submitted for inclusion in the Work by You to the
119
+ Licensor shall be under the terms and conditions of this License, without any
120
+ additional terms or conditions. Notwithstanding the above, nothing herein shall
121
+ supersede or modify the terms of any separate license agreement you may have
122
+ executed with Licensor regarding such Contributions.
123
+
124
+ 6. Trademarks. This License does not grant permission to use the trade names,
125
+ trademarks, service marks, or product names of the Licensor, except as required
126
+ for reasonable and customary use in describing the origin of the Work and
127
+ reproducing the content of the NOTICE file.
128
+
129
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
130
+ writing, Licensor provides the Work (and each Contributor provides its
131
+ Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
132
+ KIND, either express or implied, including, without limitation, any warranties
133
+ or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
134
+ PARTICULAR PURPOSE. You are solely responsible for determining the
135
+ appropriateness of using or redistributing the Work and assume any risks
136
+ associated with Your exercise of permissions under this License.
137
+
138
+ 8. Limitation of Liability. In no event and under no legal theory, whether in
139
+ tort (including negligence), contract, or otherwise, unless required by
140
+ applicable law (such as deliberate and grossly negligent acts) or agreed to in
141
+ writing, shall any Contributor be liable to You for damages, including any
142
+ direct, indirect, special, incidental, or consequential damages of any character
143
+ arising as a result of this License or out of the use or inability to use the
144
+ Work (including but not limited to damages for loss of goodwill, work stoppage,
145
+ computer failure or malfunction, or any and all other commercial damages or
146
+ losses), even if such Contributor has been advised of the possibility of such
147
+ damages.
148
+
149
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or
150
+ Derivative Works thereof, You may choose to offer, and charge a fee for,
151
+ acceptance of support, warranty, indemnity, or other liability obligations
152
+ and/or rights consistent with this License. However, in accepting such
153
+ obligations, You may act only on Your own behalf and on Your sole
154
+ responsibility, not on behalf of any other Contributor, and only if You agree to
155
+ indemnify, defend, and hold each Contributor harmless for any liability incurred
156
+ by, or claims asserted against, such Contributor by reason of your accepting any
157
+ such warranty or additional liability.
158
+
159
+ END OF TERMS AND CONDITIONS
@@ -0,0 +1,9 @@
1
+ Notrix Trax
2
+ Copyright 2026 Notrix LLC
3
+
4
+ This product includes software developed by Notrix LLC.
5
+
6
+ Licensed under the Apache License, Version 2.0.
7
+ You may obtain a copy of the License at:
8
+
9
+ http://www.apache.org/licenses/LICENSE-2.0
@@ -0,0 +1,314 @@
1
+ Metadata-Version: 2.4
2
+ Name: notrix-trax
3
+ Version: 0.1.0
4
+ Summary: Local-first AI debugging tool for capture, replay, diff, and explanation.
5
+ Author: Notrix
6
+ License: Apache-2.0
7
+ Keywords: ai,debugging,tracing,replay,observability
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ License-File: NOTICE
20
+ Requires-Dist: langgraph>=1.1.6
21
+ Dynamic: license-file
22
+
23
+ # Notrix Trax
24
+
25
+ **Debug non-deterministic AI workflows — deterministically.**
26
+
27
+ Trace what happened. Diff what changed. Replay where it broke.
28
+
29
+
30
+ ```bash
31
+ pip install notrix-trax
32
+ ```
33
+
34
+ ---
35
+
36
+ ## Why debugging AI systems is broken
37
+
38
+ You changed nothing. But your AI system behaves differently.
39
+
40
+ - different answer
41
+ - different retrieval
42
+ - different agent path
43
+
44
+ Why?
45
+
46
+ Logs tell you what ran. They don’t tell you:
47
+
48
+ - what actually changed
49
+ - where the divergence happened
50
+ - why the outcome is different
51
+
52
+ AI systems are **non-deterministic and structurally opaque**.
53
+
54
+ Debugging them shouldn’t be.
55
+
56
+ ---
57
+
58
+ ## What Trax Does
59
+
60
+ Trax converts raw execution signals into a **canonical execution graph** — a structured, provider-agnostic DAG of steps and edges with stable identity across runs.
61
+
62
+ From that graph, Notrix trax provides four core operations:
63
+
64
+ | Operation | What it answers |
65
+ |---|---|
66
+ | `inspect` | What happened in this run, structurally? |
67
+ | `diff` | What changed between run A and run B? |
68
+ | `replay` | Can I simulate replay of the relevant part, safely? |
69
+ | `explain` | What is the evidence-grounded explanation for this failure? |
70
+
71
+ Every insight is derived from the same canonical graph. Nothing is inferred from display hierarchy or log ordering.
72
+
73
+ ---
74
+
75
+ ## When to use Trax
76
+
77
+ Use Trax if:
78
+
79
+ - your LLM output changed and you don’t know why
80
+ - retrieval returns different documents
81
+ - agent behavior is inconsistent
82
+
83
+ Not for:
84
+
85
+ - metrics dashboards
86
+ - latency monitoring
87
+ ---
88
+
89
+ ## What you get
90
+
91
+ - **Deterministic execution graph**
92
+ - **Step-level diff between runs**
93
+ - **Replay from failure point**
94
+ - **Evidence-grounded explanations**
95
+
96
+ All derived from the same canonical structure.
97
+
98
+ ---
99
+
100
+ ## Trax vs Observability Tools
101
+
102
+ | Feature | Notrix Trax | Observability tools |
103
+ |--------|------|---------------------|
104
+ | Structural diff | ✅ | ❌ |
105
+ | Replay simulation | ✅ | ❌ |
106
+ | Failure explanation | ✅ | ❌ |
107
+ | Logs / traces | ❌ | ✅ |
108
+
109
+ ---
110
+
111
+ ## Quickstart
112
+
113
+ ```bash
114
+ python examples/hero_diff_replay.py
115
+
116
+ trax list
117
+ trax inspect <run_id>
118
+ trax diff <run_a> <run_b>
119
+ trax explain <run_id>
120
+ trax replay <run_id> --start-at step_4 --stop-at step_8
121
+ ```
122
+
123
+ Trax stores metadata in local SQLite and artifacts on the filesystem (`TRAX_HOME`, default: `~/.trax`). No external services required.
124
+
125
+ ---
126
+
127
+ ## Hero Example
128
+
129
+ Two runs of your RAG pipeline return different answers. You want to know exactly where they diverged.
130
+
131
+ ```bash
132
+ trax diff run_1 run_2
133
+ ```
134
+
135
+ **See the difference immediately**
136
+
137
+ ![trax diff screenshot](docs/assets/trax-diff.png)
138
+
139
+ ```bash
140
+ trax explain run_2
141
+ ```
142
+ ![trax explain screenshot](docs/assets/trax-explain.png)
143
+
144
+ Structural, grounded, reproducible.
145
+
146
+ ---
147
+
148
+ ## Capture
149
+
150
+ ### Drop-in adapters
151
+
152
+ ```python
153
+ from trax.adapters.openai import traced_chat
154
+ from trax.adapters.retrieval import traced_retrieval
155
+
156
+ docs = traced_retrieval(
157
+ query="what is trax?",
158
+ top_k=2,
159
+ backend="simple_vector",
160
+ retrieve=lambda **_: [{"id": "doc-1", "text": "Trax debugs AI runs."}],
161
+ )
162
+
163
+ response = traced_chat(
164
+ model="gpt-4.1-mini",
165
+ messages=[{"role": "user", "content": "Summarize Trax."}],
166
+ call=lambda **_: {"output_text": "Trax is a local-first AI debugger."},
167
+ )
168
+ ```
169
+
170
+ ### Manual SDK
171
+
172
+ ```python
173
+ from trax import run, step, traced_step
174
+
175
+ @traced_step("prepare", attributes={"semantic_type": "transform"})
176
+ def prepare_question(text: str) -> dict[str, str]:
177
+ return {"normalized_question": text.strip().lower()}
178
+
179
+ with run("my-flow", input={"question": "What does Trax do?"}):
180
+ question = prepare_question("What does Trax do?")
181
+ with step("answer", input=question, attributes={"semantic_type": "llm"}) as s:
182
+ s.set_output({"answer": "Trax debugs AI workflows locally."})
183
+ ```
184
+
185
+ ### LangGraph (first-class support)
186
+
187
+ Invocation-level and node-level tracing with no dependency on internal callbacks. Works with real compiled graphs.
188
+
189
+ ```python
190
+ from trax.langgraph import traced_invoke
191
+ from langgraph.graph import StateGraph
192
+
193
+ graph = StateGraph(MyState)
194
+ # ... define nodes and edges ...
195
+ compiled = graph.compile()
196
+
197
+ result = traced_invoke(compiled, {"question": "What does Trax do?"})
198
+ ```
199
+
200
+ ---
201
+
202
+ ## CLI Reference
203
+
204
+ ```bash
205
+ trax list # list all captured runs
206
+ trax inspect <run_id> # inspect a run's canonical graph
207
+ trax diff <run_id_1> <run_id_2> # structural diff between two runs
208
+ trax replay <run_id> # simulate replay of a run under persisted safety policy
209
+ trax replay <run_id> --start-at <step> --stop-at <step> # partial replay
210
+ trax explain <run_id> # evidence-grounded failure explanation
211
+ trax import-otel trace.json # import an OpenTelemetry trace
212
+ ```
213
+
214
+ ---
215
+
216
+ ## How It Works
217
+
218
+ Trax builds a **canonical execution graph** — not a trace, not a log, not a span tree.
219
+
220
+ ```
221
+ Capture → Collect → Normalize → Graph → Diff / Detect / Replay → Explain
222
+ ```
223
+
224
+ The key properties that make this useful for debugging:
225
+
226
+ **Stable step identity.** The same logical step normalizes to the same canonical meaning across runs. This makes structural diffing possible — you're comparing the same thing, not two different representations of it.
227
+
228
+ **Edge-driven structure.** Relationships between steps are derived from persisted graph edges and deterministic fallback rules. There are no implicit structural relationships from display hierarchy.
229
+
230
+ **Provider-agnostic adapters.** Different framework or provider integrations emit signals that normalize into the same canonical step model, so diffs and replay stay meaningful across tool boundaries.
231
+
232
+ **Display hierarchy is not structure.** Scope hints and nesting from adapters are stored as metadata only. They influence how things look, not how the graph is built.
233
+
234
+ ---
235
+
236
+ ## Core Concepts
237
+
238
+ | Concept | Definition |
239
+ |---|---|
240
+ | **Run** | A single captured execution instance |
241
+ | **Step** | A canonical, normalized unit of work (e.g., `llm:call`, `retrieval:query`) |
242
+ | **Edge** | A directional canonical relationship between steps |
243
+ | **Artifact** | Input/output data associated with a step |
244
+ | **Failure** | A detected issue localized to a specific step in the graph |
245
+
246
+ Step names follow the format `<domain>:<operation>`. Current surfaced domains include `llm`, `retrieval`, `tool`, `agent`, `reasoning`, `transform`, `io`, `rerank`, and `unknown`.
247
+
248
+ ---
249
+
250
+ ## Examples
251
+
252
+ | Example | What it demonstrates |
253
+ |---|---|
254
+ | `examples/basic_capture.py` | Minimal manual SDK capture |
255
+ | `examples/rag_failure/` | Retrieval divergence across two runs |
256
+ | `examples/agent_loop/` | Structural path divergence in an agent loop |
257
+ | `examples/langgraph_basic.py` | Real LangGraph execution with node-level tracing |
258
+
259
+ ```bash
260
+ python examples/hero_diff_replay.py
261
+ ```
262
+
263
+ ---
264
+
265
+ ## Development
266
+
267
+ ```bash
268
+ git clone https://github.com/notrix-dev/notrix-trax.git
269
+ cd notrix-trax
270
+ pip install -e .
271
+ pip install -r requirements.txt
272
+ pytest
273
+ ```
274
+
275
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for how to build adapters, improve the core system, or contribute to the spec.
276
+
277
+ ---
278
+
279
+ ## Project Structure
280
+
281
+ ```
282
+ trax/
283
+ adapters/ # capture layer — framework integrations
284
+ normalize/ # canonical step meaning
285
+ graph/ # structural edge construction and validation
286
+ replay/ # deterministic replay engine
287
+ diff/ # two-run structural comparison
288
+ detect/ # single-run failure detection
289
+ cli/ # projection layer
290
+
291
+ docs/ # system and subsystem specifications
292
+ examples/ # runnable demos
293
+ ```
294
+
295
+ ---
296
+
297
+ ## Spec-Driven Design
298
+
299
+ Trax is architecture-first. The system behavior is defined in a set of layered specifications:
300
+
301
+ - `docs/system-spec.md` — authoritative system contract
302
+ - `docs/spec-graph.md` — canonical graph model
303
+ - `docs/spec-normalizer.md` — step semantics and naming
304
+ - `docs/spec-diff-detect.md` — diff and detect contract
305
+ - `docs/spec-replay.md` — replay contract
306
+ - `docs/spec-adapter.md` — adapter contract
307
+
308
+ If you want to understand *why* the system is designed the way it is, the specs are the place to start.
309
+
310
+ ---
311
+
312
+ ## License
313
+
314
+ [Apache License 2.0](LICENSE)