decision-trace-reconstructor 0.1.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 (232) hide show
  1. decision_trace_reconstructor-0.1.2.dist-info/METADATA +173 -0
  2. decision_trace_reconstructor-0.1.2.dist-info/RECORD +232 -0
  3. decision_trace_reconstructor-0.1.2.dist-info/WHEEL +5 -0
  4. decision_trace_reconstructor-0.1.2.dist-info/entry_points.txt +2 -0
  5. decision_trace_reconstructor-0.1.2.dist-info/licenses/LICENSE +189 -0
  6. decision_trace_reconstructor-0.1.2.dist-info/top_level.txt +1 -0
  7. reconstructor/__init__.py +3 -0
  8. reconstructor/adapters/__init__.py +56 -0
  9. reconstructor/adapters/_payloads.py +18 -0
  10. reconstructor/adapters/_time.py +60 -0
  11. reconstructor/adapters/agentframework/__init__.py +15 -0
  12. reconstructor/adapters/agentframework/activity_handlers.py +80 -0
  13. reconstructor/adapters/agentframework/architecture.py +35 -0
  14. reconstructor/adapters/agentframework/cli.py +7 -0
  15. reconstructor/adapters/agentframework/cli_handler.py +47 -0
  16. reconstructor/adapters/agentframework/cli_parser.py +74 -0
  17. reconstructor/adapters/agentframework/common.py +59 -0
  18. reconstructor/adapters/agentframework/events.py +106 -0
  19. reconstructor/adapters/agentframework/fragment_common.py +103 -0
  20. reconstructor/adapters/agentframework/fragments.py +38 -0
  21. reconstructor/adapters/agentframework/handlers.py +66 -0
  22. reconstructor/adapters/agentframework/lifecycle_handlers.py +96 -0
  23. reconstructor/adapters/agentframework/message_fragments.py +112 -0
  24. reconstructor/adapters/agentframework/pipeline.py +53 -0
  25. reconstructor/adapters/agentframework/state.py +57 -0
  26. reconstructor/adapters/agentframework/tool_fragments.py +49 -0
  27. reconstructor/adapters/anthropic/__init__.py +15 -0
  28. reconstructor/adapters/anthropic/cli.py +102 -0
  29. reconstructor/adapters/anthropic/common.py +41 -0
  30. reconstructor/adapters/anthropic/events.py +57 -0
  31. reconstructor/adapters/anthropic/fragment_common.py +51 -0
  32. reconstructor/adapters/anthropic/fragments.py +22 -0
  33. reconstructor/adapters/anthropic/message_fragments.py +19 -0
  34. reconstructor/adapters/anthropic/message_payloads.py +54 -0
  35. reconstructor/adapters/anthropic/pipeline.py +143 -0
  36. reconstructor/adapters/anthropic/request_fragments.py +72 -0
  37. reconstructor/adapters/anthropic/response_fragments.py +90 -0
  38. reconstructor/adapters/anthropic/tool_builders.py +84 -0
  39. reconstructor/adapters/anthropic/tool_fragments.py +101 -0
  40. reconstructor/adapters/anthropic/tool_rules.py +53 -0
  41. reconstructor/adapters/bedrock/__init__.py +29 -0
  42. reconstructor/adapters/bedrock/actor_common.py +33 -0
  43. reconstructor/adapters/bedrock/cli.py +7 -0
  44. reconstructor/adapters/bedrock/cli_args.py +55 -0
  45. reconstructor/adapters/bedrock/cli_handler.py +64 -0
  46. reconstructor/adapters/bedrock/cli_parser.py +72 -0
  47. reconstructor/adapters/bedrock/common.py +30 -0
  48. reconstructor/adapters/bedrock/fragment_common.py +43 -0
  49. reconstructor/adapters/bedrock/fragment_context.py +45 -0
  50. reconstructor/adapters/bedrock/fragments.py +8 -0
  51. reconstructor/adapters/bedrock/human_common.py +17 -0
  52. reconstructor/adapters/bedrock/io.py +52 -0
  53. reconstructor/adapters/bedrock/live.py +126 -0
  54. reconstructor/adapters/bedrock/live_memory.py +19 -0
  55. reconstructor/adapters/bedrock/live_pagination.py +33 -0
  56. reconstructor/adapters/bedrock/memory_common.py +16 -0
  57. reconstructor/adapters/bedrock/normalize.py +15 -0
  58. reconstructor/adapters/bedrock/normalize_common.py +30 -0
  59. reconstructor/adapters/bedrock/normalize_events.py +84 -0
  60. reconstructor/adapters/bedrock/normalize_sessions.py +90 -0
  61. reconstructor/adapters/bedrock/options.py +18 -0
  62. reconstructor/adapters/bedrock/pipeline.py +56 -0
  63. reconstructor/adapters/bedrock/session_fragments.py +95 -0
  64. reconstructor/adapters/bedrock/tool_common.py +71 -0
  65. reconstructor/adapters/bedrock/trace_fragments.py +41 -0
  66. reconstructor/adapters/bedrock/trace_llm_fragments.py +101 -0
  67. reconstructor/adapters/bedrock/trace_orchestration_fragments.py +121 -0
  68. reconstructor/adapters/bedrock/trace_terminal_fragments.py +83 -0
  69. reconstructor/adapters/crewai/__init__.py +15 -0
  70. reconstructor/adapters/crewai/activity_fragments.py +119 -0
  71. reconstructor/adapters/crewai/activity_handlers.py +130 -0
  72. reconstructor/adapters/crewai/architecture.py +51 -0
  73. reconstructor/adapters/crewai/cli.py +7 -0
  74. reconstructor/adapters/crewai/cli_handler.py +43 -0
  75. reconstructor/adapters/crewai/cli_parser.py +77 -0
  76. reconstructor/adapters/crewai/common.py +49 -0
  77. reconstructor/adapters/crewai/events.py +68 -0
  78. reconstructor/adapters/crewai/fragment_common.py +51 -0
  79. reconstructor/adapters/crewai/fragments.py +31 -0
  80. reconstructor/adapters/crewai/handlers.py +58 -0
  81. reconstructor/adapters/crewai/lifecycle_fragments.py +75 -0
  82. reconstructor/adapters/crewai/lifecycle_handlers.py +152 -0
  83. reconstructor/adapters/crewai/pipeline.py +55 -0
  84. reconstructor/adapters/crewai/state.py +51 -0
  85. reconstructor/adapters/generic_jsonl/__init__.py +35 -0
  86. reconstructor/adapters/generic_jsonl/cli.py +7 -0
  87. reconstructor/adapters/generic_jsonl/cli_handler.py +57 -0
  88. reconstructor/adapters/generic_jsonl/cli_parser.py +70 -0
  89. reconstructor/adapters/generic_jsonl/common.py +84 -0
  90. reconstructor/adapters/generic_jsonl/followups.py +66 -0
  91. reconstructor/adapters/generic_jsonl/fragments.py +66 -0
  92. reconstructor/adapters/generic_jsonl/io.py +46 -0
  93. reconstructor/adapters/generic_jsonl/mapping.py +108 -0
  94. reconstructor/adapters/generic_jsonl/paths.py +92 -0
  95. reconstructor/adapters/generic_jsonl/payloads.py +30 -0
  96. reconstructor/adapters/generic_jsonl/pipeline.py +65 -0
  97. reconstructor/adapters/generic_jsonl/record_fields.py +53 -0
  98. reconstructor/adapters/generic_jsonl/record_fragments.py +69 -0
  99. reconstructor/adapters/generic_jsonl/record_kind.py +45 -0
  100. reconstructor/adapters/generic_jsonl/state_mutation.py +50 -0
  101. reconstructor/adapters/generic_jsonl/utils.py +15 -0
  102. reconstructor/adapters/generic_jsonl/validation.py +70 -0
  103. reconstructor/adapters/generic_jsonl/yaml.py +146 -0
  104. reconstructor/adapters/langsmith/__init__.py +19 -0
  105. reconstructor/adapters/langsmith/cli.py +7 -0
  106. reconstructor/adapters/langsmith/cli_handler.py +84 -0
  107. reconstructor/adapters/langsmith/cli_parser.py +84 -0
  108. reconstructor/adapters/langsmith/common.py +69 -0
  109. reconstructor/adapters/langsmith/fragment_builders.py +139 -0
  110. reconstructor/adapters/langsmith/fragment_common.py +98 -0
  111. reconstructor/adapters/langsmith/fragment_predicates.py +34 -0
  112. reconstructor/adapters/langsmith/fragments.py +57 -0
  113. reconstructor/adapters/langsmith/network.py +54 -0
  114. reconstructor/adapters/langsmith/pipeline.py +50 -0
  115. reconstructor/adapters/langsmith/runs.py +49 -0
  116. reconstructor/adapters/mcp/__init__.py +21 -0
  117. reconstructor/adapters/mcp/capability_fragments.py +47 -0
  118. reconstructor/adapters/mcp/cli.py +118 -0
  119. reconstructor/adapters/mcp/common.py +36 -0
  120. reconstructor/adapters/mcp/events.py +125 -0
  121. reconstructor/adapters/mcp/fragment_common.py +93 -0
  122. reconstructor/adapters/mcp/fragments.py +8 -0
  123. reconstructor/adapters/mcp/notification_fragments.py +61 -0
  124. reconstructor/adapters/mcp/pipeline.py +95 -0
  125. reconstructor/adapters/mcp/resource_prompt_fragments.py +42 -0
  126. reconstructor/adapters/mcp/response_fragments.py +35 -0
  127. reconstructor/adapters/mcp/tool_fragments.py +68 -0
  128. reconstructor/adapters/openai_agents/__init__.py +20 -0
  129. reconstructor/adapters/openai_agents/cli.py +7 -0
  130. reconstructor/adapters/openai_agents/cli_handler.py +95 -0
  131. reconstructor/adapters/openai_agents/cli_parser.py +75 -0
  132. reconstructor/adapters/openai_agents/common.py +24 -0
  133. reconstructor/adapters/openai_agents/computer_fragments.py +47 -0
  134. reconstructor/adapters/openai_agents/events.py +95 -0
  135. reconstructor/adapters/openai_agents/fragment_builders.py +48 -0
  136. reconstructor/adapters/openai_agents/fragment_common.py +162 -0
  137. reconstructor/adapters/openai_agents/fragments.py +23 -0
  138. reconstructor/adapters/openai_agents/function_fragments.py +66 -0
  139. reconstructor/adapters/openai_agents/message_fragments.py +80 -0
  140. reconstructor/adapters/openai_agents/model_fragments.py +49 -0
  141. reconstructor/adapters/openai_agents/pipeline.py +91 -0
  142. reconstructor/adapters/openai_agents/retrieval_fragments.py +69 -0
  143. reconstructor/adapters/openai_agents/special_fragments.py +40 -0
  144. reconstructor/adapters/openai_agents/tool_fragments.py +14 -0
  145. reconstructor/adapters/otlp/__init__.py +29 -0
  146. reconstructor/adapters/otlp/cli.py +7 -0
  147. reconstructor/adapters/otlp/cli_args.py +46 -0
  148. reconstructor/adapters/otlp/cli_handler.py +70 -0
  149. reconstructor/adapters/otlp/cli_parser.py +67 -0
  150. reconstructor/adapters/otlp/common.py +105 -0
  151. reconstructor/adapters/otlp/fragment_builders.py +23 -0
  152. reconstructor/adapters/otlp/fragment_common.py +83 -0
  153. reconstructor/adapters/otlp/fragment_payloads.py +75 -0
  154. reconstructor/adapters/otlp/fragments.py +52 -0
  155. reconstructor/adapters/otlp/loaders.py +80 -0
  156. reconstructor/adapters/otlp/misc_fragments.py +106 -0
  157. reconstructor/adapters/otlp/model_fragments.py +37 -0
  158. reconstructor/adapters/otlp/normalize.py +73 -0
  159. reconstructor/adapters/otlp/pipeline.py +111 -0
  160. reconstructor/adapters/otlp/record_normalize.py +84 -0
  161. reconstructor/adapters/otlp/time_ids.py +58 -0
  162. reconstructor/adapters/otlp/tool_fragments.py +76 -0
  163. reconstructor/adapters/otlp/value_normalize.py +89 -0
  164. reconstructor/adapters/pydantic_ai/__init__.py +15 -0
  165. reconstructor/adapters/pydantic_ai/architecture.py +14 -0
  166. reconstructor/adapters/pydantic_ai/cli.py +7 -0
  167. reconstructor/adapters/pydantic_ai/cli_handler.py +44 -0
  168. reconstructor/adapters/pydantic_ai/cli_parser.py +75 -0
  169. reconstructor/adapters/pydantic_ai/common.py +31 -0
  170. reconstructor/adapters/pydantic_ai/events.py +130 -0
  171. reconstructor/adapters/pydantic_ai/fragment_common.py +38 -0
  172. reconstructor/adapters/pydantic_ai/fragments.py +26 -0
  173. reconstructor/adapters/pydantic_ai/handlers.py +87 -0
  174. reconstructor/adapters/pydantic_ai/pipeline.py +63 -0
  175. reconstructor/adapters/pydantic_ai/prompt_fragments.py +68 -0
  176. reconstructor/adapters/pydantic_ai/run_fragments.py +70 -0
  177. reconstructor/adapters/pydantic_ai/state.py +38 -0
  178. reconstructor/adapters/pydantic_ai/tool_fragments.py +95 -0
  179. reconstructor/adapters/pydantic_ai/tool_handlers.py +49 -0
  180. reconstructor/cli/__init__.py +48 -0
  181. reconstructor/cli/__main__.py +8 -0
  182. reconstructor/cli/adapter_registry.py +41 -0
  183. reconstructor/cli/evaluation.py +67 -0
  184. reconstructor/cli/ingest.py +55 -0
  185. reconstructor/cli/ingest_common.py +25 -0
  186. reconstructor/cli/ingest_common_args.py +113 -0
  187. reconstructor/cli/ingest_handler_common.py +39 -0
  188. reconstructor/cli/ingest_schema_handlers.py +53 -0
  189. reconstructor/cli/reconstruct.py +156 -0
  190. reconstructor/core/__init__.py +0 -0
  191. reconstructor/core/architecture.py +32 -0
  192. reconstructor/core/boundary.py +98 -0
  193. reconstructor/core/chain.py +58 -0
  194. reconstructor/core/fragment.py +133 -0
  195. reconstructor/core/manifest.py +83 -0
  196. reconstructor/core/temporal.py +49 -0
  197. reconstructor/evaluation/__init__.py +0 -0
  198. reconstructor/evaluation/defaults.py +8 -0
  199. reconstructor/evaluation/metrics.py +139 -0
  200. reconstructor/evaluation/run_named.py +128 -0
  201. reconstructor/evaluation/run_synthetic.py +47 -0
  202. reconstructor/evaluation/synthetic_console.py +87 -0
  203. reconstructor/evaluation/synthetic_evaluation.py +90 -0
  204. reconstructor/evaluation/synthetic_outputs.py +101 -0
  205. reconstructor/mapping/__init__.py +0 -0
  206. reconstructor/mapping/aggregation.py +158 -0
  207. reconstructor/mapping/classification.py +38 -0
  208. reconstructor/mapping/classification_rules.py +140 -0
  209. reconstructor/mapping/feasibility.py +48 -0
  210. reconstructor/mapping/feasibility_helpers.py +30 -0
  211. reconstructor/mapping/mapper.py +19 -0
  212. reconstructor/mapping/modes.py +44 -0
  213. reconstructor/mapping/operational_modes.py +45 -0
  214. reconstructor/mapping/properties.py +25 -0
  215. reconstructor/mapping/property_fillers.py +26 -0
  216. reconstructor/output/__init__.py +30 -0
  217. reconstructor/output/generic_jsonl_models.py +84 -0
  218. reconstructor/output/model_types.py +77 -0
  219. reconstructor/output/models.py +65 -0
  220. reconstructor/output/prov_context.py +64 -0
  221. reconstructor/output/prov_identifiers.py +33 -0
  222. reconstructor/output/prov_jsonld.py +135 -0
  223. reconstructor/output/prov_nodes.py +116 -0
  224. reconstructor/output/result_models.py +132 -0
  225. reconstructor/pipeline.py +91 -0
  226. reconstructor/py.typed +0 -0
  227. reconstructor/synthetic/__init__.py +0 -0
  228. reconstructor/synthetic/agentic_generator.py +140 -0
  229. reconstructor/synthetic/baseline_generator.py +124 -0
  230. reconstructor/synthetic/generator.py +69 -0
  231. reconstructor/synthetic/named_incidents.py +246 -0
  232. reconstructor/synthetic/scenario.py +23 -0
