agentledger-runtime 1.3.3__tar.gz → 1.3.5__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 (378) hide show
  1. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/CHANGELOG.md +28 -0
  2. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/PKG-INFO +12 -4
  3. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/README.md +9 -1
  4. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/README.zh-CN.md +8 -1
  5. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/COMPLETE_CORE_PARITY_CHECKLIST.md +2 -2
  6. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/IMPLEMENTATION_STATUS.md +2 -2
  7. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/INSPECTOR.md +53 -2
  8. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/LANGUAGE_QUICKSTART.md +1 -1
  9. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/ROADMAP.md +8 -1
  10. agentledger_runtime-1.3.5/docs/assets/inspector/runs-index.png +0 -0
  11. agentledger_runtime-1.3.5/docs/assets/inspector/single-run-timeline.png +0 -0
  12. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/COMPLETE_CORE_PARITY_CHECKLIST.md +1 -1
  13. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/IMPLEMENTATION_STATUS.md +2 -2
  14. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/INSPECTOR.md +53 -2
  15. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/LANGUAGE_QUICKSTART.md +1 -1
  16. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/ROADMAP.md +10 -1
  17. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-inspector/README.md +15 -2
  18. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-inspector/pyproject.toml +2 -2
  19. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-inspector/src/agentledger_inspector/__init__.py +4 -2
  20. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-inspector/tests/test_import.py +3 -1
  21. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/pyproject.toml +3 -3
  22. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/__init__.py +4 -2
  23. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/cli.py +44 -0
  24. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/evidence.py +11 -7
  25. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/inspector.py +725 -11
  26. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/protocol.py +1 -0
  27. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/store.py +6 -0
  28. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/timetravel.py +12 -6
  29. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/tests/test_runtime.py +115 -3
  30. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/.github/workflows/ci.yml +0 -0
  31. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/.gitignore +0 -0
  32. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/CODE_OF_CONDUCT.md +0 -0
  33. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/CONTRIBUTING.md +0 -0
  34. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/LICENSE +0 -0
  35. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/SECURITY.md +0 -0
  36. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/agentledger.runtime.v1.json +0 -0
  37. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/adversarial_review.v1.json +0 -0
  38. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/boundary_lint.v1.json +0 -0
  39. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/cost_failure_attribution.v1.json +0 -0
  40. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/evidence_consumers.v1.json +0 -0
  41. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/evidence_regression.v1.json +0 -0
  42. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/failure_injection.v1.json +0 -0
  43. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/framework_adapters.v1.json +0 -0
  44. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/local_blob_store.v1.json +0 -0
  45. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/local_persistence.v1.json +0 -0
  46. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/mcp_adapters.v1.json +0 -0
  47. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/media_stream_artifacts.v1.json +0 -0
  48. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/official_adapters.v1.json +0 -0
  49. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/ops_readiness.v1.json +0 -0
  50. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/optional_adapters.v1.json +0 -0
  51. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/otlp_trace_export.v1.json +0 -0
  52. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/policy_approval_sandbox.v1.json +0 -0
  53. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/repro.v1.json +0 -0
  54. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/runtime_baseline.v1.json +0 -0
  55. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/runtime_semantics.v1.json +0 -0
  56. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/scheduler.v1.json +0 -0
  57. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/shadow.v1.json +0 -0
  58. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/simple_api.v1.json +0 -0
  59. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/static_debug_html.v1.json +0 -0
  60. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/storage_schema.v1.json +0 -0
  61. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/time_travel.v1.json +0 -0
  62. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/tool_schema_validation.v1.json +0 -0
  63. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/contracts/conformance/worker_service.v1.json +0 -0
  64. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/ADAPTER_CERTIFICATION.md +0 -0
  65. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/ADAPTER_PACKAGING.md +0 -0
  66. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/ADAPTER_ROADMAP.md +0 -0
  67. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/ADOPTION.md +0 -0
  68. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/ARCHITECTURE.md +0 -0
  69. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/BACKUP_RESTORE.md +0 -0
  70. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/COMPARISONS.md +0 -0
  71. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/DESIGN_AND_IMPLEMENTATION.md +0 -0
  72. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/DISTRIBUTED_WORKERS.md +0 -0
  73. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/EXECUTION_BACKENDS.md +0 -0
  74. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/EXTENSIBILITY.md +0 -0
  75. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/GETTING_STARTED.md +0 -0
  76. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/HARNESS_STACK.md +0 -0
  77. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/IMPLEMENTATION_PLAN.md +0 -0
  78. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/LANGUAGE_IMPLEMENTATION_COMPARISON.md +0 -0
  79. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/LANGUAGE_PARITY_AUDIT.md +0 -0
  80. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/LANGUAGE_PARITY_MATRIX.md +0 -0
  81. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/MAINTAINER_NOTES.md +0 -0
  82. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/MATURITY_MODEL.md +0 -0
  83. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/MULTI_LANGUAGE.md +0 -0
  84. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/MYSQL.md +0 -0
  85. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/OPEN_SOURCE_IMPACT.md +0 -0
  86. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/POLICY_ENGINE.md +0 -0
  87. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/POSTGRES.md +0 -0
  88. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/QUERY_EXAMPLES.md +0 -0
  89. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/README.md +0 -0
  90. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/RELEASE_CHECKLIST.md +0 -0
  91. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/RUNTIME_SPEC.md +0 -0
  92. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/S3_MINIO.md +0 -0
  93. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/SECURITY_ENTERPRISE.md +0 -0
  94. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/STORAGE.md +0 -0
  95. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/USAGE.md +0 -0
  96. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/VERSIONING.md +0 -0
  97. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/assets/agent-policy-engine-evaluate-detail.svg +0 -0
  98. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/assets/agent-policy-engine-relationship-map.svg +0 -0
  99. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/assets/agentledger-runtime-architecture.svg +0 -0
  100. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/assets/agentledger-social-architecture.svg +0 -0
  101. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/assets/langgraph-agentledger-relationship.svg +0 -0
  102. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/case-studies/legal-agent.md +0 -0
  103. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/ADAPTER_CERTIFICATION.md +0 -0
  104. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/ADAPTER_PACKAGING.md +0 -0
  105. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/ADAPTER_ROADMAP.md +0 -0
  106. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/ADOPTION.md +0 -0
  107. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/ARCHITECTURE.md +0 -0
  108. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/COMPARISONS.md +0 -0
  109. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/DESIGN_AND_IMPLEMENTATION.md +0 -0
  110. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/EXECUTION_BACKENDS.md +0 -0
  111. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/EXTENSIBILITY.md +0 -0
  112. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/GETTING_STARTED.md +0 -0
  113. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/HARNESS_STACK.md +0 -0
  114. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/LANGUAGE_IMPLEMENTATION_COMPARISON.md +0 -0
  115. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/LANGUAGE_PARITY_AUDIT.md +0 -0
  116. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/LANGUAGE_PARITY_MATRIX.md +0 -0
  117. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/MAINTAINER_NOTES.md +0 -0
  118. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/MYSQL.md +0 -0
  119. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/OPEN_SOURCE_IMPACT.md +0 -0
  120. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/POLICY_ENGINE.md +0 -0
  121. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/QUERY_EXAMPLES.md +0 -0
  122. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/README.md +0 -0
  123. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/RELEASE_CHECKLIST.md +0 -0
  124. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/RUNTIME_SPEC.md +0 -0
  125. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/SECURITY_ENTERPRISE.md +0 -0
  126. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/STORAGE.md +0 -0
  127. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/USAGE.md +0 -0
  128. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/docs/zh/case-studies/legal-agent.md +0 -0
  129. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/README.md +0 -0
  130. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/autogen/basic_agent.py +0 -0
  131. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/crewai/basic_crew.py +0 -0
  132. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/docs/README.md +0 -0
  133. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/hello_world/hello.py +0 -0
  134. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/inspector/README.md +0 -0
  135. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/inspector/custom_viewer.py +0 -0
  136. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/langchain/basic_runnable.py +0 -0
  137. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/langgraph/basic_graph.py +0 -0
  138. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/lint/boundary_rules.json +0 -0
  139. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/llamaindex/basic_query.py +0 -0
  140. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/mcp_context/basic_context_server.py +0 -0
  141. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/mcp_governance/README.md +0 -0
  142. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/mcp_governance/demo.py +0 -0
  143. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/mcp_tool/basic_tool.py +0 -0
  144. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/media_stream/basic_media_stream.py +0 -0
  145. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/media_stream/managed_tool.py +0 -0
  146. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/openai_agents/basic_agent.py +0 -0
  147. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/policy/local.policy.yaml +0 -0
  148. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/sandbox/command_tool.py +0 -0
  149. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/sandbox/sandbox.yaml +0 -0
  150. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/semantic_kernel/basic_kernel.py +0 -0
  151. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/side_effect_idempotency/README.md +0 -0
  152. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/three_minute_demo/README.md +0 -0
  153. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/three_minute_demo/demo.py +0 -0
  154. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/tool_catalog/basic_catalog.py +0 -0
  155. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/transient_retry/README.md +0 -0
  156. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/examples/travel_assistant/demo.py +0 -0
  157. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/README.md +0 -0
  158. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/framework/framework.go +0 -0
  159. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/langfuse/langfuse.go +0 -0
  160. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/mcp/mcp.go +0 -0
  161. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/mysql/mysql.go +0 -0
  162. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/otel/otel.go +0 -0
  163. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/postgres/postgres.go +0 -0
  164. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/s3/s3.go +0 -0
  165. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters/sandbox/docker/docker.go +0 -0
  166. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/adapters.go +0 -0
  167. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/blobstore.go +0 -0
  168. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/cmd/agentledger-go/main.go +0 -0
  169. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/consumers.go +0 -0
  170. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/eval.go +0 -0
  171. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/evidence.go +0 -0
  172. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/examples/README.md +0 -0
  173. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/examples/mcp_governance/main.go +0 -0
  174. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/examples/quickstart/main.go +0 -0
  175. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/examples/three_minute_demo/main.go +0 -0
  176. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/examples/travel_assistant/main.go +0 -0
  177. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/failure_injection.go +0 -0
  178. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/go.mod +0 -0
  179. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/lint.go +0 -0
  180. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/mcp.go +0 -0
  181. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/official_adapters.go +0 -0
  182. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/ops.go +0 -0
  183. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/optional_adapters.go +0 -0
  184. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/replay.go +0 -0
  185. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/repro.go +0 -0
  186. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/review.go +0 -0
  187. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/runtime.go +0 -0
  188. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/runtime_test.go +0 -0
  189. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/scheduler.go +0 -0
  190. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/schema.go +0 -0
  191. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/shadow.go +0 -0
  192. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/simple.go +0 -0
  193. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/store.go +0 -0
  194. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/timetravel.go +0 -0
  195. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/tools.go +0 -0
  196. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/travel_assistant +0 -0
  197. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/types.go +0 -0
  198. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/go/worker.go +0 -0
  199. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/migrations/postgres/0001_initial.sql +0 -0
  200. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/migrations/sqlite/0001_initial.sql +0 -0
  201. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langfuse/README.md +0 -0
  202. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langfuse/pyproject.toml +0 -0
  203. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langfuse/src/agentledger_langfuse/__init__.py +0 -0
  204. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langfuse/tests/test_import.py +0 -0
  205. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langgraph/README.md +0 -0
  206. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langgraph/examples/README.md +0 -0
  207. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langgraph/pyproject.toml +0 -0
  208. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langgraph/src/agentledger_langgraph/__init__.py +0 -0
  209. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-langgraph/tests/test_import.py +0 -0
  210. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mcp/README.md +0 -0
  211. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mcp/examples/README.md +0 -0
  212. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mcp/pyproject.toml +0 -0
  213. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mcp/src/agentledger_mcp/__init__.py +0 -0
  214. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mcp/tests/test_import.py +0 -0
  215. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mysql/README.md +0 -0
  216. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mysql/examples/README.md +0 -0
  217. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mysql/pyproject.toml +0 -0
  218. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mysql/src/agentledger_mysql/__init__.py +0 -0
  219. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-mysql/tests/test_import.py +0 -0
  220. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-otel/README.md +0 -0
  221. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-otel/examples/README.md +0 -0
  222. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-otel/pyproject.toml +0 -0
  223. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-otel/src/agentledger_otel/__init__.py +0 -0
  224. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-otel/tests/test_import.py +0 -0
  225. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-postgres/README.md +0 -0
  226. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-postgres/examples/README.md +0 -0
  227. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-postgres/pyproject.toml +0 -0
  228. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-postgres/src/agentledger_postgres/__init__.py +0 -0
  229. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-postgres/tests/test_import.py +0 -0
  230. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-s3/README.md +0 -0
  231. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-s3/examples/README.md +0 -0
  232. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-s3/pyproject.toml +0 -0
  233. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-s3/src/agentledger_s3/__init__.py +0 -0
  234. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-s3/tests/test_import.py +0 -0
  235. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-sandbox-docker/README.md +0 -0
  236. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-sandbox-docker/examples/README.md +0 -0
  237. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-sandbox-docker/pyproject.toml +0 -0
  238. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-sandbox-docker/src/agentledger_sandbox_docker/__init__.py +0 -0
  239. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/packages/agentledger-sandbox-docker/tests/test_import.py +0 -0
  240. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/Cargo.lock +0 -0
  241. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/Cargo.toml +0 -0
  242. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/README.md +0 -0
  243. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-framework/Cargo.toml +0 -0
  244. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-framework/README.md +0 -0
  245. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-framework/src/lib.rs +0 -0
  246. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-langfuse/Cargo.toml +0 -0
  247. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-langfuse/README.md +0 -0
  248. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-langfuse/src/lib.rs +0 -0
  249. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-mcp/Cargo.toml +0 -0
  250. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-mcp/README.md +0 -0
  251. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-mcp/src/lib.rs +0 -0
  252. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-mysql/Cargo.toml +0 -0
  253. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-mysql/README.md +0 -0
  254. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-mysql/src/lib.rs +0 -0
  255. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-otel/Cargo.toml +0 -0
  256. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-otel/README.md +0 -0
  257. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-otel/src/lib.rs +0 -0
  258. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-postgres/Cargo.toml +0 -0
  259. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-postgres/README.md +0 -0
  260. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-postgres/src/lib.rs +0 -0
  261. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-s3/Cargo.toml +0 -0
  262. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-s3/README.md +0 -0
  263. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-s3/src/lib.rs +0 -0
  264. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-sandbox-docker/Cargo.toml +0 -0
  265. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-sandbox-docker/README.md +0 -0
  266. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/crates/agentledger-sandbox-docker/src/lib.rs +0 -0
  267. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/examples/README.md +0 -0
  268. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/examples/mcp_governance.rs +0 -0
  269. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/examples/quickstart.rs +0 -0
  270. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/examples/three_minute_demo.rs +0 -0
  271. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/examples/travel_assistant.rs +0 -0
  272. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/src/lib.rs +0 -0
  273. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/rust/src/main.rs +0 -0
  274. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/scripts/audit_python_parity.py +0 -0
  275. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/scripts/check_adapter_packages.py +0 -0
  276. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/scripts/check_complete_core_parity.py +0 -0
  277. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/scripts/check_language_parity.py +0 -0
  278. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/__main__.py +0 -0
  279. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/adapter_certification.py +0 -0
  280. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/adapters.py +0 -0
  281. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/adapters_frameworks.py +0 -0
  282. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/adapters_langgraph.py +0 -0
  283. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/adapters_mcp.py +0 -0
  284. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/approval.py +0 -0
  285. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/backup.py +0 -0
  286. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/blobstore.py +0 -0
  287. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/blobstore_s3.py +0 -0
  288. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/conformance.py +0 -0
  289. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/context.py +0 -0
  290. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/contract.py +0 -0
  291. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/cost.py +0 -0
  292. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/diff.py +0 -0
  293. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/eval.py +0 -0
  294. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/examples.py +0 -0
  295. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/failure.py +0 -0
  296. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/failure_injection.py +0 -0
  297. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/ids.py +0 -0
  298. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/jsonutil.py +0 -0
  299. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/lint.py +0 -0
  300. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/media.py +0 -0
  301. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/media_tools.py +0 -0
  302. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/policy.py +0 -0
  303. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/replay.py +0 -0
  304. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/repro.py +0 -0
  305. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/retention.py +0 -0
  306. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/review.py +0 -0
  307. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/runtime.py +0 -0
  308. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/sandbox.py +0 -0
  309. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/scheduler.py +0 -0
  310. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/shadow.py +0 -0
  311. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/simple.py +0 -0
  312. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/storage_mysql.py +0 -0
  313. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/storage_postgres.py +0 -0
  314. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/storage_schema.py +0 -0
  315. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/tools.py +0 -0
  316. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/trace.py +0 -0
  317. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/src/agentledger/worker.py +0 -0
  318. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/tests/test_postgres_integration.py +0 -0
  319. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/tests/test_s3_integration.py +0 -0
  320. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/README.md +0 -0
  321. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/examples/README.md +0 -0
  322. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/examples/mcp_governance/mcp_governance.js +0 -0
  323. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/examples/quickstart/quickstart.js +0 -0
  324. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/examples/three_minute_demo/three_minute_demo.js +0 -0
  325. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/examples/travel_assistant/travel_assistant.js +0 -0
  326. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/package.json +0 -0
  327. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langfuse/README.md +0 -0
  328. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langfuse/package.json +0 -0
  329. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langfuse/src/index.d.ts +0 -0
  330. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langfuse/src/index.js +0 -0
  331. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langgraph/README.md +0 -0
  332. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langgraph/package.json +0 -0
  333. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langgraph/src/index.d.ts +0 -0
  334. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-langgraph/src/index.js +0 -0
  335. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mcp/README.md +0 -0
  336. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mcp/package.json +0 -0
  337. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mcp/src/index.d.ts +0 -0
  338. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mcp/src/index.js +0 -0
  339. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mysql/README.md +0 -0
  340. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mysql/package.json +0 -0
  341. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mysql/src/index.d.ts +0 -0
  342. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-mysql/src/index.js +0 -0
  343. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-otel/README.md +0 -0
  344. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-otel/package.json +0 -0
  345. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-otel/src/index.d.ts +0 -0
  346. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-otel/src/index.js +0 -0
  347. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-postgres/README.md +0 -0
  348. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-postgres/package.json +0 -0
  349. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-postgres/src/index.d.ts +0 -0
  350. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-postgres/src/index.js +0 -0
  351. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-s3/README.md +0 -0
  352. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-s3/package.json +0 -0
  353. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-s3/src/index.d.ts +0 -0
  354. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-s3/src/index.js +0 -0
  355. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-sandbox-docker/README.md +0 -0
  356. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-sandbox-docker/package.json +0 -0
  357. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-sandbox-docker/src/index.d.ts +0 -0
  358. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/packages/agentledger-sandbox-docker/src/index.js +0 -0
  359. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/langfuse.d.ts +0 -0
  360. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/langfuse.js +0 -0
  361. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/langgraph.d.ts +0 -0
  362. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/langgraph.js +0 -0
  363. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/mcp.d.ts +0 -0
  364. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/mcp.js +0 -0
  365. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/mysql.d.ts +0 -0
  366. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/mysql.js +0 -0
  367. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/otel.d.ts +0 -0
  368. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/otel.js +0 -0
  369. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/postgres.d.ts +0 -0
  370. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/postgres.js +0 -0
  371. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/s3.d.ts +0 -0
  372. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/s3.js +0 -0
  373. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/sandbox-docker.d.ts +0 -0
  374. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/adapters/sandbox-docker.js +0 -0
  375. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/cli.js +0 -0
  376. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/index.d.ts +0 -0
  377. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/src/index.js +0 -0
  378. {agentledger_runtime-1.3.3 → agentledger_runtime-1.3.5}/typescript/test/runtime.test.js +0 -0