@@ -0,0 +1,173 @@
1
+ Metadata-Version: 2.4
2
+ Name: decision-trace-reconstructor
3
+ Version: 0.1.2
4
+ Summary: Audit agent decisions after the fact by turning raw traces into per-property reconstructability reports that identify evidenced, missing, and opaque decision facts.
5
+ Author: Oleg Solozobov
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://decisiontrace.org/reconstructor
8
+ Project-URL: Documentation, https://decisiontrace.org/reconstructor/v0.1.0
9
+ Project-URL: Changelog, https://decisiontrace.org/reconstructor/v0.1.0/changelog
10
+ Project-URL: DOI, https://doi.org/10.5281/zenodo.19851574
11
+ Keywords: governance evidence,decision trace reconstruction,agentic AI governance,decision event schema,post-hoc audit
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Requires-Python: <4,>=3.11
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: pydantic<3,>=2.6
24
+ Provides-Extra: agentframework
25
+ Requires-Dist: autogen-agentchat<2,>=0.4; extra == "agentframework"
26
+ Requires-Dist: autogen-core<2,>=0.4; extra == "agentframework"
27
+ Provides-Extra: pydantic-ai
28
+ Requires-Dist: pydantic-ai<2,>=0.2; extra == "pydantic-ai"
29
+ Provides-Extra: parquet
30
+ Requires-Dist: pyarrow<25,>=15; extra == "parquet"
31
+ Provides-Extra: prov
32
+ Requires-Dist: rdflib<8,>=7; extra == "prov"
33
+ Provides-Extra: langsmith
34
+ Requires-Dist: langsmith<2,>=0.7; extra == "langsmith"
35
+ Provides-Extra: anthropic
36
+ Requires-Dist: anthropic<2,>=0.50; extra == "anthropic"
37
+ Provides-Extra: crewai
38
+ Requires-Dist: crewai<2,>=0.40; python_version < "3.14" and extra == "crewai"
39
+ Provides-Extra: mcp
40
+ Requires-Dist: mcp<2,>=1.5; extra == "mcp"
41
+ Provides-Extra: bedrock
42
+ Requires-Dist: boto3<2,>=1.40; extra == "bedrock"
43
+ Provides-Extra: openai-agents
44
+ Requires-Dist: openai<3,>=2; extra == "openai-agents"
45
+ Requires-Dist: openai-agents<1,>=0.14; extra == "openai-agents"
46
+ Provides-Extra: otlp
47
+ Requires-Dist: opentelemetry-proto<2,>=1.27; extra == "otlp"
48
+ Provides-Extra: all
49
+ Requires-Dist: autogen-agentchat<2,>=0.4; extra == "all"
50
+ Requires-Dist: autogen-core<2,>=0.4; extra == "all"
51
+ Requires-Dist: anthropic<2,>=0.50; extra == "all"
52
+ Requires-Dist: boto3<2,>=1.40; extra == "all"
53
+ Requires-Dist: crewai<2,>=0.40; python_version < "3.14" and extra == "all"
54
+ Requires-Dist: langsmith<2,>=0.7; extra == "all"
55
+ Requires-Dist: mcp<2,>=1.5; extra == "all"
56
+ Requires-Dist: openai<3,>=2; extra == "all"
57
+ Requires-Dist: openai-agents<1,>=0.14; extra == "all"
58
+ Requires-Dist: opentelemetry-proto<2,>=1.27; extra == "all"
59
+ Requires-Dist: pydantic-ai<2,>=0.2; extra == "all"
60
+ Requires-Dist: pyarrow<25,>=15; extra == "all"
61
+ Requires-Dist: rdflib<8,>=7; extra == "all"
62
+ Provides-Extra: dev
63
+ Requires-Dist: autogen-agentchat<2,>=0.4; extra == "dev"
64
+ Requires-Dist: autogen-core<2,>=0.4; extra == "dev"
65
+ Requires-Dist: anthropic<2,>=0.50; extra == "dev"
66
+ Requires-Dist: boto3<2,>=1.40; extra == "dev"
67
+ Requires-Dist: build<2,>=1.0; extra == "dev"
68
+ Requires-Dist: crewai<2,>=0.40; python_version < "3.14" and extra == "dev"
69
+ Requires-Dist: langsmith<2,>=0.7; extra == "dev"
70
+ Requires-Dist: mcp<2,>=1.5; extra == "dev"
71
+ Requires-Dist: mypy<2,>=1.8; extra == "dev"
72
+ Requires-Dist: openai<3,>=2; extra == "dev"
73
+ Requires-Dist: openai-agents<1,>=0.14; extra == "dev"
74
+ Requires-Dist: opentelemetry-proto<2,>=1.27; extra == "dev"
75
+ Requires-Dist: pre-commit<5,>=3; extra == "dev"
76
+ Requires-Dist: pydantic-ai<2,>=0.2; extra == "dev"
77
+ Requires-Dist: pytest<10,>=7; extra == "dev"
78
+ Requires-Dist: pytest-cov<8,>=4; extra == "dev"
79
+ Requires-Dist: rdflib<8,>=7; extra == "dev"
80
+ Requires-Dist: ruff<1,>=0.4; extra == "dev"
81
+ Dynamic: license-file
82
+
83
+ # Decision Trace Reconstructor
84
+
85
+ [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.19851574.svg)](https://doi.org/10.5281/zenodo.19851574)
86
+
87
+ **Decision Trace Reconstructor makes agent decisions auditable after the fact: it shows whether the available traces are enough to reconstruct what happened, and names every missing or opaque decision fact.**
88
+
89
+ Instead of generating another narrative, it produces a **per-property reconstructability matrix**: which decision-event fields are evidenced, partial, structurally absent, or opaque. No synthetic rationale is invented.
90
+
91
+ ## Supported Adapters
92
+
93
+ Full adapter documentation lives in [`docs/adapters/`](docs/adapters/README.md). Each adapter supports offline file ingest; vendor-backed adapters also support live/network ingest when the optional extra and credentials are available.
94
+
95
+ | # | Adapter | Extra | Covers |
96
+ |---|---|---|---|
97
+ | 01 | [`langsmith`](docs/adapters/langsmith.md) | `[langsmith]` | LangChain / LangGraph ecosystem |
98
+ | 02 | [`otlp`](docs/adapters/otlp.md) | `[otlp]` | OpenTelemetry GenAI — one adapter, many backends |
99
+ | 03 | [`bedrock`](docs/adapters/bedrock.md) | `[bedrock]` | AWS Bedrock AgentCore |
100
+ | 04 | [`openai-agents`](docs/adapters/openai-agents.md) | `[openai-agents]` | OpenAI Agents SDK + Traces dashboard exports |
101
+ | 05 | [`anthropic`](docs/adapters/anthropic.md) | `[anthropic]` | Anthropic Messages API + Computer Use |
102
+ | 06 | [`mcp`](docs/adapters/mcp.md) | `[mcp]` | Model Context Protocol transcripts |
103
+ | 07 | [`crewai`](docs/adapters/crewai.md) | `[crewai]` | CrewAI multi-agent telemetry |
104
+ | 08 | [`agentframework`](docs/adapters/agentframework.md) | `[agentframework]` | Microsoft Agent Framework / AutoGen v0.4 |
105
+ | 09 | [`pydantic-ai`](docs/adapters/pydantic-ai.md) | `[pydantic-ai]` | Pydantic AI run records |
106
+ | 10 | [`generic-jsonl`](docs/adapters/generic-jsonl.md) | none | Custom JSONL logs via mapping config |
107
+
108
+ Unsupported source systems should use [`generic-jsonl`](docs/adapters/generic-jsonl.md) first. If OpenTelemetry GenAI spans are available, [`otlp`](docs/adapters/otlp.md) is usually the better long-term integration path.
109
+
110
+ ## Quick Start
111
+
112
+ ```bash
113
+ # 1. Install with the relevant adapter extra
114
+ pip install -e '.[langsmith]' # or [otlp], [bedrock], [openai-agents], ...
115
+
116
+ # 2. Ingest a trace into a fragments manifest
117
+ decision-trace ingest langsmith --from-file traces/agent_run.json \
118
+ --architecture single_agent --stack-tier within_stack \
119
+ --state-mutation-tools "(write|exec|drop|delete|update)" \
120
+ --out fragments.json
121
+
122
+ # 3. Reconstruct and emit evidence reports
123
+ decision-trace reconstruct fragments.json --out report/ --jsonld
124
+ ```
125
+
126
+ Output:
127
+
128
+ - `report/feasibility.json`: per-property reconstructability categories, gap descriptions, and completeness percentage
129
+ - `report/trace.jsonld`: W3C PROV-O graph, queryable via SPARQL
130
+
131
+ Ingest can also be piped directly into reconstruction:
132
+
133
+ ```bash
134
+ decision-trace ingest langsmith --from-file traces/run.json --out - | \
135
+ decision-trace reconstruct /dev/stdin --out report/ --jsonld
136
+ ```
137
+
138
+ ## Result Shape
139
+
140
+ The report is intentionally diagnostic, not narrative:
141
+
142
+ | Property | Category | Gap |
143
+ |---|---|---|
144
+ | `inputs` | `fully_fillable` | none |
145
+ | `policy_basis` | `structurally_unfillable` | active policy was not recorded |
146
+ | `reasoning_trace` | `opaque` | model reasoning is not externally observable |
147
+
148
+ ## Documentation
149
+
150
+ - [Installation](docs/installation.md)
151
+ - [Adapter documentation](docs/adapters/README.md)
152
+ - [Reports and output artifacts](docs/reports.md)
153
+ - [Reconstruction architecture](docs/architecture.md)
154
+ - [Development](docs/development.md)
155
+ - [Roadmap](docs/roadmap.md)
156
+
157
+ ## Examples
158
+
159
+ Worked examples live under `examples/<adapter>_basic_agent/` and are pinned by integration tests for bit-identical reproduction. The named incident example `examples/replit_drop_database/` shows reconstruction from a public-record fragment manifest.
160
+
161
+ ## Related Work Status
162
+
163
+ - Companion papers for the Decision Evidence Maturity Model and related evidence-regime concepts are in preparation. They are intentionally not cited as publications until public identifiers exist.
164
+ - **Conceptual dependencies:** the Decision Event Schema, the upstream Evidence Collector SDK, and the downstream Governance Benchmark Dataset.
165
+
166
+ ## Citation
167
+
168
+ `CITATION.cff`, `codemeta.json`, and `ro-crate-metadata.json` ship with the package.
169
+ Version `v0.1.0` is archived on Zenodo at <https://doi.org/10.5281/zenodo.19851574>.
170
+
171
+ ## License
172
+
173
+ Apache-2.0. See [`LICENSE`](LICENSE).
@@ -0,0 +1,232 @@
1
+ decision_trace_reconstructor-0.1.2.dist-info/licenses/LICENSE,sha256=J5xL3KgYbjOTQrNHQVpUFshd_QLh2e_BkIfDZ1N1N1k,10712
2
+ reconstructor/__init__.py,sha256=H9KVcAkLwfhHVXwLyNrR4By-Smz7EeKbCfcOdEdx_eA,59
3
+ reconstructor/pipeline.py,sha256=o21c4UywW-XdXq4AYyGh8dQSffnCDBP5Pct9fBqn21Q,3052
4
+ reconstructor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ reconstructor/adapters/__init__.py,sha256=nWDzwUDhvp4y0ccUCPpy_yrj0GW7B4yIVMWmRjlv0Z8,1806
6
+ reconstructor/adapters/_payloads.py,sha256=6IlMO9sGypjYUA_qsaRQkEp8O-1yGifbNtmjDuSAad0,597
7
+ reconstructor/adapters/_time.py,sha256=KEhnwQM_1Nm0zXDwn3QoFhUgxbunTsZ6jadPgNSM0dw,1969
8
+ reconstructor/adapters/agentframework/__init__.py,sha256=qCX744NWoduVEeHWoMhkzv8iZ_WKtY7KO259VGLyT2E,445
9
+ reconstructor/adapters/agentframework/activity_handlers.py,sha256=Wa_xddg7Ax-BIvzXmBxC314P07WTHgLwTaLtriBllHA,3412
10
+ reconstructor/adapters/agentframework/architecture.py,sha256=JgT60_0ug8OGanOsrujlbps25RmisRRnDT87dgoAxoQ,1328
11
+ reconstructor/adapters/agentframework/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
12
+ reconstructor/adapters/agentframework/cli_handler.py,sha256=4fafmF1OxdBqey8Cq-xToS-q04Ug2lMP5KZhsz6DS6k,1451
13
+ reconstructor/adapters/agentframework/cli_parser.py,sha256=fG_EbrjntLs3VPdsLJpw5_utqI-i_U_IvJKpnGsq2sE,2468
14
+ reconstructor/adapters/agentframework/common.py,sha256=lIO3fMSOM9VFvs-w4kJzg6uylO47-MFIyIXdHrOwWMk,1805
15
+ reconstructor/adapters/agentframework/events.py,sha256=773FDIxc63v4yIxuhhf2c_K_X9WoXbdRg9RMwhKthbs,3599
16
+ reconstructor/adapters/agentframework/fragment_common.py,sha256=Bf1POF2Qqj3QhvWR7pn83GU3YcqL-4ZgOjPXgFsIBvg,3265
17
+ reconstructor/adapters/agentframework/fragments.py,sha256=dLZcSEbYX_hRRdd37MSpni9BLNvE_EAIFNRbxLgADqM,813
18
+ reconstructor/adapters/agentframework/handlers.py,sha256=Byl-AS0HLuwekfQdGT0VzvK0Jhi84GlnQJ4uaj2PLh8,2005
19
+ reconstructor/adapters/agentframework/lifecycle_handlers.py,sha256=4E5NBdrEeT_pzw0GJilcDIwGiZbTxnsloELspDWIHyc,2884
20
+ reconstructor/adapters/agentframework/message_fragments.py,sha256=aYWSEASXcNqpoFPIOkTWg3grx_WDu_Ev8pGKjj7UeSM,3103
21
+ reconstructor/adapters/agentframework/pipeline.py,sha256=K48TROWitGt-ycVkOh57V3S72Z2CFD9j7cN10foNC8s,1815
22
+ reconstructor/adapters/agentframework/state.py,sha256=wet4x6knhSUZLdhlgasO-I_o0AbnTWrMshTCRsGNIY4,1879
23
+ reconstructor/adapters/agentframework/tool_fragments.py,sha256=TgEiaAotRefSYqEToFga_NCfHPU9rVOHdHowvSkSyKk,1469
24
+ reconstructor/adapters/anthropic/__init__.py,sha256=tzl9-eoqhN3FfApllcTGy2iYIaiANrixj3D3ioVb-c0,418
25
+ reconstructor/adapters/anthropic/cli.py,sha256=QDzWUWpaAFEoj36CQ2428L4EOelsFeuIA5cqcDJK2CY,3486
26
+ reconstructor/adapters/anthropic/common.py,sha256=KPEi8zc3FtHxtpFEtJkVcK2qAQpbtcTOJY65OEHLLW4,1151
27
+ reconstructor/adapters/anthropic/events.py,sha256=8mgM5AkinC761at10Xyo6qcE4bCqbbBQ4HC4lp4Okj8,2092
28
+ reconstructor/adapters/anthropic/fragment_common.py,sha256=9gBjoU5qp-bA2nNidHMf0XRUVt4rxdPECs61_xzZ7Ds,1466
29
+ reconstructor/adapters/anthropic/fragments.py,sha256=LdKdwlp8dWKMQgPgz9IlsGxUTy7XFeQPP5GKmCbcvM8,551
30
+ reconstructor/adapters/anthropic/message_fragments.py,sha256=MXFNoKrcDXw4vt40jCvzXsjbg8ZOIIqCe_b9VAtMl5w,468
31
+ reconstructor/adapters/anthropic/message_payloads.py,sha256=uE1Vh7hCLHb--zRdmvuXlj8MaGnHQ1xoqbceun7nqWw,1957
32
+ reconstructor/adapters/anthropic/pipeline.py,sha256=ubal3tuxPV7WtrpcyNcFyXo1GxJiKZuWu6jAflWn_xY,5386
33
+ reconstructor/adapters/anthropic/request_fragments.py,sha256=DH7uDn6W2xp8fj_wSHBTWogZi_nU4LEwujTVahikldw,2674
34
+ reconstructor/adapters/anthropic/response_fragments.py,sha256=SrqGeZdzgLPYi3IcIT71v6urtMc3gd0gkjfhVa-m1XU,3493
35
+ reconstructor/adapters/anthropic/tool_builders.py,sha256=Gy3FJ6POk43jPLOE70XWL5HZz53wYE_03C5qsFsiY8A,2416
36
+ reconstructor/adapters/anthropic/tool_fragments.py,sha256=Un0d7CI7WDglfRcaLq8qqqShOE9O0yuZHEFRuhUTKw0,2826
37
+ reconstructor/adapters/anthropic/tool_rules.py,sha256=V7bTSr-gAPywSP_0GjUfjcxjVz-4maemUyUQIUEFaj4,1767
38
+ reconstructor/adapters/bedrock/__init__.py,sha256=7ncoDFF7uGNZ0sJN5wgpp2qpDjQloykP0AyEwgoyh58,861
39
+ reconstructor/adapters/bedrock/actor_common.py,sha256=CbvcpGQV5pOoJYb0FGwqRlrKyOJqUYD7m0yKjFa27WU,1027
40
+ reconstructor/adapters/bedrock/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
41
+ reconstructor/adapters/bedrock/cli_args.py,sha256=L1XAkJJUdwDEoYWXtGBjtlIf9m9dHKjO0A48Rg2V2ww,1611
42
+ reconstructor/adapters/bedrock/cli_handler.py,sha256=y0wWqIa8uO60TCnU9w68NeoCdEStH_rAFFgfmghFkQQ,2008
43
+ reconstructor/adapters/bedrock/cli_parser.py,sha256=DbAFUgiLHPazy9v9_AS414f4iKSkvYwmNhKk5c3BQqI,2476
44
+ reconstructor/adapters/bedrock/common.py,sha256=j2tQg5vTs3P240ZD-GM1eOyoWIPhivXJiqDWO75yLpo,816
45
+ reconstructor/adapters/bedrock/fragment_common.py,sha256=KJj3qothB4Iqybu1DTgw21Y1Bkc9jzeHUZ41Cmhukyc,1137
46
+ reconstructor/adapters/bedrock/fragment_context.py,sha256=q08wKdlGQlHst1TtUWp_dmGgrFwfACl9VdzBj0zay80,1171
47
+ reconstructor/adapters/bedrock/fragments.py,sha256=A36__1qdjnYTvVTG9CPB6K1ZncGZzRg_vI_O_dyHFwE,256
48
+ reconstructor/adapters/bedrock/human_common.py,sha256=S_jXRVcTbn4lgZBZFeyPC2WxdWYvPnYqoxw8K4yi7VQ,565
49
+ reconstructor/adapters/bedrock/io.py,sha256=svJph3CjaKAzpcvV0CxZNt-omNS-6i5CuAOhIRlOTvU,1788
50
+ reconstructor/adapters/bedrock/live.py,sha256=mEuHmxTrm1h4bhSxiz9rvbeV6yFucpaTG20xWN8P3tQ,4232
51
+ reconstructor/adapters/bedrock/live_memory.py,sha256=THwHJdXdCpgNUFNSBU9SzNYd3LAMBAIxYd1AKhqAt9g,528
52
+ reconstructor/adapters/bedrock/live_pagination.py,sha256=k06w2at7m0khAqsjrgI2V6cE_rcAl_3y3dRHQtvOLbI,960
53
+ reconstructor/adapters/bedrock/memory_common.py,sha256=w7CMcxKNn4QJCyKS2_6r4A7FL-_ekEvF12IgVMCLVL8,504
54
+ reconstructor/adapters/bedrock/normalize.py,sha256=aiEN7Lpr9Ne0znXvgxZWj3WloD0sJ_zzpSXuKmGMexs,309
55
+ reconstructor/adapters/bedrock/normalize_common.py,sha256=ovIo6OunMCJ2ApjPRNdQdoQRXB9BTc7O5CULryoHNW4,636
56
+ reconstructor/adapters/bedrock/normalize_events.py,sha256=x9MQ6a1J_nk4o4f7RGB9AaXDJgeVpNlBHo-0nr4dUnY,3331
57
+ reconstructor/adapters/bedrock/normalize_sessions.py,sha256=IX9smmC9dmoE_a7PjzG_2s02lW1w4hDWmogEZ00Wo4A,4076
58
+ reconstructor/adapters/bedrock/options.py,sha256=j5828cs-PcTfl7t5f08obTXpHLqOop9fV1GJGelEJr0,527
59
+ reconstructor/adapters/bedrock/pipeline.py,sha256=awd1rDFQfCejZsOjwOVjos1CH2Vew9lWnTZSnVFtfQw,1930
60
+ reconstructor/adapters/bedrock/session_fragments.py,sha256=f63CXVYlfVPZQKp5iM3twPevJlZElsd9CKVNsbWSDNE,3286
61
+ reconstructor/adapters/bedrock/tool_common.py,sha256=ILM6ZlTB6jZrDOWCVAcB95SsUoL5FoO76ix_hBRSbG0,2259
62
+ reconstructor/adapters/bedrock/trace_fragments.py,sha256=x9mwgpwddNeupsL3rB-1fufeelisozkk8t4OZNYncew,1368
63
+ reconstructor/adapters/bedrock/trace_llm_fragments.py,sha256=tn6gQLSh94RU7L0PV9Q2GUZSuwtIahOpGfJqp1kq--k,3261
64
+ reconstructor/adapters/bedrock/trace_orchestration_fragments.py,sha256=k5PhCLf4ZF5Xuqx358_cgJd7B1Yxonc99v1qOcul2pI,4210
65
+ reconstructor/adapters/bedrock/trace_terminal_fragments.py,sha256=v6rwdsv7oOJIJIL1bjH4K1jFV7keX256ILRD99zSeu4,2969
66
+ reconstructor/adapters/crewai/__init__.py,sha256=r2-Zp6fjlBtbOlNsW_DnGm8C84AyCzIQN8tzrJT1eO4,389
67
+ reconstructor/adapters/crewai/activity_fragments.py,sha256=OkL7gyx3fvPi4gReaXFXyJOT2EI1oZHQb0DNoA50BZU,3751
68
+ reconstructor/adapters/crewai/activity_handlers.py,sha256=GfY4TI8Dj1jLl6Di8lzTYzrtbevwZe8PC3NY8gz-E48,5589
69
+ reconstructor/adapters/crewai/architecture.py,sha256=Vf10vyOxAkW4iFmMwpulVmAtdiOsKkKMC9GXZAWAdLs,1702
70
+ reconstructor/adapters/crewai/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
71
+ reconstructor/adapters/crewai/cli_handler.py,sha256=NrXmG1HKazz921C9ypNFr7H9StIjh6XtRwiQtyryf7I,1407
72
+ reconstructor/adapters/crewai/cli_parser.py,sha256=Os8x45tiM5OtvTMQWucghP-docVo847s6O9UJCdkGDU,2498
73
+ reconstructor/adapters/crewai/common.py,sha256=H25H8K4_CusgDXHqgzfm06zUZ2YwiZ8O4x6oVqW5M6s,1433
74
+ reconstructor/adapters/crewai/events.py,sha256=SoFQxHEfCmtZYoLpqNPQ0rWN52bJ-_QBbt5qP_mrBSY,2500
75
+ reconstructor/adapters/crewai/fragment_common.py,sha256=vpJ3pwOmTRnArmXymQqafEyT9fyThyK7Fatmdysv2DE,1515
76
+ reconstructor/adapters/crewai/fragments.py,sha256=7qxOEWakNCvagP4nxVBnOp0w7DVHu-LEkRJhEZIxKoY,674
77
+ reconstructor/adapters/crewai/handlers.py,sha256=iP814rcbpWhkO8Ln3P6KD2H5GlAfdTQ-0V73NqhJMHM,1983
78
+ reconstructor/adapters/crewai/lifecycle_fragments.py,sha256=LuL5Bv4-7w3C5oP1hQI6tXrVukzzsQTAB8viUfsE080,1928
79
+ reconstructor/adapters/crewai/lifecycle_handlers.py,sha256=FQ_2svVdU3fyrDu1K0itageuWKRfuBIHu9aziDfHZqw,4750
80
+ reconstructor/adapters/crewai/pipeline.py,sha256=qISLRoH2azkXxqrmxU9FRkA9w96V8gYoPyFSUcpyB_w,1836
81
+ reconstructor/adapters/crewai/state.py,sha256=pIKqSsMpQN9ej4yCQPuMtkJupl6gihVnDWaEP3eVsAg,1772
82
+ reconstructor/adapters/generic_jsonl/__init__.py,sha256=PMp4wB1A9aepCJayDT_mhsfxWebwnFmsnx3dnUh2pmo,828
83
+ reconstructor/adapters/generic_jsonl/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
84
+ reconstructor/adapters/generic_jsonl/cli_handler.py,sha256=RFPGfNxPrO8FroIKKnfuQXqn05ezk73Cpr4xssvieSU,1694
85
+ reconstructor/adapters/generic_jsonl/cli_parser.py,sha256=bKZqMIOSvRJ9nY5lj8o9WK0wqqNCDaoSCb2Pm5kYCBY,2282
86
+ reconstructor/adapters/generic_jsonl/common.py,sha256=bN02cPAYvXeBCY3W3shTKhasdSDWUaILUIMn7lYklV8,2382
87
+ reconstructor/adapters/generic_jsonl/followups.py,sha256=bbA_XV6i-XAvC7sXcmNsXuIYibX0_iMaUAGfMMb7yHw,2384
88
+ reconstructor/adapters/generic_jsonl/fragments.py,sha256=xDISxK7TiOr8dtoozXJ-Z0p5Y7NlyLAoRdt296qCXYs,2147
89
+ reconstructor/adapters/generic_jsonl/io.py,sha256=bn92PsyULmbejdcQPXIDe0MsMo0qMwY_43ZAMQTLpNo,1439
90
+ reconstructor/adapters/generic_jsonl/mapping.py,sha256=KLotEdDA9_1Tve4RDA10dU88ToDWZHQUxIuSDMkQZLs,4008
91
+ reconstructor/adapters/generic_jsonl/paths.py,sha256=yT9T7fZWGPZa1bDS-uXUj9hCW5wfxkUcwGD4IYaxxkI,2676
92
+ reconstructor/adapters/generic_jsonl/payloads.py,sha256=9ZWhfmQqwKBlvkPGsJrBj_mVayvIZPbdnDbJuAu7WOk,1101
93
+ reconstructor/adapters/generic_jsonl/pipeline.py,sha256=3fnzGvZiVEMNWDGsJjT81jcoci5HGnnzBHIO1Ydn6MU,2240
94
+ reconstructor/adapters/generic_jsonl/record_fields.py,sha256=2YOT72YVBJNMt4a_HhDY2R44N8I_78ogL1nCXjtBr9A,1878
95
+ reconstructor/adapters/generic_jsonl/record_fragments.py,sha256=M7kdtdTvziPvUfmbXND3Ud8FwcNfY1W840-4XEA2G4o,2180
96
+ reconstructor/adapters/generic_jsonl/record_kind.py,sha256=kHfd2VSRN8E5Izo2iK37wQ0PPunz_6BC-Wh54nZdXUk,1448
97
+ reconstructor/adapters/generic_jsonl/state_mutation.py,sha256=_fujXffoy4f6gao6_RcMeKL1MocerS0vWYrOAbJg2R4,1597
98
+ reconstructor/adapters/generic_jsonl/utils.py,sha256=IrkMrtvBATmR2K3ehDCC4Q7yhUXGa70nFcnCA8wcHI4,333
99
+ reconstructor/adapters/generic_jsonl/validation.py,sha256=VzfJ0A2t29NNltZLwcVmOqBpgzOMZCmLJVlkQ70GJqE,3016
100
+ reconstructor/adapters/generic_jsonl/yaml.py,sha256=jpoIFcUl73cjpwkCMHsmdCiC1-40rmgUT8PSMhASF9c,4493
101
+ reconstructor/adapters/langsmith/__init__.py,sha256=nIMa_5lkHG0M2V8CgzDU9hDU5l-e5bnLR3WBoa90FKw,535
102
+ reconstructor/adapters/langsmith/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
103
+ reconstructor/adapters/langsmith/cli_handler.py,sha256=r0dmMVJN7LnoiS5sEDvxO0ioledbhdCXsxxm6eW8Gyw,2525
104
+ reconstructor/adapters/langsmith/cli_parser.py,sha256=-aqds1tz-ZUkjZjh7CjN2jESuZjowffpCxsTZhdxgGo,2560
105
+ reconstructor/adapters/langsmith/common.py,sha256=5P2Xjk79YR1fgJtuq4Zwnd5X5RCLXN4JYebcPT2gjF8,2940
106
+ reconstructor/adapters/langsmith/fragment_builders.py,sha256=EJJjivtxzBZ6nJ9U1T_sSDxWQkD3Q7d0a6R5ehzDqIg,3880
107
+ reconstructor/adapters/langsmith/fragment_common.py,sha256=xdjJWoJgmntFjlK8iMRKG3tydy4U70L19lZX3pRFX08,2936
108
+ reconstructor/adapters/langsmith/fragment_predicates.py,sha256=lX1XUxaSZULhOCqmzpdO_FzAzW8ujKtT-CCuxfRI_2k,1160
109
+ reconstructor/adapters/langsmith/fragments.py,sha256=gWZtAPhAnA7apydOwEI_n5zbpIBEVo2DVFxQ6gdpCkk,1669
110
+ reconstructor/adapters/langsmith/network.py,sha256=3lvWGitvB6Gz-A9mKFPrfVhZKdkiiOy2WUGic-pStEo,1466
111
+ reconstructor/adapters/langsmith/pipeline.py,sha256=CqCZnfgFe51zMopks3qzQMCBneZhBOzRbqwAvxHhotQ,1558
112
+ reconstructor/adapters/langsmith/runs.py,sha256=PIjsOFX88HbP9G-LCi6DLiY0_Mnvsa7I_A9jAjJCMnk,1588
113
+ reconstructor/adapters/mcp/__init__.py,sha256=n3gU4ResS79TVYy17mPi0k0qY3Kk46J34zjiECCYNbU,505
114
+ reconstructor/adapters/mcp/capability_fragments.py,sha256=OGO-AbPrdh0DZbisWB6cUhZzz8yBZJyyZgdgcGpcBzY,1916
115
+ reconstructor/adapters/mcp/cli.py,sha256=vfrSJ_6n5UpZ-V5CvrXGeqNiZYoW989gHUNG_VX7wDI,3747
116
+ reconstructor/adapters/mcp/common.py,sha256=ALi2JtLw7OVhvqn9NG6yTZ1gUos8wrXdsF02l7LqMs4,895
117
+ reconstructor/adapters/mcp/events.py,sha256=xHtMr8cP-FDTScNw25ZWzNuiWzA2c8JGhVQDp7hOLd4,4521
118
+ reconstructor/adapters/mcp/fragment_common.py,sha256=A-n8uAXqhBFudggdJZ6yu_Gc74jNXFOG5fVO319w__I,2652
119
+ reconstructor/adapters/mcp/fragments.py,sha256=ANjmBv96E2e09PFb2djdHnHGNt4uU4_AA2Fsp7dbvjA,300
120
+ reconstructor/adapters/mcp/notification_fragments.py,sha256=gZQ6fcEhfMIu2fEaHVWXAVBy0M0L76UeXvR8q9yyA1I,2126
121
+ reconstructor/adapters/mcp/pipeline.py,sha256=UX84TAM78aaRpFDrXfHs611wWqZxBTuu422PDl8pc7s,3212
122
+ reconstructor/adapters/mcp/resource_prompt_fragments.py,sha256=QVefTiXWvth7D1_5Iq5-SNv8OkopNSBAP2IhSdCPyBc,1582
123
+ reconstructor/adapters/mcp/response_fragments.py,sha256=_N38-qnf15dxTtohX-vXGYYehl3aEi9olmC-IEywgPE,1155
124
+ reconstructor/adapters/mcp/tool_fragments.py,sha256=jLC2Gdx8DZU_FBh7jOuat06J-7yv2Y7l6FrOVhmx7bs,2292
125
+ reconstructor/adapters/openai_agents/__init__.py,sha256=Juza20leFGHb3oAU22SBG83xdeZcH6Rn6o3KcSylUVI,611
126
+ reconstructor/adapters/openai_agents/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
127
+ reconstructor/adapters/openai_agents/cli_handler.py,sha256=3V5qw0jSWbpy645dw0-4GKpofENwh9JGfJBmYY-7fwY,2928
128
+ reconstructor/adapters/openai_agents/cli_parser.py,sha256=sUaYYShsqYeBNQM-iGAaLHkuIKTrP4SETBnUQ2oZ5tI,2493
129
+ reconstructor/adapters/openai_agents/common.py,sha256=teOOFF9AlwWWg4GfRcp31FCZtPExX3emm54PrJzK2l0,710
130
+ reconstructor/adapters/openai_agents/computer_fragments.py,sha256=nYG4duDzcWoovIZqEBf6wWQ4rdut0xDfRd9Sdn5DZYA,1706
131
+ reconstructor/adapters/openai_agents/events.py,sha256=iFIc2Qv7f10ubnXcudKZuUvrxcsVj6Rt9ZKMfjch7l8,3651
132
+ reconstructor/adapters/openai_agents/fragment_builders.py,sha256=DQFLf1N_E7FwoalCyqKa7B6-HLjggTFsjfOd44w5Rrg,1883
133
+ reconstructor/adapters/openai_agents/fragment_common.py,sha256=M784BJapM9Po9MCJxdpJ-jzo6AqQJbxZpqJC3rhnsmA,5062
134
+ reconstructor/adapters/openai_agents/fragments.py,sha256=71FRjGuRzaL0yKDmrgkUIJwMo4TOdR4uQsvpzpfaMwg,700
135
+ reconstructor/adapters/openai_agents/function_fragments.py,sha256=2ScLq2emBvWgisyRne2_6G6d52SnKZ5MMu-H3wPuXOA,1983
136
+ reconstructor/adapters/openai_agents/message_fragments.py,sha256=30TLsAZFDilosIz6sxpULkOSdVZj4l9-njVOvROf1-Y,2555
137
+ reconstructor/adapters/openai_agents/model_fragments.py,sha256=7To36Q9lAUn7FMGHWmYH9RUH6f5-6cdbGsZpz8O_LqE,1503
138
+ reconstructor/adapters/openai_agents/pipeline.py,sha256=n4Wh596QRrS2i5P5sRwr0JMjPh4bsupcpaEd4ceF_d8,3126
139
+ reconstructor/adapters/openai_agents/retrieval_fragments.py,sha256=61HTBTNqJ0pku3FBlowRho46rnXROOiZ-BHk3xaRCdM,2289
140
+ reconstructor/adapters/openai_agents/special_fragments.py,sha256=bTOZyduNDrSPymTTGeHO4YQ0V8VqElSC4lmOR7R566w,1276
141
+ reconstructor/adapters/openai_agents/tool_fragments.py,sha256=-KvHCuCfYVM1DyzVh3SsA_1i6sR3umyZnsdHp7MEDuE,430
142
+ reconstructor/adapters/otlp/__init__.py,sha256=YcUyIid1EuusZrQ3areiymuUBZ_3pyA3Kkts7obfols,899
143
+ reconstructor/adapters/otlp/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
144
+ reconstructor/adapters/otlp/cli_args.py,sha256=so0WSmHP74TwYJoXia4NE0CK2Dl4EFXdX6cfodz5XIU,1365
145
+ reconstructor/adapters/otlp/cli_handler.py,sha256=TU9slzF3zKubNj-aA1qx2_S3-vjzmlD_NclpC0O7d7A,2231
146
+ reconstructor/adapters/otlp/cli_parser.py,sha256=88q7_CyCYWmUH-pHvrlKScvxGPsbJVOGi9L4BYD_DhY,2258
147
+ reconstructor/adapters/otlp/common.py,sha256=G4UnWG3BttpP4rcbpXRv1aT6-C2CIugLgRfYgyA2VrA,3299
148
+ reconstructor/adapters/otlp/fragment_builders.py,sha256=Db57qbAR_1wGGigpZp5FZQE_8ve1guvOWRyJnXVyv-U,575
149
+ reconstructor/adapters/otlp/fragment_common.py,sha256=LywklcFhahBQ-fdg7iDY4IShaOx13W-XmaP8oTGJd1s,2229
150
+ reconstructor/adapters/otlp/fragment_payloads.py,sha256=fUBo49_JieFOulJO6m5vdlbcAiHr9Jac0NUsPGKCXjw,2551
151
+ reconstructor/adapters/otlp/fragments.py,sha256=-jOua_AZ4uI8lkQhvGFxehO1Ahqav5xKlWA37FY5O6I,1662
152
+ reconstructor/adapters/otlp/loaders.py,sha256=wZxXptiLkq0UnHG50x8HmYAYjMAZbH_eiGKBLGH-Y-Q,2477
153
+ reconstructor/adapters/otlp/misc_fragments.py,sha256=Fnn9Je0T1tzkxoUOeZ8j8pWyEjKeDe8h4xQUPILWq4A,3356
154
+ reconstructor/adapters/otlp/model_fragments.py,sha256=6PZrgijXZSpdIicpaxIySNzldknYlGwchrZjw1R-29k,1309
155
+ reconstructor/adapters/otlp/normalize.py,sha256=KG2QtFNj0D_j55OHdxguBnnPGZWyUtDIxhTW2iIBTEs,2444
156
+ reconstructor/adapters/otlp/pipeline.py,sha256=Xk4svjJOmjJnUfO4F4zwmF1MoDb5-GvSZnok4gTzXls,3681
157
+ reconstructor/adapters/otlp/record_normalize.py,sha256=yk8PC3SfmdtMgCG4D7l9mqiukjCyyQ-Gl54j27qptu8,3142
158
+ reconstructor/adapters/otlp/time_ids.py,sha256=TLagfDn9vIRvBT7M3va_uOX-gsj5Wp4LHrQed0v0hEs,1672
159
+ reconstructor/adapters/otlp/tool_fragments.py,sha256=7c1QN26K8y93GNf8GOdHDw4SutAt6Ip4SYQui3v8ybw,2353
160
+ reconstructor/adapters/otlp/value_normalize.py,sha256=WNFONhcYJvRCpfCKQhHNDoeJWB2Bcvw76FGhRMxQYT4,2680
161
+ reconstructor/adapters/pydantic_ai/__init__.py,sha256=mZhB3ZgW2irUx_W85cc8-z3VIokWjmxHbfsoIpY3iIY,394
162
+ reconstructor/adapters/pydantic_ai/architecture.py,sha256=x2Dwj21xjaqJv6JkjepYNSWUTP1rumMblmxUkb37Xc0,471
163
+ reconstructor/adapters/pydantic_ai/cli.py,sha256=ubjQJ34z7YkxwWwLqM1OvLEc9N3HS6h2KpvNQ9Arj_Y,162
164
+ reconstructor/adapters/pydantic_ai/cli_handler.py,sha256=exYMGQCsPIGTlNurG1TYC9lXoYj_2LBnFnI-3MYxNoM,1494
165
+ reconstructor/adapters/pydantic_ai/cli_parser.py,sha256=Dai-pGd-YlaR7wWopg73Y4G7hKT6fUIcfhchWRno1xc,2548
166
+ reconstructor/adapters/pydantic_ai/common.py,sha256=d826djrRqW4Nfj0q8W8v3GfFoB0lvRpAdRsHUUiTGkw,927
167
+ reconstructor/adapters/pydantic_ai/events.py,sha256=HpZcwEBGg4Vlcz4DcebrLyk69pt0relevv0CL6-wWoU,5183
168
+ reconstructor/adapters/pydantic_ai/fragment_common.py,sha256=I-0G90mDzgH92MxYeBUSfYcqW9j3GHPflv9oSCdop4U,1016
169
+ reconstructor/adapters/pydantic_ai/fragments.py,sha256=y6CEEdAJgaO4ksFzpaxUmGsrxgv7cIwjhRMPbKEw684,533
170
+ reconstructor/adapters/pydantic_ai/handlers.py,sha256=oKld3JJt3edVkdC6fuXKeLuCxOj3cwd0Nk6tHmW5MQ8,2946
171
+ reconstructor/adapters/pydantic_ai/pipeline.py,sha256=QNyxMQXxVEQ03uKgYjsA1zy3HUNxuXWiOQ42XX0-p7s,2141
172
+ reconstructor/adapters/pydantic_ai/prompt_fragments.py,sha256=48Zkj6hRXexgxsQzf_KU1gllCf6Gee1bD-dl5TMb9mA,2093
173
+ reconstructor/adapters/pydantic_ai/run_fragments.py,sha256=4f_IXuHBszq2yNBl1iGvwZd0KqgJEfOQk2sr_9Dd-0g,2145
174
+ reconstructor/adapters/pydantic_ai/state.py,sha256=fWH2_ff5mi7AhBDBb0gt9XJ62_3okd_QlCulh3iGnuo,1015
175
+ reconstructor/adapters/pydantic_ai/tool_fragments.py,sha256=H5Lg9pGDunqJ29obJMUAp2MlO9gxeKuOM2YADCy3d-Q,3519
176
+ reconstructor/adapters/pydantic_ai/tool_handlers.py,sha256=i9TAronVJGH-3ftYXlcf_Hm5qIu0wbzZFRFRljcPkYk,2000
177
+ reconstructor/cli/__init__.py,sha256=zlrpeXYKqD1NdQS0wHYAyxzVS87zLpvqlBIB2zqZxlA,1301
178
+ reconstructor/cli/__main__.py,sha256=f7uVIcOIVRE1MLUOvnILD8LGKJHiFwDu-JwyoNcnuWE,174
179
+ reconstructor/cli/adapter_registry.py,sha256=kqlxdilYmrLOVGOMXI4WVEvM49i_tKUuESbsRUBuiAw,1274
180
+ reconstructor/cli/evaluation.py,sha256=g8XS9CPTIGbzL0HB1n29fTMUK3s9lvEynDTyk-MjsdM,1828
181
+ reconstructor/cli/ingest.py,sha256=l7r6gAqmUY5un2G5gOFcTWFrn5UD5UpcnxNOHVujeIY,1929
182
+ reconstructor/cli/ingest_common.py,sha256=BugyS4njfMIVZ43vrwExqdblVMhmjSdSmrfT3ABud_I,697
183
+ reconstructor/cli/ingest_common_args.py,sha256=CcNLbwYOerCqehS2etA0_Qj_yVPcVIHqXXeVJffYWYQ,2506
184
+ reconstructor/cli/ingest_handler_common.py,sha256=Y190iOvlnFqUp5bxW6jn5MLxtj9HQ2r8-DZgL8F0Q_M,1093
185
+ reconstructor/cli/ingest_schema_handlers.py,sha256=hOOEovvfJcRVL1-SCMWFMW6Co710UD7qj5pU3WnAOWw,1755
186
+ reconstructor/cli/reconstruct.py,sha256=P9Y_CpYK3KyKRTD0-x6_2rCnhuEODfaD7fmZPhqq8T8,5140
187
+ reconstructor/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
+ reconstructor/core/architecture.py,sha256=PZMXUgGW3XpE9FJ5TvGhefgdPxiWCNangY3kU7ZvI1s,947
189
+ reconstructor/core/boundary.py,sha256=5Awvh_4gcResMRFgYPT9bmb369C7kWoq-cQBWCHTtOI,3289
190
+ reconstructor/core/chain.py,sha256=pWmBL75IbSMy1_FOmvLqj_iN8QK-SL7b38DSTWZS_SE,1802
191
+ reconstructor/core/fragment.py,sha256=xiIErHFFQE-gNwm_MnwiUSGmEZN4PM-b8wds2FDZSrk,4646
192
+ reconstructor/core/manifest.py,sha256=8IuKDpyVVTCM5byTxpQwV1tK-xJzHyObb0HCju9BQhE,2792
193
+ reconstructor/core/temporal.py,sha256=bpEowPWov9OYJbsuQJq2u5z79D_fwmomBkCEaC5cp5U,1789
194
+ reconstructor/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
+ reconstructor/evaluation/defaults.py,sha256=6iVbFfbX0EVsDzMo9plQwT1yQDggcIlblZ3qbxXhMbg,209
196
+ reconstructor/evaluation/metrics.py,sha256=M9_q-oy79cqIZ3Hp8CtIeGUK3AWQN3qoIJSms1_Hn7M,4122
197
+ reconstructor/evaluation/run_named.py,sha256=cvgGVQ-tMDadUoC3wHcCsJ1NiAAzDEyODJ5-Bq4HcFo,4452
198
+ reconstructor/evaluation/run_synthetic.py,sha256=HZ5GZXu5TXUNneZ3AXp9vl4tCtRCzWau3H0W4YwZ21s,1833
199
+ reconstructor/evaluation/synthetic_console.py,sha256=Yp5CMIYBpuWeQvMP6MFpebOjh9Xss4eLpCuPl8mGro8,3252
200
+ reconstructor/evaluation/synthetic_evaluation.py,sha256=_XuKVcwGslzYPmL3aBPQ-C7iiGLeWAnWvVrfBnVlr4Y,3300
201
+ reconstructor/evaluation/synthetic_outputs.py,sha256=qNNi40v2zzgbsaHEiW7z7_PyMdbZpe5n9pkpMYBdy8A,4179
202
+ reconstructor/mapping/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
203
+ reconstructor/mapping/aggregation.py,sha256=ez7PUorsQGJIwlD8N57nCvF5B0YOsBXvA0P6o1yy29M,5601
204
+ reconstructor/mapping/classification.py,sha256=2L-MNJ4Bed0kjRmQH3mvHVcEJ07L5tqOutniCMDJCNM,1426
205
+ reconstructor/mapping/classification_rules.py,sha256=VvLZooOfEITSkU0ca_hLeOu5QtIGURBymBJxnYTCs-s,4490
206
+ reconstructor/mapping/feasibility.py,sha256=Au82e_G3aEdx8FIJfOhNsfXJnNJ_bqCMV7bjccK8d0k,1667
207
+ reconstructor/mapping/feasibility_helpers.py,sha256=IJ-H94PIKoNEV89ewtvEX5BNuNah3lzuQ_UKnZiTZR8,1015
208
+ reconstructor/mapping/mapper.py,sha256=8uVI7F9PereqdCxEHJRtv3Ten0xygkGXdjptEHJiLFo,617
209
+ reconstructor/mapping/modes.py,sha256=HtsL1PCK19EwbiPGYmKECQtZblxtEN4NhhKGnjOSPV0,1634
210
+ reconstructor/mapping/operational_modes.py,sha256=MRPNG1PpCgagNRXLwAOIwS8xNaUA_4mDiDOxJgsIDDE,1998
211
+ reconstructor/mapping/properties.py,sha256=hOEBOnjfnGGd1LMDgzKTu3fe-EVzPhBvBx9BRRU1fR0,843
212
+ reconstructor/mapping/property_fillers.py,sha256=wBR0IGiVncX8BGUWgGm42nYSQ-FRCyW3BViBXNoPO2Y,1184
213
+ reconstructor/output/__init__.py,sha256=3yvu0kD7nyUFXjKvZffbPUVYJQao1ZASRM7RKOtut04,980
214
+ reconstructor/output/generic_jsonl_models.py,sha256=Er92IHy6u8iAtJt-D7xZJ6bNSM8FZqSS023HxLy4fH4,2709
215
+ reconstructor/output/model_types.py,sha256=EnGVNg5qjq_j0UV3C6oyZCkbOAkPkuN4-yNSoxd0SCw,1700
216
+ reconstructor/output/models.py,sha256=YJp0Cl9yPIxofYqFIvuzwtut1JEHOscrZWG236R7n4U,1698
217
+ reconstructor/output/prov_context.py,sha256=hM68rIVZWzdBxFQBabpKvN7lDjhGr6sop5MWVP92d-g,1815
218
+ reconstructor/output/prov_identifiers.py,sha256=8TLzqFPJEeHr4sicxzKl34IelIQlrI8WGUHXUXz4z3A,888
219
+ reconstructor/output/prov_jsonld.py,sha256=PoUBq8qb26GbNTcEMiDLqZXCa3beDimgtmK6WU37UXg,5107
220
+ reconstructor/output/prov_nodes.py,sha256=M1dWtHsQ2dw8wkcOWzbqvI5olf4TEHGvz6-0zFGqjw4,3717
221
+ reconstructor/output/result_models.py,sha256=_N_PeTP3Jf_m4LgkzK3duUSdD41f8wDsg_bye5SVMbw,4187
222
+ reconstructor/synthetic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
+ reconstructor/synthetic/agentic_generator.py,sha256=eUzUHDCtxESI9WzvwNUsF1Reu3Rwy9kgIqQyBN91pq0,4635
224
+ reconstructor/synthetic/baseline_generator.py,sha256=dN0ezyTI8-gD7m9ab9oSPYaEnIxK2sCXanoDWFWaDTc,3563
225
+ reconstructor/synthetic/generator.py,sha256=G8qjOp6y0u5qUOFY6canuU8Zhyc6n1CoWDQJINt3X6Y,2547
226
+ reconstructor/synthetic/named_incidents.py,sha256=nRPJBn6K6YOswagCP-1olfg0mBN4XFnCdDtC1ph4ObI,7271
227
+ reconstructor/synthetic/scenario.py,sha256=uAO9x4Jkoqz6yeTMeqGZkOU9-m_sCjvdtwzkZK8PZcM,632
228
+ decision_trace_reconstructor-0.1.2.dist-info/METADATA,sha256=-mZWxjm2agSlnmwcxdzuvUiZNQa2aIVomn78hmZT-DU,8369
229
+ decision_trace_reconstructor-0.1.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
230
+ decision_trace_reconstructor-0.1.2.dist-info/entry_points.txt,sha256=4GyGhAS5Ep4w60jXC3lqcD9exY5O0Q8ICX-qSBTf5nQ,58
231
+ decision_trace_reconstructor-0.1.2.dist-info/top_level.txt,sha256=X2eORZTo6VqX8s2T4-iW6w36G2xAmSxztVP8biToJss,14
232
+ decision_trace_reconstructor-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ decision-trace = reconstructor.cli:main
@@ -0,0 +1,189 @@
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
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean any work of authorship, including
48
+ the original version of the Work and any modifications or additions
49
+ to that Work or Derivative Works thereof, that is intentionally
50
+ submitted to the Licensor for inclusion in the Work by the copyright owner
51
+ or by an individual or Legal Entity authorized to submit on behalf of
52
+ the copyright owner. For the purposes of this definition, "submitted"
53
+ means any form of electronic, verbal, or written communication sent
54
+ to the Licensor or its representatives, including but not limited to
55
+ communication on electronic mailing lists, source code control systems,
56
+ and issue tracking systems that are managed by, or on behalf of, the
57
+ Licensor for the purpose of discussing and improving the Work, but
58
+ excluding communication that is conspicuously marked or otherwise
59
+ designated in writing by the copyright owner as "Not a Contribution."
60
+
61
+ "Contributor" shall mean Licensor and any individual or Legal Entity
62
+ on behalf of whom a Contribution has been received by the Licensor and
63
+ subsequently incorporated within the Work.
64
+
65
+ 2. Grant of Copyright License. Subject to the terms and conditions of
66
+ this License, each Contributor hereby grants to You a perpetual,
67
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
68
+ copyright license to reproduce, prepare Derivative Works of,
69
+ publicly display, publicly perform, sublicense, and distribute the
70
+ Work and such Derivative Works in Source or Object form.
71
+
72
+ 3. Grant of Patent License. Subject to the terms and conditions of
73
+ this License, each Contributor hereby grants to You a perpetual,
74
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75
+ (except as stated in this section) patent license to make, have made,
76
+ use, offer to sell, sell, import, and otherwise transfer the Work,
77
+ where such license applies only to those patent claims licensable
78
+ by such Contributor that are necessarily infringed by their
79
+ Contribution(s) alone or by combination of their Contribution(s)
80
+ with the Work to which such Contribution(s) was submitted. If You
81
+ institute patent litigation against any entity (including a
82
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
83
+ or a Contribution incorporated within the Work constitutes direct
84
+ or contributory patent infringement, then any patent licenses
85
+ granted to You under this License for that Work shall terminate
86
+ as of the date such litigation is filed.
87
+
88
+ 4. Redistribution. You may reproduce and distribute copies of the
89
+ Work or Derivative Works thereof in any medium, with or without
90
+ modifications, and in Source or Object form, provided that You
91
+ meet the following conditions:
92
+
93
+ (a) You must give any other recipients of the Work or
94
+ Derivative Works a copy of this License; and
95
+
96
+ (b) You must cause any modified files to carry prominent notices
97
+ stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works
100
+ that You distribute, all copyright, patent, trademark, and
101
+ attribution notices from the Source form of the Work,
102
+ excluding those notices that do not pertain to any part of
103
+ the Derivative Works; and
104
+
105
+ (d) If the Work includes a "NOTICE" text file as part of its
106
+ distribution, then any Derivative Works that You distribute must
107
+ include a readable copy of the attribution notices contained
108
+ within such NOTICE file, excluding any notices that do not
109
+ pertain to any part of the Derivative Works, in at least one
110
+ of the following places: within a NOTICE text file distributed
111
+ as part of the Derivative Works; within the Source form or
112
+ documentation, if provided along with the Derivative Works; or,
113
+ within a display generated by the Derivative Works, if and
114
+ wherever such third-party notices normally appear. The contents
115
+ of the NOTICE file are for informational purposes only and
116
+ do not modify the License. You may add Your own attribution
117
+ notices within Derivative Works that You distribute, alongside
118
+ or as an addendum to the NOTICE text from the Work, provided
119
+ that such additional attribution notices cannot be construed
120
+ as modifying the License.
121
+
122
+ You may add Your own copyright statement to Your modifications and
123
+ may provide additional or different license terms and conditions
124
+ for use, reproduction, or distribution of Your modifications, or
125
+ for any such Derivative Works as a whole, provided Your use,
126
+ reproduction, and distribution of the Work otherwise complies with
127
+ the conditions stated in this License.
128
+
129
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
130
+ any Contribution intentionally submitted for inclusion in the Work
131
+ by You to the Licensor shall be under the terms and conditions of
132
+ this License, without any additional terms or conditions.
133
+ Notwithstanding the above, nothing herein shall supersede or modify
134
+ the terms of any separate license agreement you may have executed
135
+ with Licensor regarding such Contributions.
136
+
137
+ 6. Trademarks. This License does not grant permission to use the trade
138
+ names, trademarks, service marks, or product names of the Licensor,
139
+ except as required for reasonable and customary use in describing the
140
+ origin of the Work and reproducing the content of the NOTICE file.
141
+
142
+ 7. Disclaimer of Warranty. Unless required by applicable law or
143
+ agreed to in writing, Licensor provides the Work (and each
144
+ Contributor provides its Contributions) on an "AS IS" BASIS,
145
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
146
+ implied, including, without limitation, any warranties or conditions
147
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
148
+ PARTICULAR PURPOSE. You are solely responsible for determining the
149
+ appropriateness of using or redistributing the Work and assume any
150
+ risks associated with Your exercise of permissions under this License.
151
+
152
+ 8. Limitation of Liability. In no event and under no legal theory,
153
+ whether in tort (including negligence), contract, or otherwise,
154
+ unless required by applicable law (such as deliberate and grossly
155
+ negligent acts) or agreed to in writing, shall any Contributor be
156
+ liable to You for damages, including any direct, indirect, special,
157
+ incidental, or consequential damages of any character arising as a
158
+ result of this License or out of the use or inability to use the
159
+ Work (including but not limited to damages for loss of goodwill,
160
+ work stoppage, computer failure or malfunction, or any and all
161
+ other commercial damages or losses), even if such Contributor
162
+ has been advised of the possibility of such damages.
163
+
164
+ 9. Accepting Warranty or Additional Liability. While redistributing
165
+ the Work or Derivative Works thereof, You may choose to offer,
166
+ and charge a fee for, acceptance of support, warranty, indemnity,
167
+ or other liability obligations and/or rights consistent with this
168
+ License. However, in accepting such obligations, You may act only
169
+ on Your own behalf and on Your sole responsibility, not on behalf
170
+ of any other Contributor, and only if You agree to indemnify,
171
+ defend, and hold each Contributor harmless for any liability
172
+ incurred by, or claims asserted against, such Contributor by reason
173
+ of your accepting any such warranty or additional liability.
174
+
175
+ END OF TERMS AND CONDITIONS
176
+
177
+ Copyright 2026 Oleg Solozobov
178
+
179
+ Licensed under the Apache License, Version 2.0 (the "License");
180
+ you may not use this file except in compliance with the License.
181
+ You may obtain a copy of the License at
182
+
183
+ http://www.apache.org/licenses/LICENSE-2.0
184
+
185
+ Unless required by applicable law or agreed to in writing, software
186
+ distributed under the License is distributed on an "AS IS" BASIS,
187
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
188
+ See the License for the specific language governing permissions and
189
+ limitations under the License.
@@ -0,0 +1 @@
1
+ reconstructor
@@ -0,0 +1,3 @@
1
+ """Decision Trace Reconstructor."""
2
+
3
+ __version__ = "0.1.2"