@@ -8,6 +8,34 @@ This project follows semantic versioning for the stable runtime-core contract. O
8
8
 
9
9
  No unreleased changes yet.
10
10
 
11
+ ## 1.3.5 - 2026-06-07
12
+
13
+ ### Added
14
+
15
+ - Added an Inspector chronological Event Stream view sorted by event timestamp, showing runtime run id, extracted agent run id, step id, event type, summary, and links back to detailed timeline records.
16
+ - Added `agentledger inspector runs` and the `agentledger.inspector.runs.v1` read model for a read-only run index over SQLite/Postgres/MySQL runtime metadata.
17
+
18
+ ### Fixed
19
+
20
+ - Improved Python static debug HTML layout so large JSON/details payloads and long ids do not expand tables or break the page width.
21
+ - Reworked detailed Inspector, evidence, and time-travel tables so JSON opens in a full-width row below the record instead of a narrow right-side column.
22
+ - Reworked the Inspector run-index HTML from a wide multi-column table into a compact paginated run list with status, timestamps, counters, Inspector links, and folded JSON details.
23
+
24
+ ### Clarified
25
+
26
+ - This is a Python static debug HTML patch and is not published yet. It does not change the stable runtime-core contract or require Go, TypeScript, or Rust runtime-core changes.
27
+
28
+ ## 1.3.4
29
+
30
+ ### Fixed
31
+
32
+ - Corrected the `agentledger-inspector` package module `__version__` so it matches published package metadata.
33
+ - Added a release metadata regression check so the runtime package, Inspector companion package, and optional Inspector extra stay aligned in future patch releases.
34
+
35
+ ### Clarified
36
+
37
+ - This is an Inspector/package metadata patch release. It does not change the stable runtime-core contract or require Go, TypeScript, or Rust runtime-core changes.
38
+
11
39
  ## 1.3.3
12
40
 
13
41
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentledger-runtime
3
- Version: 1.3.3
3
+ Version: 1.3.5
4
4
  Summary: Runtime reliability layer for Agent Harness stacks
5
5
  Project-URL: Homepage, https://github.com/yaogdu/AgentLedger
6
6
  Project-URL: Repository, https://github.com/yaogdu/AgentLedger
@@ -21,7 +21,7 @@ Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  Requires-Python: >=3.11
23
23
  Provides-Extra: all
24
- Requires-Dist: agentledger-inspector<2,>=1.3.3; extra == 'all'
24
+ Requires-Dist: agentledger-inspector<2,>=1.3.5; extra == 'all'
25
25
  Requires-Dist: agentledger-langfuse<2,>=1.3; extra == 'all'
26
26
  Requires-Dist: agentledger-langgraph<2,>=1.3; extra == 'all'
27
27
  Requires-Dist: agentledger-mcp<2,>=1.3; extra == 'all'
@@ -33,7 +33,7 @@ Requires-Dist: agentledger-sandbox-docker<2,>=1.3; extra == 'all'
33
33
  Provides-Extra: docker
34
34
  Requires-Dist: agentledger-sandbox-docker<2,>=1.3; extra == 'docker'
35
35
  Provides-Extra: inspector
36
- Requires-Dist: agentledger-inspector<2,>=1.3.3; extra == 'inspector'
36
+ Requires-Dist: agentledger-inspector<2,>=1.3.5; extra == 'inspector'
37
37
  Provides-Extra: langfuse
38
38
  Requires-Dist: agentledger-langfuse<2,>=1.3; extra == 'langfuse'
39
39
  Provides-Extra: langgraph
@@ -90,6 +90,14 @@ Python remains the reference implementation, and Go, TypeScript, and Rust now ha
90
90
  | Use Go correctly | [go/README.md](go/README.md#install) |
91
91
  | Read the full documentation map | [docs/README.md](docs/README.md) |
92
92
 
93
+ ## Inspector Preview
94
+
95
+ Inspector exports self-contained, read-only HTML for local or internal debugging. It can show a run index before opening a single run, then drill into chronological events, Tool Ledger rows, approvals, artifacts, and full-width JSON details.
96
+
97
+ ![AgentLedger Inspector run index](docs/assets/inspector/runs-index.png)
98
+
99
+ ![AgentLedger Inspector single run](docs/assets/inspector/single-run-timeline.png)
100
+
93
101
  ## At a glance
94
102
 
95
103
  | Question | Answer |
@@ -333,7 +341,7 @@ AgentLedger is also not a new LLM SDK, not a workflow engine, not a general obse
333
341
 
334
342
  ## Current maturity
335
343
 
336
- AgentLedger 1.3.x is a stable runtime-core line with Python as the reference implementation and Go, TypeScript, and Rust covered by shared runtime-core parity gates. The current Python/Inspector patch is 1.3.3; Go, TypeScript, and Rust runtime-core package baselines remain 1.3.1 until their next runtime-core release. It is suitable for local use, framework adapter integration, reliability semantics validation, and production pilot preparation with explicit adapter boundaries.
344
+ AgentLedger 1.3.x is a stable runtime-core line with Python as the reference implementation and Go, TypeScript, and Rust covered by shared runtime-core parity gates. The current Python/Inspector patch is 1.3.5; Go, TypeScript, and Rust runtime-core package baselines remain 1.3.1 until their next runtime-core release. It is suitable for local use, framework adapter integration, reliability semantics validation, and production pilot preparation with explicit adapter boundaries.
337
345
 
338
346
  The runtime-core contract is stable; optional production adapters and external infrastructure hardening remain separately tracked. See [docs/MATURITY_MODEL.md](docs/MATURITY_MODEL.md), [docs/IMPLEMENTATION_STATUS.md](docs/IMPLEMENTATION_STATUS.md), and [docs/ROADMAP.md](docs/ROADMAP.md).
339
347
 
@@ -38,6 +38,14 @@ Python remains the reference implementation, and Go, TypeScript, and Rust now ha
38
38
  | Use Go correctly | [go/README.md](go/README.md#install) |
39
39
  | Read the full documentation map | [docs/README.md](docs/README.md) |
40
40
 
41
+ ## Inspector Preview
42
+
43
+ Inspector exports self-contained, read-only HTML for local or internal debugging. It can show a run index before opening a single run, then drill into chronological events, Tool Ledger rows, approvals, artifacts, and full-width JSON details.
44
+
45
+ ![AgentLedger Inspector run index](docs/assets/inspector/runs-index.png)
46
+
47
+ ![AgentLedger Inspector single run](docs/assets/inspector/single-run-timeline.png)
48
+
41
49
  ## At a glance
42
50
 
43
51
  | Question | Answer |
@@ -281,7 +289,7 @@ AgentLedger is also not a new LLM SDK, not a workflow engine, not a general obse
281
289
 
282
290
  ## Current maturity
283
291
 
284
- AgentLedger 1.3.x is a stable runtime-core line with Python as the reference implementation and Go, TypeScript, and Rust covered by shared runtime-core parity gates. The current Python/Inspector patch is 1.3.3; Go, TypeScript, and Rust runtime-core package baselines remain 1.3.1 until their next runtime-core release. It is suitable for local use, framework adapter integration, reliability semantics validation, and production pilot preparation with explicit adapter boundaries.
292
+ AgentLedger 1.3.x is a stable runtime-core line with Python as the reference implementation and Go, TypeScript, and Rust covered by shared runtime-core parity gates. The current Python/Inspector patch is 1.3.5; Go, TypeScript, and Rust runtime-core package baselines remain 1.3.1 until their next runtime-core release. It is suitable for local use, framework adapter integration, reliability semantics validation, and production pilot preparation with explicit adapter boundaries.
285
293
 
286
294
  The runtime-core contract is stable; optional production adapters and external infrastructure hardening remain separately tracked. See [docs/MATURITY_MODEL.md](docs/MATURITY_MODEL.md), [docs/IMPLEMENTATION_STATUS.md](docs/IMPLEMENTATION_STATUS.md), and [docs/ROADMAP.md](docs/ROADMAP.md).
287
295
 
@@ -38,6 +38,13 @@ Python 仍然是 reference implementation;Go、TypeScript、Rust 已有 native
38
38
  | 正确使用 Go | [go/README.md](go/README.md#install) |
39
39
  | 查看完整文档地图 | [docs/zh/README.md](docs/zh/README.md) |
40
40
 
41
+ ## Inspector 预览
42
+
43
+ Inspector 会导出自包含、只读的 HTML,适合本地或内网排查问题。它可以先展示 run index,再进入单个 run 查看按时间排序的事件、Tool Ledger、approval、artifact 和全宽 JSON 详情。
44
+
45
+ ![AgentLedger Inspector run index](docs/assets/inspector/runs-index.png)
46
+
47
+ ![AgentLedger Inspector single run](docs/assets/inspector/single-run-timeline.png)
41
48
 
42
49
  ## 快速判断
43
50
 
@@ -282,7 +289,7 @@ AgentLedger 也不是新的 LLM SDK,不是 workflow engine,不是通用 obse
282
289
 
283
290
  ## 当前成熟度
284
291
 
285
- AgentLedger 1.3.x 是 stable runtime-core line,Python 是 reference implementation,Go、TypeScript、Rust 已由共享 runtime-core parity gate 覆盖。当前 Python/Inspector patch 是 1.3.3;Go、TypeScript、Rust runtime-core package baseline 仍是 1.3.1,直到它们进入下一次 runtime-core release。适合本地使用、framework adapter integration、reliability semantics 验证,以及在明确 adapter 边界下做 production pilot 准备。
292
+ AgentLedger 1.3.x 是 stable runtime-core line,Python 是 reference implementation,Go、TypeScript、Rust 已由共享 runtime-core parity gate 覆盖。当前 Python/Inspector patch 是 1.3.5;Go、TypeScript、Rust runtime-core package baseline 仍是 1.3.1,直到它们进入下一次 runtime-core release。适合本地使用、framework adapter integration、reliability semantics 验证,以及在明确 adapter 边界下做 production pilot 准备。
286
293
 
287
294
  runtime-core contract 已稳定;optional production adapter 和外部基础设施加固仍按独立阶段推进。详见 [docs/MATURITY_MODEL.md](docs/MATURITY_MODEL.md)、[docs/zh/IMPLEMENTATION_STATUS.md](docs/zh/IMPLEMENTATION_STATUS.md) 和 [docs/zh/ROADMAP.md](docs/zh/ROADMAP.md)。
288
295
 
@@ -56,7 +56,7 @@ Excluded or not applicable:
56
56
  | Quickstart docs | Language quickstart and adapter quickstart | README + docs | `go/README.md` | `typescript/README.md` | `rust/README.md` | docs link check | done |
57
57
  | Examples | Runnable examples for core runtime and adapter API | Python examples | `go/examples/quickstart/main.go` | `typescript/examples/quickstart/quickstart.js` | `rust/examples/quickstart.rs` | `scripts/check_complete_core_parity.py` | done |
58
58
  | Package metadata | Installable package metadata in the current 1.3 release family | PyPI metadata `1.3.x` | `go.mod` tag `go/v1.3.1` for current baseline | npm package `1.3.1` for current baseline | `Cargo.toml` `1.3.1` for current baseline | `scripts/check_complete_core_parity.py` release-family check | done |
59
- | Package install smoke | Install/import/run from published or built package | PyPI `agentledger-runtime==1.3.3` release smoke after publish for current Inspector patch | `go/v1.3.1` clean external `go get` smoke after tag | npm `agentledger-runtime@1.3.1` release smoke after publish | crates.io `agentledger-runtime==1.3.1` release smoke after publish | publish logs + `scripts/check_complete_core_parity.py` dry-run gates | release-gated |
59
+ | Package install smoke | Install/import/run from published or built package | PyPI `agentledger-runtime==1.3.5` release smoke after publish for current Inspector patch | `go/v1.3.1` clean external `go get` smoke after tag | npm `agentledger-runtime@1.3.1` release smoke after publish | crates.io `agentledger-runtime==1.3.1` release smoke after publish | publish logs + `scripts/check_complete_core_parity.py` dry-run gates | release-gated |
60
60
  | Release docs | Changelog, release checklist, status docs reflect exact parity boundary | docs | docs | docs | docs | docs link check | done |
61
61
  | Comparison docs | Honest overlap with LangChain/LangGraph/LangSmith/Langfuse/etc. | docs | docs | docs | docs | docs link check | done |
62
62
 
@@ -67,7 +67,7 @@ The strict core parity gate now covers the previously weak areas:
67
67
  1. CLI baseline is automatically checked for all four language CLIs.
68
68
  2. Go, TypeScript, and Rust have runnable quickstart example files.
69
69
  3. TypeScript and Rust package surfaces have package dry-run checks (`npm pack --dry-run`, `cargo package --allow-dirty --no-verify`) and post-publish install smokes are required for release.
70
- 4. Package release families are checked across Python, TypeScript, and Rust. The current core release family is `1.3`; Python may carry Inspector-only patch releases such as `1.3.3` without changing non-Python runtime-core baselines.
70
+ 4. Package release families are checked across Python, TypeScript, and Rust. The current core release family is `1.3`; Python may carry Inspector-only patch releases such as `1.3.5` without changing non-Python runtime-core baselines.
71
71
  5. Go external module consumption is tag/release dependent; each release should repeat the clean external `go get` smoke after pushing the `go/vX.Y.Z` tag.
72
72
  6. Real service-backed hardening remains out of scope for core parity and stays documented as optional follow-up work.
73
73
 
@@ -15,7 +15,7 @@ AgentLedger 1.3.x is a stable runtime-core line with Python as the reference imp
15
15
  - reliability semantics validation
16
16
  - production pilot preparation with explicit adapter boundaries
17
17
 
18
- Release-scope note: 1.3.0 added Inspector as a read-only evidence/runtime metadata consumer. It can read exported evidence bundles or connect to SQLite/Postgres/MySQL AgentLedger metadata with read-only credentials and can export a static HTML debug report. 1.3.2 adds configurable redaction for Inspector JSON/HTML output. 1.3.3 adds static report navigation and read-model cross-links for timeline, tool, approval, policy, and artifact records. MySQL remains the 1.2.2 storage adapter boundary and Langfuse remains the 1.2.3 observability adapter boundary; real-service production claims still require external validation.
18
+ Release-scope note: 1.3.0 added Inspector as a read-only evidence/runtime metadata consumer. It can read exported evidence bundles or connect to SQLite/Postgres/MySQL AgentLedger metadata with read-only credentials and can export a static HTML debug report. 1.3.2 adds configurable redaction for Inspector JSON/HTML output. 1.3.3 adds static report navigation and read-model cross-links for timeline, tool, approval, policy, and artifact records. 1.3.4 fixes Inspector package release metadata alignment. 1.3.5 improves Python static debug HTML layout, adds a chronological event stream, adds a read-only run index, paginates the run list, and moves table JSON/details payloads into full-width rows without changing runtime-core semantics. MySQL remains the 1.2.2 storage adapter boundary and Langfuse remains the 1.2.3 observability adapter boundary; real-service production claims still require external validation.
19
19
 
20
20
  The runtime-core contract is stable. Optional production adapters, external infrastructure hardening, and full eval systems remain outside the stable core boundary; non-Python runtime-core baselines are verified by the shared parity gates.
21
21
 
@@ -58,7 +58,7 @@ Excluded from this boundary:
58
58
  | Adapter contracts | framework adapter base, LangGraph facade, MCP tool/context mapping, dependency-free method facades, first-party adapter package boundaries |
59
59
  | Sandbox boundary | fail-closed `none`, local executor, router, external executor contracts, Docker/bubblewrap command paths, Kubernetes dry-run/gated path |
60
60
  | Observability | trace JSONL export with media/stream spans, dependency-free OTLP JSON export, optional OTLP/JSON collector POST, evidence-linked audit records |
61
- | Inspector | `agentledger.inspector.v1` read model, `agentledger inspector run/evidence`, static HTML report, section navigation, row anchors, cross-links between related records, evidence-bundle input, read-only SQLite input, Postgres/MySQL read paths through existing adapter boundaries, configurable redaction policy, optional `agentledger-inspector` companion package |
61
+ | Inspector | `agentledger.inspector.v1` single-run read model, `agentledger.inspector.runs.v1` run-index read model, `agentledger inspector run/runs/evidence`, static HTML reports, section navigation, row anchors, cross-links between related records, evidence-bundle input, read-only SQLite input, Postgres/MySQL read paths through existing adapter boundaries, configurable redaction policy, optional `agentledger-inspector` companion package |
62
62
  | Reliability checks | failure injection suite, failure attribution report, conformance runners including media runtime conformance, runtime-boundary lint, scheduler facade, adversarial review, evidence regression for shell, HTTP, cloud, GitHub, and common model SDK bypasses with JSON rule-pack extension |
63
63
  | Media and stream contracts | `MediaArtifact`, `MediaMetadata`, `ArtifactLineage`, `StreamChunkRef`, `EventStreamCheckpoint`, `AgentContext.create_media_artifact(...)`, `AgentContext.create_stream_checkpoint(...)`, media/stream tool schema conventions, ToolGateway/Tool Ledger media tool example, evidence indexes, replay artifact validation/counts |
64
64
  | Release scaffolding | CI workflow, changelog, security policy, versioning policy, release checklist, contributor checks, bilingual documentation entrypoints, SVG architecture diagram, ResourceWarning-sensitive test gate, adapter certification checklist, adapter packaging docs/checks |
@@ -4,6 +4,14 @@ AgentLedger Inspector is a language-neutral, read-only debug and audit view for
4
4
 
5
5
  It is not a long-running service and not a runtime control plane. It does not approve requests, cancel runs, mutate Tool Ledger rows, call tools, or contact model providers.
6
6
 
7
+ ## Preview
8
+
9
+ The default renderer is a static reference UI: a paginated run index plus a single-run view with chronological events and full-width JSON details.
10
+
11
+ ![AgentLedger Inspector run index](assets/inspector/runs-index.png)
12
+
13
+ ![AgentLedger Inspector single run](assets/inspector/single-run-timeline.png)
14
+
7
15
  ## Install
8
16
 
9
17
  Inspector is available through the core CLI and as an optional companion package:
@@ -22,7 +30,7 @@ Inspector is implemented once as a companion evidence consumer. Go, TypeScript,
22
30
  The boundary is:
23
31
 
24
32
  - language runtimes write AgentLedger metadata, Tool Ledger rows, events, artifacts, and evidence
25
- - Inspector reads that data through the stable read model `agentledger.inspector.v1`
33
+ - Inspector reads that data through stable read models such as `agentledger.inspector.v1` and `agentledger.inspector.runs.v1`
26
34
  - users can build their own viewer, API endpoint, or internal debug tool on top of the read model
27
35
 
28
36
  This keeps Inspector outside runtime-core execution semantics while still making all language implementations debuggable through one tool.
@@ -35,6 +43,7 @@ Inspector supports two read paths.
35
43
  |---|---|---|
36
44
  | Exported evidence | `agentledger inspector evidence <path>` | Portable artifact from any language implementation or CI job. |
37
45
  | Local SQLite runtime | `agentledger inspector run <run_id> --root .agentledger` | Local development and small deployments. |
46
+ | Run index | `agentledger inspector runs --root .agentledger` | Read-only list of recent runs before opening one run. |
38
47
  | Direct SQLite path | `agentledger inspector run <run_id> --backend sqlite --db state.db --blob-root blobs` | Custom runtime directory layouts. |
39
48
  | Postgres metadata | `agentledger inspector run <run_id> --backend postgres --dsn ... --schema ... --blob-root ...` | Server-side StateStore deployments. |
40
49
  | MySQL metadata | `agentledger inspector run <run_id> --backend mysql --dsn ... --database ... --blob-root ...` | MySQL-backed StateStore deployments. |
@@ -56,6 +65,8 @@ This path reads AgentLedger runtime metadata directly. SQLite is opened in read-
56
65
  ```bash
57
66
  agentledger inspector run <run_id> --root .agentledger --html ./inspector.html
58
67
  agentledger inspector run <run_id> --backend sqlite --db .agentledger/state.db --blob-root .agentledger/blobs --out ./inspector.json
68
+ agentledger inspector runs --root .agentledger --html ./runs.html
69
+ agentledger inspector runs --root .agentledger --out ./runs.json
59
70
  ```
60
71
 
61
72
  Postgres and MySQL are also supported through the existing StateStore adapter boundaries. Inspector uses read-only store wrappers for these paths and does not run migrations or create tables:
@@ -63,12 +74,16 @@ Postgres and MySQL are also supported through the existing StateStore adapter bo
63
74
  ```bash
64
75
  agentledger inspector run <run_id> --backend postgres --dsn "$AGENTLEDGER_POSTGRES_DSN" --schema agentledger --blob-root .agentledger/blobs --html ./inspector.html
65
76
  agentledger inspector run <run_id> --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN" --database agentledger --blob-root .agentledger/blobs --html ./inspector.html
77
+ agentledger inspector runs --backend postgres --dsn "$AGENTLEDGER_POSTGRES_DSN" --schema agentledger --html ./runs.html
78
+ agentledger inspector runs --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN" --database agentledger --html ./runs.html
66
79
  ```
67
80
 
68
81
  Use database credentials with read-only permissions. AgentLedger does not add an Inspector-specific permission system; database grants, filesystem ACLs, and deployment policy remain the enforcement layer. The Inspector code path exposes no runtime write/control actions, but Postgres/MySQL client libraries cannot replace database-side read-only grants.
69
82
 
70
83
  The `--blob-root` argument currently points at a local blob directory containing the payload blobs referenced by the runtime metadata. If payload blobs live in S3/MinIO or another managed object store, export an evidence bundle first or provide a custom `EvidenceBlobStoreProtocol` implementation through the extension API.
71
84
 
85
+ For `agentledger inspector runs`, `--blob-root` is optional. When present, Inspector may use it to extract an application-level `agent_run_id` from event payloads. When absent, the run index still works but may show `agent_run_id` as `-`.
86
+
72
87
  ## Output
73
88
 
74
89
  `--out` writes the stable JSON read model:
@@ -78,6 +93,8 @@ The `--blob-root` argument currently points at a local blob directory containing
78
93
  "schema_version": "agentledger.inspector.v1",
79
94
  "run": {},
80
95
  "summary": {},
96
+ "agent_run_id": null,
97
+ "event_stream": [],
81
98
  "timeline": [],
82
99
  "tool_ledger": [],
83
100
  "approvals": [],
@@ -90,6 +107,32 @@ The `--blob-root` argument currently points at a local blob directory containing
90
107
 
91
108
  `--html` writes a static HTML report for local or internal debugging. The file is self-contained and can be opened without a server.
92
109
 
110
+ `agentledger inspector runs --out` writes a run-index read model:
111
+
112
+ ```json
113
+ {
114
+ "schema_version": "agentledger.inspector.runs.v1",
115
+ "summary": {},
116
+ "runs": []
117
+ }
118
+ ```
119
+
120
+ `agentledger inspector runs --html` writes a static read-only run list. The default renderer uses a compact paginated vertical list with status, timestamps, counters, optional Inspector links, and folded JSON details instead of a wide table. Use `--run-link-template "/runs/{run_id}/inspector.html"` when an application or internal tool already exposes single-run Inspector pages and should link from the index to those pages.
121
+
122
+ ## Event Stream
123
+
124
+ `1.3.5` adds an Event Stream section to the Inspector read model and static HTML report. It is a chronological view of the same run events, sorted by event time and tied together by:
125
+
126
+ - `runtime_run_id`: the AgentLedger runtime run id
127
+ - `agent_run_id`: an agent/application run id when one is present in event metadata or payloads
128
+ - `seq`: the original AgentLedger event sequence
129
+ - `type`, `step_id`, and `summary`: compact event context
130
+ - `related_links`: local links back to detailed timeline, step, tool, approval, policy, or artifact records
131
+
132
+ This view is intended for debugging a single run from top to bottom. It does not replace the detailed section views; it gives operators a time-ordered path through them.
133
+
134
+ Detailed tables keep compact record columns on the first row and render the folded JSON payload in a full-width row below each record. This keeps long payloads readable without forcing a narrow right-side details column.
135
+
93
136
  ## Navigation And Cross-links
94
137
 
95
138
  `1.3.3` adds stable row anchors and related links to the Inspector read model. Timeline events, steps, Tool Ledger rows, approval requests, policy decisions, and artifacts may include:
@@ -220,11 +263,19 @@ Implemented in `1.3.3`:
220
263
  - stable read-model anchors for timeline, step, Tool Ledger, approval, policy, and artifact rows
221
264
  - static HTML section navigation and internal cross-links between related runtime records
222
265
 
266
+ Implemented in `1.3.5`:
267
+
268
+ - chronological Event Stream in JSON and static HTML reports
269
+ - read-only run index through `agentledger inspector runs`
270
+ - `agentledger.inspector.runs.v1` run-index read model for custom viewers
271
+ - runtime run id and extracted agent run id in event/timeline read-model rows
272
+ - safer static HTML layout for long ids, full-width JSON details, and paginated run lists
273
+
223
274
  Not in this version:
224
275
 
225
276
  - long-running web server
277
+ - login, permission, user, or organization management for Inspector surfaces
226
278
  - write/control-plane actions
227
- - user/organization management
228
279
  - permission, identity, billing, or administration backend
229
280
  - full LangSmith/Langfuse replacement
230
281
  - live remote blob adapters inside the Inspector package
@@ -2,7 +2,7 @@
2
2
 
3
3
  [English](LANGUAGE_QUICKSTART.md) | [中文](zh/LANGUAGE_QUICKSTART.md)
4
4
 
5
- AgentLedger 1.3.x has one Python reference runtime and native preview runtime-core baselines for Go, TypeScript, and Rust. The shared promise is semantic parity for runtime-core: durable runs, leases, Tool Ledger, evidence, replay, policy/approval/sandbox boundaries, cost/failure attribution, conformance, and official optional adapter contracts. Python may carry Inspector-only patch releases such as 1.3.3 while the non-Python runtime-core package baselines remain on the latest shared runtime-core tag.
5
+ AgentLedger 1.3.x has one Python reference runtime and native preview runtime-core baselines for Go, TypeScript, and Rust. The shared promise is semantic parity for runtime-core: durable runs, leases, Tool Ledger, evidence, replay, policy/approval/sandbox boundaries, cost/failure attribution, conformance, and official optional adapter contracts. Python may carry Inspector-only patch releases such as 1.3.5 while the non-Python runtime-core package baselines remain on the latest shared runtime-core tag.
6
6
 
7
7
  The non-Python packages are native runtime packages, not thin clients: each runs a native local runtime loop and reports the shared conformance checks.
8
8
 
@@ -564,9 +564,16 @@ Implemented in `1.3.3`:
564
564
  - stable read-model anchors for timeline, step, Tool Ledger, approval, policy, and artifact rows
565
565
  - static HTML section navigation and internal cross-links between related runtime records
566
566
 
567
+ Implemented in `1.3.5`:
568
+
569
+ - chronological Event Stream in JSON and static HTML reports
570
+ - read-only run index with status, timestamps, cost summary, failure summary, and optional single-run links
571
+ - runtime run id and extracted agent run id in event/timeline rows
572
+ - paginated run-list static HTML and full-width JSON/details rows for Inspector, evidence, and time-travel tables
573
+
567
574
  Follow-up work:
568
575
 
569
- - run/session list with status, timestamps, cost summary, and failure summary
576
+ - richer filtering, search, pagination, and saved views for the read-only run index
570
577
  - run timeline for steps, events, model calls, tool calls, approvals, artifacts, and checkpoints
571
578
  - state diff and state-version view
572
579
  - Tool Ledger view with idempotency key, causal token, side-effect status, request/response refs, and unknown-state handling
@@ -26,7 +26,7 @@
26
26
  1. 四语言 CLI baseline 已有自动化检查,不再只依赖 conformance。
27
27
  2. Go、TypeScript、Rust 已有 runnable quickstart example files。
28
28
  3. TypeScript/Rust package surface 已有 `npm pack --dry-run` / `cargo package --allow-dirty --no-verify` 发布 dry-run;发布后仍需重复 clean install smoke。
29
- 4. Python、TypeScript、Rust 的 package release family 已自动检查;当前 core release family 是 `1.3`。Python 可以有 Inspector-only patch release,例如 `1.3.3`,不代表非 Python runtime-core baseline 必须同时变化。
29
+ 4. Python、TypeScript、Rust 的 package release family 已自动检查;当前 core release family 是 `1.3`。Python 可以有 Inspector-only patch release,例如 `1.3.5`,不代表非 Python runtime-core baseline 必须同时变化。
30
30
  5. Go module 外部消费依赖 Git tag/release;每次 release 推送 `go/vX.Y.Z` tag 后都需要重复 clean external `go get` smoke。
31
31
  6. 真实服务 hardening 仍不属于 core parity,继续作为 optional follow-up 记录。
32
32
 
@@ -15,7 +15,7 @@ AgentLedger 1.3.x 是 stable runtime-core line,Python 是 reference implementa
15
15
  - reliability semantics 验证
16
16
  - 在明确 adapter 边界下做 production pilot 准备
17
17
 
18
- 版本范围说明:1.3.0 增加 Inspector,定位是只读 evidence/runtime metadata consumer。它可以读取导出的 evidence bundle,也可以用只读凭证连接 SQLite/Postgres/MySQL AgentLedger metadata,并导出静态 HTML debug report。1.3.2 增加 Inspector JSON/HTML 输出的可配置脱敏。1.3.3 增加 static report navigation,以及 timeline、tool、approval、policy、artifact record 的 read-model cross-links。MySQL 仍是 1.2.2 的 storage adapter boundary,Langfuse 仍是 1.2.3 的 observability adapter boundary;真实服务生产级声明仍需要外部验证。
18
+ 版本范围说明:1.3.0 增加 Inspector,定位是只读 evidence/runtime metadata consumer。它可以读取导出的 evidence bundle,也可以用只读凭证连接 SQLite/Postgres/MySQL AgentLedger metadata,并导出静态 HTML debug report。1.3.2 增加 Inspector JSON/HTML 输出的可配置脱敏。1.3.3 增加 static report navigation,以及 timeline、tool、approval、policy、artifact record 的 read-model cross-links。1.3.4 修复 Inspector package release metadata 对齐。1.3.5 改善 Python static debug HTML 布局,增加 chronological event stream 和只读 run index,为 run list 增加分页,并把表格中的 JSON/details payload 移到全宽行中,不改变 runtime-core 语义。MySQL 仍是 1.2.2 的 storage adapter boundary,Langfuse 仍是 1.2.3 的 observability adapter boundary;真实服务生产级声明仍需要外部验证。
19
19
 
20
20
  runtime-core contract 已稳定。optional production adapter、外部基础设施加固和完整 eval 系统都不属于 stable core 边界;非 Python runtime-core baseline 由共享 parity gate 验证。
21
21
 
@@ -58,7 +58,7 @@ runtime-core contract 已稳定。optional production adapter、外部基础设
58
58
  | Adapter contract | framework adapter base、LangGraph facade、MCP tool/context mapping、dependency-free method facades、第一方 adapter package boundaries |
59
59
  | Sandbox boundary | fail-closed `none`、local executor、router、external executor contract、Docker/bubblewrap command path、Kubernetes dry-run/gated path |
60
60
  | Observability | trace JSONL export、dependency-free OTLP JSON export、optional OTLP/JSON collector POST、evidence-linked audit record |
61
- | Inspector | `agentledger.inspector.v1` read model、`agentledger inspector run/evidence`、静态 HTML report、section navigation、row anchor、相关 record 之间的 cross-link、evidence-bundle input、read-only SQLite input、通过已有 adapter boundary 的 Postgres/MySQL read path、可配置 redaction policy、optional `agentledger-inspector` companion package |
61
+ | Inspector | `agentledger.inspector.v1` 单 run read model、`agentledger.inspector.runs.v1` run-index read model、`agentledger inspector run/runs/evidence`、静态 HTML report、section navigation、row anchor、相关 record 之间的 cross-link、evidence-bundle input、read-only SQLite input、通过已有 adapter boundary 的 Postgres/MySQL read path、可配置 redaction policy、optional `agentledger-inspector` companion package |
62
62
  | Reliability checks | failure injection suite、failure attribution report、conformance runner、runtime-boundary lint, scheduler facade, adversarial review, evidence regression、JSON rule-pack extension |
63
63
  | Media/stream contracts | `MediaArtifact`、`MediaMetadata`、`ArtifactLineage`、`StreamChunkRef`、`EventStreamCheckpoint`、AgentContext helpers、tool schema conventions、evidence/replay validation |
64
64
  | 开源发布骨架 | CI workflow、changelog、security policy、versioning policy、release checklist、contributor checks、中英文文档入口、SVG 架构图、adapter certification checklist、adapter packaging docs/checks |
@@ -4,6 +4,14 @@ AgentLedger Inspector 是语言无关、只读的 run 调试和审计视图。
4
4
 
5
5
  它不是长运行服务,也不是 runtime 控制平面。它不会 approve request、cancel run、修改 Tool Ledger、调用工具或访问 model provider。
6
6
 
7
+ ## 预览
8
+
9
+ 默认 renderer 是静态参考 UI:分页 run index,以及带 chronological event 和全宽 JSON details 的单 run 视图。
10
+
11
+ ![AgentLedger Inspector run index](../assets/inspector/runs-index.png)
12
+
13
+ ![AgentLedger Inspector single run](../assets/inspector/single-run-timeline.png)
14
+
7
15
  ## 安装
8
16
 
9
17
  Inspector 可以通过 core CLI 使用,也提供 optional companion package:
@@ -22,7 +30,7 @@ Inspector 只实现一套,作为 companion evidence consumer 存在。Go、Typ
22
30
  边界是:
23
31
 
24
32
  - 各语言 runtime 写入 AgentLedger metadata、Tool Ledger、event、artifact 和 evidence
25
- - Inspector 通过稳定 read model `agentledger.inspector.v1` 读取这些数据
33
+ - Inspector 通过 `agentledger.inspector.v1`、`agentledger.inspector.runs.v1` 等稳定 read model 读取这些数据
26
34
  - 用户可以基于 read model 二开自己的 viewer、API endpoint 或内部 debug 工具
27
35
 
28
36
  这样 Inspector 不进入 runtime-core 执行语义,但四种语言实现都能通过同一个工具排查问题。
@@ -35,6 +43,7 @@ Inspector 支持两条只读路径。
35
43
  |---|---|---|
36
44
  | 导出的 evidence | `agentledger inspector evidence <path>` | 任意语言实现或 CI job 导出的可移植证据包。 |
37
45
  | 本地 SQLite runtime | `agentledger inspector run <run_id> --root .agentledger` | 本地开发和小规模部署。 |
46
+ | Run index | `agentledger inspector runs --root .agentledger` | 打开单个 run 前,先只读查看最近 run 列表。 |
38
47
  | 直接 SQLite 路径 | `agentledger inspector run <run_id> --backend sqlite --db state.db --blob-root blobs` | 自定义 runtime 目录结构。 |
39
48
  | Postgres metadata | `agentledger inspector run <run_id> --backend postgres --dsn ... --schema ... --blob-root ...` | 使用 server-side StateStore 的部署。 |
40
49
  | MySQL metadata | `agentledger inspector run <run_id> --backend mysql --dsn ... --database ... --blob-root ...` | 使用 MySQL StateStore 的部署。 |
@@ -56,6 +65,8 @@ agentledger inspector evidence ./bundle.json --out ./inspector.json
56
65
  ```bash
57
66
  agentledger inspector run <run_id> --root .agentledger --html ./inspector.html
58
67
  agentledger inspector run <run_id> --backend sqlite --db .agentledger/state.db --blob-root .agentledger/blobs --out ./inspector.json
68
+ agentledger inspector runs --root .agentledger --html ./runs.html
69
+ agentledger inspector runs --root .agentledger --out ./runs.json
59
70
  ```
60
71
 
61
72
  Postgres 和 MySQL 通过已有 StateStore adapter boundary 读取。Inspector 在这些路径上使用 read-only store wrapper,不会运行 migration,也不会创建表:
@@ -63,12 +74,16 @@ Postgres 和 MySQL 通过已有 StateStore adapter boundary 读取。Inspector
63
74
  ```bash
64
75
  agentledger inspector run <run_id> --backend postgres --dsn "$AGENTLEDGER_POSTGRES_DSN" --schema agentledger --blob-root .agentledger/blobs --html ./inspector.html
65
76
  agentledger inspector run <run_id> --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN" --database agentledger --blob-root .agentledger/blobs --html ./inspector.html
77
+ agentledger inspector runs --backend postgres --dsn "$AGENTLEDGER_POSTGRES_DSN" --schema agentledger --html ./runs.html
78
+ agentledger inspector runs --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN" --database agentledger --html ./runs.html
66
79
  ```
67
80
 
68
81
  Postgres/MySQL 建议使用只读数据库账号。AgentLedger 不为 Inspector 单独做一套权限系统;数据库 grant、文件系统 ACL 和部署策略才是权限执行层。Inspector 代码路径不暴露 runtime 写入/控制动作,但 Postgres/MySQL 客户端无法替代数据库侧的只读授权。
69
82
 
70
83
  `--blob-root` 当前指向本地 blob 目录,用于读取 runtime metadata 中引用的 payload blob。如果 payload blob 在 S3/MinIO 或其它托管对象存储中,优先先导出 evidence bundle,或者通过 extension API 提供自定义 `EvidenceBlobStoreProtocol` 实现。
71
84
 
85
+ 对 `agentledger inspector runs` 来说,`--blob-root` 是可选项。提供后,Inspector 会尽量从 event payload 中提取业务侧 `agent_run_id`;不提供时,run index 仍可用,只是 `agent_run_id` 可能显示为 `-`。
86
+
72
87
  ## 输出
73
88
 
74
89
  `--out` 写出稳定 JSON read model:
@@ -78,6 +93,8 @@ Postgres/MySQL 建议使用只读数据库账号。AgentLedger 不为 Inspector
78
93
  "schema_version": "agentledger.inspector.v1",
79
94
  "run": {},
80
95
  "summary": {},
96
+ "agent_run_id": null,
97
+ "event_stream": [],
81
98
  "timeline": [],
82
99
  "tool_ledger": [],
83
100
  "approvals": [],
@@ -90,6 +107,32 @@ Postgres/MySQL 建议使用只读数据库账号。AgentLedger 不为 Inspector
90
107
 
91
108
  `--html` 写出静态 HTML 报告,适合本地或内网排查问题;打开 HTML 不需要启动服务。
92
109
 
110
+ `agentledger inspector runs --out` 会写出 run-index read model:
111
+
112
+ ```json
113
+ {
114
+ "schema_version": "agentledger.inspector.runs.v1",
115
+ "summary": {},
116
+ "runs": []
117
+ }
118
+ ```
119
+
120
+ `agentledger inspector runs --html` 会写出静态只读 run list。默认 renderer 使用紧凑的分页纵向列表展示 status、时间、计数、可选 Inspector 链接和折叠 JSON 详情,不再用很宽的多列表格。如果你的应用或内部工具已经暴露单 run Inspector 页面,可以用 `--run-link-template "/runs/{run_id}/inspector.html"` 把列表页链接到单 run 页面。
121
+
122
+ ## Event Stream
123
+
124
+ `1.3.5` 在 Inspector read model 和静态 HTML report 中增加 Event Stream。它复用同一批 run event,但按事件时间排序,并用下面这些字段把执行过程串起来:
125
+
126
+ - `runtime_run_id`:AgentLedger runtime run id
127
+ - `agent_run_id`:如果 event metadata 或 payload 中存在 agent/application run id,则提取出来
128
+ - `seq`:原始 AgentLedger event sequence
129
+ - `type`、`step_id`、`summary`:压缩后的事件上下文
130
+ - `related_links`:跳回 timeline、step、tool、approval、policy、artifact 等详细记录的本地链接
131
+
132
+ 这个视图用于从头到尾排查单个 run。它不替代分块详情页,而是给 operator 一条按时间查看详情的路径。
133
+
134
+ 详细表格会把紧凑记录列放在第一行,折叠 JSON payload 放到当前记录下面的全宽行中。这样长 payload 可读性更好,也不会被挤在右侧很窄的 details 列里。
135
+
93
136
  ## 导航和交叉链接
94
137
 
95
138
  `1.3.3` 在 Inspector read model 中增加了稳定的行级 anchor 和 related links。Timeline event、step、Tool Ledger row、approval request、policy decision 和 artifact 可能包含:
@@ -220,11 +263,19 @@ data = report.to_dict()
220
263
  - timeline、step、Tool Ledger、approval、policy 和 artifact row 的稳定 read-model anchor
221
264
  - static HTML section navigation,以及相关 runtime record 之间的内部交叉链接
222
265
 
266
+ `1.3.5` 已实现:
267
+
268
+ - JSON 和 static HTML report 中的 chronological Event Stream
269
+ - 通过 `agentledger inspector runs` 提供只读 run index
270
+ - 面向自定义 viewer 的 `agentledger.inspector.runs.v1` run-index read model
271
+ - event/timeline read-model row 中的 runtime run id 和提取出的 agent run id
272
+ - 对长 id、全宽 JSON details 和分页 run list 更稳的 static HTML 布局
273
+
223
274
  本版本不包含:
224
275
 
225
276
  - 长运行 Web server
277
+ - Inspector surface 的登录、权限、用户或组织管理
226
278
  - 写入/控制平面动作
227
- - 用户/组织管理
228
279
  - permission、identity、billing 或 administration backend
229
280
  - 完整 LangSmith/Langfuse 替代品
230
281
  - Inspector package 内置 live remote blob adapter
@@ -2,7 +2,7 @@
2
2
 
3
3
  [English](../LANGUAGE_QUICKSTART.md) | [中文](LANGUAGE_QUICKSTART.md)
4
4
 
5
- AgentLedger 1.3.x 包含 Python reference runtime,以及 Go、TypeScript、Rust 的 native preview runtime-core baseline。共享承诺是 runtime-core 语义对齐:durable run、lease、Tool Ledger、evidence、replay、policy/approval/sandbox boundary、cost/failure attribution、conformance 和 official optional adapter contract。Python 可以有 Inspector-only patch release,例如 1.3.3;非 Python runtime-core package baseline 仍保持在最近一次共享 runtime-core tag。
5
+ AgentLedger 1.3.x 包含 Python reference runtime,以及 Go、TypeScript、Rust 的 native preview runtime-core baseline。共享承诺是 runtime-core 语义对齐:durable run、lease、Tool Ledger、evidence、replay、policy/approval/sandbox boundary、cost/failure attribution、conformance 和 official optional adapter contract。Python 可以有 Inspector-only patch release,例如 1.3.5;非 Python runtime-core package baseline 仍保持在最近一次共享 runtime-core tag。
6
6
 
7
7
  非 Python package 是 native runtime package,不是 thin client:它们都能运行本地 native runtime loop,并报告共享 conformance checks。
8
8
 
@@ -603,10 +603,19 @@ timeline、step、Tool Ledger、approval、policy、artifact row 的稳定 read-
603
603
  相关 runtime record 之间的 static HTML section navigation 和内部 cross-link
604
604
  ```
605
605
 
606
+ `1.3.5` 已实现:
607
+
608
+ ```text
609
+ JSON 和 static HTML report 中的 chronological Event Stream
610
+ 只读 run index:status、timestamp、cost summary、failure summary、可选单 run 链接
611
+ event/timeline row 中的 runtime run id 和提取出的 agent run id
612
+ run list static HTML 分页,以及 Inspector、evidence、time-travel 表格中的全宽 JSON/details 行
613
+ ```
614
+
606
615
  后续工作:
607
616
 
608
617
  ```text
609
- run/session list:statustimestampcost summaryfailure summary
618
+ 只读 run index 的 filteringsearchpaginationsaved views
610
619
  单个 run timeline:step、event、model call、tool call、approval、artifact、checkpoint
611
620
  state diff 和 state-version view
612
621
  Tool Ledger view:idempotency key、causal token、side-effect status、request/response refs、unknown-state handling
@@ -15,6 +15,13 @@ Inspect a local runtime database:
15
15
  agentledger inspector run <run_id> --root .agentledger --html ./inspector.html
16
16
  ```
17
17
 
18
+ Inspect recent runs from a local runtime database:
19
+
20
+ ```bash
21
+ agentledger inspector runs --root .agentledger --html ./runs.html
22
+ agentledger inspector runs --root .agentledger --out ./runs.json
23
+ ```
24
+
18
25
  Inspect an exported evidence bundle:
19
26
 
20
27
  ```bash
@@ -53,7 +60,7 @@ agentledger inspector run <run_id> --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN
53
60
 
54
61
  The Inspector does not start a server, mutate runtime state, call tools, approve requests, or contact model providers. It builds a language-neutral read model from AgentLedger runtime metadata or exported evidence bundles. AgentLedger does not add a separate permission layer for Inspector; use database grants, filesystem ACLs, and deployment policy.
55
62
 
56
- Static HTML reports include local section navigation and internal cross-links between related timeline events, steps, Tool Ledger rows, approvals, policy decisions, and artifacts. Custom viewers can reuse the same `anchor`, `related_refs`, and `related_links` fields from `InspectorReport.to_dict()`.
63
+ Static HTML reports include local section navigation, a chronological Event Stream, a read-only run index, and internal cross-links between related timeline events, steps, Tool Ledger rows, approvals, policy decisions, and artifacts. Custom viewers can reuse the same `event_stream`, `anchor`, `related_refs`, `related_links`, and run-index fields from `InspectorReport.to_dict()` / `InspectorRunIndex.to_dict()`.
57
64
 
58
65
  Extension API:
59
66
 
@@ -73,9 +80,15 @@ custom_source_report = InspectorDataSource().from_runtime_store(
73
80
  blobs=my_read_only_blob_store,
74
81
  run_id="run_123",
75
82
  )
83
+
84
+ run_index = InspectorDataSource().runs_from_runtime_store(
85
+ store=my_read_only_state_store,
86
+ blobs=my_read_only_blob_store,
87
+ run_link_template="/runs/{run_id}/inspector.html",
88
+ )
76
89
  ```
77
90
 
78
- The default HTML renderer is a reference renderer. Users can build their own UI by consuming `InspectorReport.to_dict()` and preserving `schema_version == agentledger.inspector.v1`.
91
+ The default HTML renderer is a reference renderer. Users can build their own UI by consuming `InspectorReport.to_dict()` / `InspectorRunIndex.to_dict()` and preserving `schema_version == agentledger.inspector.v1` or `agentledger.inspector.runs.v1`. The package does not include a long-running web server, login system, permission system, or runtime control plane.
79
92
 
80
93
  `EvidenceStateStoreProtocol` and `EvidenceBlobStoreProtocol` describe the minimal read API for custom database/blob backends.
81
94
 
@@ -4,14 +4,14 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agentledger-inspector"
7
- version = "1.3.3"
7
+ version = "1.3.5"
8
8
  description = "Read-only Inspector and evidence viewer package for AgentLedger"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
11
11
  license = {text = "Apache-2.0"}
12
12
  authors = [{name = "AgentLedger Contributors"}]
13
13
  keywords = ["agents", "runtime", "inspector", "debug", "evidence"]
14
- dependencies = ["agentledger-runtime>=1.3.3,<2"]
14
+ dependencies = ["agentledger-runtime>=1.3.5,<2"]
15
15
 
16
16
  [project.urls]
17
17
  Homepage = "https://github.com/yaogdu/AgentLedger"
@@ -1,18 +1,20 @@
1
1
  """Read-only Inspector package for AgentLedger."""
2
2
 
3
- __version__ = "1.3.2"
3
+ __version__ = "1.3.5"
4
4
 
5
- from agentledger.inspector import INSPECTOR_SCHEMA_VERSION, InspectorDataSource, InspectorRedactionPolicy, InspectorReport, InspectorReportBuilder, ReadOnlyLocalBlobStore, ReadOnlyMySQLStore, ReadOnlyPostgresStore, ReadOnlySQLiteStore
5
+ from agentledger.inspector import INSPECTOR_RUN_INDEX_SCHEMA_VERSION, INSPECTOR_SCHEMA_VERSION, InspectorDataSource, InspectorRedactionPolicy, InspectorReport, InspectorReportBuilder, InspectorRunIndex, ReadOnlyLocalBlobStore, ReadOnlyMySQLStore, ReadOnlyPostgresStore, ReadOnlySQLiteStore
6
6
  from agentledger.protocol import EvidenceBlobStoreProtocol, EvidenceStateStoreProtocol
7
7
 
8
8
  __all__ = [
9
9
  "INSPECTOR_SCHEMA_VERSION",
10
+ "INSPECTOR_RUN_INDEX_SCHEMA_VERSION",
10
11
  "EvidenceBlobStoreProtocol",
11
12
  "EvidenceStateStoreProtocol",
12
13
  "InspectorDataSource",
13
14
  "InspectorRedactionPolicy",
14
15
  "InspectorReport",
15
16
  "InspectorReportBuilder",
17
+ "InspectorRunIndex",
16
18
  "ReadOnlyLocalBlobStore",
17
19
  "ReadOnlyMySQLStore",
18
20
  "ReadOnlyPostgresStore",
@@ -3,13 +3,15 @@ import unittest
3
3
 
4
4
  class InspectorPackageImportTests(unittest.TestCase):
5
5
  def test_imports(self) -> None:
6
- from agentledger_inspector import INSPECTOR_SCHEMA_VERSION, EvidenceStateStoreProtocol, InspectorDataSource, InspectorRedactionPolicy, InspectorReportBuilder, ReadOnlyPostgresStore
6
+ from agentledger_inspector import INSPECTOR_RUN_INDEX_SCHEMA_VERSION, INSPECTOR_SCHEMA_VERSION, EvidenceStateStoreProtocol, InspectorDataSource, InspectorRedactionPolicy, InspectorReportBuilder, InspectorRunIndex, ReadOnlyPostgresStore
7
7
 
8
8
  self.assertEqual(INSPECTOR_SCHEMA_VERSION, "agentledger.inspector.v1")
9
+ self.assertEqual(INSPECTOR_RUN_INDEX_SCHEMA_VERSION, "agentledger.inspector.runs.v1")
9
10
  self.assertEqual(EvidenceStateStoreProtocol.__name__, "EvidenceStateStoreProtocol")
10
11
  self.assertEqual(InspectorDataSource.__name__, "InspectorDataSource")
11
12
  self.assertEqual(InspectorRedactionPolicy(keys=("password",)).to_dict()["keys"], ["password"])
12
13
  self.assertEqual(InspectorReportBuilder.__name__, "InspectorReportBuilder")
14
+ self.assertEqual(InspectorRunIndex({"schema_version": INSPECTOR_RUN_INDEX_SCHEMA_VERSION}).to_dict()["schema_version"], INSPECTOR_RUN_INDEX_SCHEMA_VERSION)
13
15
  self.assertEqual(ReadOnlyPostgresStore.__name__, "ReadOnlyPostgresStore")
14
16
 
15
17