agentledger-runtime 1.3.4__tar.gz → 1.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (382) hide show
  1. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/CHANGELOG.md +40 -1
  2. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/PKG-INFO +30 -22
  3. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/README.md +11 -3
  4. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/README.zh-CN.md +10 -3
  5. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/ADAPTER_CERTIFICATION.md +4 -4
  6. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/ADAPTER_PACKAGING.md +3 -3
  7. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/COMPLETE_CORE_PARITY_CHECKLIST.md +3 -3
  8. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/GETTING_STARTED.md +4 -4
  9. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/IMPLEMENTATION_STATUS.md +4 -4
  10. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/INSPECTOR.md +103 -2
  11. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/LANGUAGE_IMPLEMENTATION_COMPARISON.md +2 -0
  12. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/LANGUAGE_QUICKSTART.md +6 -6
  13. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/ROADMAP.md +75 -5
  14. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/USAGE.md +3 -3
  15. agentledger_runtime-1.4.0/docs/assets/inspector/runs-index.png +0 -0
  16. agentledger_runtime-1.4.0/docs/assets/inspector/single-run-timeline.png +0 -0
  17. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/ADAPTER_CERTIFICATION.md +4 -4
  18. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/ADAPTER_PACKAGING.md +2 -2
  19. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/COMPLETE_CORE_PARITY_CHECKLIST.md +1 -1
  20. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/GETTING_STARTED.md +4 -4
  21. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/IMPLEMENTATION_STATUS.md +4 -4
  22. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/INSPECTOR.md +103 -2
  23. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/LANGUAGE_IMPLEMENTATION_COMPARISON.md +2 -0
  24. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/LANGUAGE_QUICKSTART.md +6 -6
  25. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/README.md +1 -1
  26. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/ROADMAP.md +85 -5
  27. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/USAGE.md +3 -3
  28. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/inspector/README.md +23 -1
  29. agentledger_runtime-1.4.0/examples/inspector/failure_demo.py +113 -0
  30. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/README.md +4 -4
  31. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/cmd/agentledger-go/main.go +3 -3
  32. agentledger_runtime-1.4.0/go/evidence.go +639 -0
  33. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/examples/README.md +3 -3
  34. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/runtime_test.go +9 -0
  35. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-inspector/README.md +15 -2
  36. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-inspector/pyproject.toml +2 -2
  37. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-inspector/src/agentledger_inspector/__init__.py +4 -2
  38. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-inspector/tests/test_import.py +3 -1
  39. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langfuse/README.md +1 -1
  40. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langfuse/pyproject.toml +2 -2
  41. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langfuse/src/agentledger_langfuse/__init__.py +1 -1
  42. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langgraph/README.md +1 -1
  43. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langgraph/pyproject.toml +2 -2
  44. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langgraph/src/agentledger_langgraph/__init__.py +1 -1
  45. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mcp/README.md +1 -1
  46. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mcp/pyproject.toml +2 -2
  47. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mcp/src/agentledger_mcp/__init__.py +1 -1
  48. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mysql/README.md +2 -2
  49. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mysql/pyproject.toml +2 -2
  50. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mysql/src/agentledger_mysql/__init__.py +1 -1
  51. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-otel/README.md +1 -1
  52. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-otel/pyproject.toml +2 -2
  53. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-otel/src/agentledger_otel/__init__.py +1 -1
  54. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-postgres/README.md +2 -2
  55. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-postgres/pyproject.toml +2 -2
  56. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-postgres/src/agentledger_postgres/__init__.py +1 -1
  57. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-s3/README.md +2 -2
  58. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-s3/pyproject.toml +2 -2
  59. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-s3/src/agentledger_s3/__init__.py +1 -1
  60. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-sandbox-docker/README.md +1 -1
  61. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-sandbox-docker/pyproject.toml +2 -2
  62. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-sandbox-docker/src/agentledger_sandbox_docker/__init__.py +1 -1
  63. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/pyproject.toml +19 -19
  64. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/Cargo.lock +1 -1
  65. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/Cargo.toml +1 -1
  66. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/README.md +1 -1
  67. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-framework/Cargo.toml +2 -2
  68. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-langfuse/Cargo.toml +2 -2
  69. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-mcp/Cargo.toml +2 -2
  70. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-mysql/Cargo.toml +2 -2
  71. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-otel/Cargo.toml +2 -2
  72. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-postgres/Cargo.toml +2 -2
  73. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-s3/Cargo.toml +2 -2
  74. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-sandbox-docker/Cargo.toml +2 -2
  75. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/src/lib.rs +613 -0
  76. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/src/main.rs +3 -3
  77. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/scripts/check_adapter_packages.py +4 -4
  78. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/__init__.py +12 -3
  79. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/cli.py +82 -1
  80. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/evidence.py +11 -7
  81. agentledger_runtime-1.4.0/src/agentledger/failure.py +1202 -0
  82. agentledger_runtime-1.4.0/src/agentledger/inspector.py +1812 -0
  83. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/protocol.py +1 -0
  84. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/store.py +6 -0
  85. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/timetravel.py +12 -6
  86. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/tests/test_runtime.py +263 -5
  87. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/README.md +1 -1
  88. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/package.json +1 -1
  89. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langfuse/package.json +2 -2
  90. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langgraph/package.json +2 -2
  91. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mcp/package.json +2 -2
  92. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mysql/package.json +2 -2
  93. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-otel/package.json +2 -2
  94. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-postgres/package.json +2 -2
  95. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-s3/package.json +2 -2
  96. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-sandbox-docker/package.json +2 -2
  97. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/langfuse.js +1 -1
  98. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/langgraph.js +1 -1
  99. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/mcp.js +1 -1
  100. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/mysql.js +1 -1
  101. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/otel.js +1 -1
  102. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/postgres.js +1 -1
  103. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/s3.js +1 -1
  104. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/sandbox-docker.js +1 -1
  105. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/cli.js +3 -3
  106. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/index.d.ts +1 -0
  107. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/index.js +229 -2
  108. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/test/runtime.test.js +8 -2
  109. agentledger_runtime-1.3.4/go/evidence.go +0 -277
  110. agentledger_runtime-1.3.4/src/agentledger/failure.py +0 -190
  111. agentledger_runtime-1.3.4/src/agentledger/inspector.py +0 -952
  112. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/.github/workflows/ci.yml +0 -0
  113. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/.gitignore +0 -0
  114. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/CODE_OF_CONDUCT.md +0 -0
  115. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/CONTRIBUTING.md +0 -0
  116. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/LICENSE +0 -0
  117. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/SECURITY.md +0 -0
  118. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/agentledger.runtime.v1.json +0 -0
  119. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/adversarial_review.v1.json +0 -0
  120. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/boundary_lint.v1.json +0 -0
  121. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/cost_failure_attribution.v1.json +0 -0
  122. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/evidence_consumers.v1.json +0 -0
  123. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/evidence_regression.v1.json +0 -0
  124. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/failure_injection.v1.json +0 -0
  125. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/framework_adapters.v1.json +0 -0
  126. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/local_blob_store.v1.json +0 -0
  127. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/local_persistence.v1.json +0 -0
  128. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/mcp_adapters.v1.json +0 -0
  129. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/media_stream_artifacts.v1.json +0 -0
  130. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/official_adapters.v1.json +0 -0
  131. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/ops_readiness.v1.json +0 -0
  132. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/optional_adapters.v1.json +0 -0
  133. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/otlp_trace_export.v1.json +0 -0
  134. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/policy_approval_sandbox.v1.json +0 -0
  135. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/repro.v1.json +0 -0
  136. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/runtime_baseline.v1.json +0 -0
  137. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/runtime_semantics.v1.json +0 -0
  138. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/scheduler.v1.json +0 -0
  139. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/shadow.v1.json +0 -0
  140. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/simple_api.v1.json +0 -0
  141. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/static_debug_html.v1.json +0 -0
  142. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/storage_schema.v1.json +0 -0
  143. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/time_travel.v1.json +0 -0
  144. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/tool_schema_validation.v1.json +0 -0
  145. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/contracts/conformance/worker_service.v1.json +0 -0
  146. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/ADAPTER_ROADMAP.md +0 -0
  147. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/ADOPTION.md +0 -0
  148. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/ARCHITECTURE.md +0 -0
  149. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/BACKUP_RESTORE.md +0 -0
  150. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/COMPARISONS.md +0 -0
  151. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/DESIGN_AND_IMPLEMENTATION.md +0 -0
  152. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/DISTRIBUTED_WORKERS.md +0 -0
  153. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/EXECUTION_BACKENDS.md +0 -0
  154. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/EXTENSIBILITY.md +0 -0
  155. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/HARNESS_STACK.md +0 -0
  156. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/IMPLEMENTATION_PLAN.md +0 -0
  157. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/LANGUAGE_PARITY_AUDIT.md +0 -0
  158. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/LANGUAGE_PARITY_MATRIX.md +0 -0
  159. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/MAINTAINER_NOTES.md +0 -0
  160. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/MATURITY_MODEL.md +0 -0
  161. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/MULTI_LANGUAGE.md +0 -0
  162. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/MYSQL.md +0 -0
  163. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/OPEN_SOURCE_IMPACT.md +0 -0
  164. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/POLICY_ENGINE.md +0 -0
  165. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/POSTGRES.md +0 -0
  166. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/QUERY_EXAMPLES.md +0 -0
  167. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/README.md +0 -0
  168. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/RELEASE_CHECKLIST.md +0 -0
  169. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/RUNTIME_SPEC.md +0 -0
  170. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/S3_MINIO.md +0 -0
  171. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/SECURITY_ENTERPRISE.md +0 -0
  172. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/STORAGE.md +0 -0
  173. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/VERSIONING.md +0 -0
  174. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/assets/agent-policy-engine-evaluate-detail.svg +0 -0
  175. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/assets/agent-policy-engine-relationship-map.svg +0 -0
  176. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/assets/agentledger-runtime-architecture.svg +0 -0
  177. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/assets/agentledger-social-architecture.svg +0 -0
  178. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/assets/langgraph-agentledger-relationship.svg +0 -0
  179. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/case-studies/legal-agent.md +0 -0
  180. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/ADAPTER_ROADMAP.md +0 -0
  181. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/ADOPTION.md +0 -0
  182. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/ARCHITECTURE.md +0 -0
  183. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/COMPARISONS.md +0 -0
  184. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/DESIGN_AND_IMPLEMENTATION.md +0 -0
  185. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/EXECUTION_BACKENDS.md +0 -0
  186. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/EXTENSIBILITY.md +0 -0
  187. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/HARNESS_STACK.md +0 -0
  188. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/LANGUAGE_PARITY_AUDIT.md +0 -0
  189. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/LANGUAGE_PARITY_MATRIX.md +0 -0
  190. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/MAINTAINER_NOTES.md +0 -0
  191. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/MYSQL.md +0 -0
  192. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/OPEN_SOURCE_IMPACT.md +0 -0
  193. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/POLICY_ENGINE.md +0 -0
  194. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/QUERY_EXAMPLES.md +0 -0
  195. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/RELEASE_CHECKLIST.md +0 -0
  196. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/RUNTIME_SPEC.md +0 -0
  197. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/SECURITY_ENTERPRISE.md +0 -0
  198. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/STORAGE.md +0 -0
  199. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/docs/zh/case-studies/legal-agent.md +0 -0
  200. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/README.md +0 -0
  201. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/autogen/basic_agent.py +0 -0
  202. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/crewai/basic_crew.py +0 -0
  203. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/docs/README.md +0 -0
  204. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/hello_world/hello.py +0 -0
  205. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/inspector/custom_viewer.py +0 -0
  206. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/langchain/basic_runnable.py +0 -0
  207. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/langgraph/basic_graph.py +0 -0
  208. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/lint/boundary_rules.json +0 -0
  209. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/llamaindex/basic_query.py +0 -0
  210. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/mcp_context/basic_context_server.py +0 -0
  211. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/mcp_governance/README.md +0 -0
  212. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/mcp_governance/demo.py +0 -0
  213. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/mcp_tool/basic_tool.py +0 -0
  214. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/media_stream/basic_media_stream.py +0 -0
  215. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/media_stream/managed_tool.py +0 -0
  216. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/openai_agents/basic_agent.py +0 -0
  217. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/policy/local.policy.yaml +0 -0
  218. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/sandbox/command_tool.py +0 -0
  219. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/sandbox/sandbox.yaml +0 -0
  220. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/semantic_kernel/basic_kernel.py +0 -0
  221. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/side_effect_idempotency/README.md +0 -0
  222. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/three_minute_demo/README.md +0 -0
  223. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/three_minute_demo/demo.py +0 -0
  224. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/tool_catalog/basic_catalog.py +0 -0
  225. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/transient_retry/README.md +0 -0
  226. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/examples/travel_assistant/demo.py +0 -0
  227. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/framework/framework.go +0 -0
  228. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/langfuse/langfuse.go +0 -0
  229. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/mcp/mcp.go +0 -0
  230. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/mysql/mysql.go +0 -0
  231. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/otel/otel.go +0 -0
  232. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/postgres/postgres.go +0 -0
  233. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/s3/s3.go +0 -0
  234. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters/sandbox/docker/docker.go +0 -0
  235. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/adapters.go +0 -0
  236. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/blobstore.go +0 -0
  237. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/consumers.go +0 -0
  238. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/eval.go +0 -0
  239. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/examples/mcp_governance/main.go +0 -0
  240. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/examples/quickstart/main.go +0 -0
  241. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/examples/three_minute_demo/main.go +0 -0
  242. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/examples/travel_assistant/main.go +0 -0
  243. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/failure_injection.go +0 -0
  244. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/go.mod +0 -0
  245. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/lint.go +0 -0
  246. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/mcp.go +0 -0
  247. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/official_adapters.go +0 -0
  248. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/ops.go +0 -0
  249. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/optional_adapters.go +0 -0
  250. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/replay.go +0 -0
  251. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/repro.go +0 -0
  252. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/review.go +0 -0
  253. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/runtime.go +0 -0
  254. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/scheduler.go +0 -0
  255. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/schema.go +0 -0
  256. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/shadow.go +0 -0
  257. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/simple.go +0 -0
  258. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/store.go +0 -0
  259. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/timetravel.go +0 -0
  260. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/tools.go +0 -0
  261. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/travel_assistant +0 -0
  262. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/types.go +0 -0
  263. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/go/worker.go +0 -0
  264. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/migrations/postgres/0001_initial.sql +0 -0
  265. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/migrations/sqlite/0001_initial.sql +0 -0
  266. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langfuse/tests/test_import.py +0 -0
  267. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langgraph/examples/README.md +0 -0
  268. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-langgraph/tests/test_import.py +0 -0
  269. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mcp/examples/README.md +0 -0
  270. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mcp/tests/test_import.py +0 -0
  271. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mysql/examples/README.md +0 -0
  272. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-mysql/tests/test_import.py +0 -0
  273. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-otel/examples/README.md +0 -0
  274. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-otel/tests/test_import.py +0 -0
  275. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-postgres/examples/README.md +0 -0
  276. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-postgres/tests/test_import.py +0 -0
  277. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-s3/examples/README.md +0 -0
  278. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-s3/tests/test_import.py +0 -0
  279. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-sandbox-docker/examples/README.md +0 -0
  280. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/packages/agentledger-sandbox-docker/tests/test_import.py +0 -0
  281. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-framework/README.md +0 -0
  282. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-framework/src/lib.rs +0 -0
  283. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-langfuse/README.md +0 -0
  284. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-langfuse/src/lib.rs +0 -0
  285. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-mcp/README.md +0 -0
  286. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-mcp/src/lib.rs +0 -0
  287. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-mysql/README.md +0 -0
  288. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-mysql/src/lib.rs +0 -0
  289. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-otel/README.md +0 -0
  290. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-otel/src/lib.rs +0 -0
  291. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-postgres/README.md +0 -0
  292. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-postgres/src/lib.rs +0 -0
  293. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-s3/README.md +0 -0
  294. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-s3/src/lib.rs +0 -0
  295. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-sandbox-docker/README.md +0 -0
  296. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/crates/agentledger-sandbox-docker/src/lib.rs +0 -0
  297. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/examples/README.md +0 -0
  298. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/examples/mcp_governance.rs +0 -0
  299. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/examples/quickstart.rs +0 -0
  300. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/examples/three_minute_demo.rs +0 -0
  301. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/rust/examples/travel_assistant.rs +0 -0
  302. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/scripts/audit_python_parity.py +0 -0
  303. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/scripts/check_complete_core_parity.py +0 -0
  304. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/scripts/check_language_parity.py +0 -0
  305. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/__main__.py +0 -0
  306. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/adapter_certification.py +0 -0
  307. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/adapters.py +0 -0
  308. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/adapters_frameworks.py +0 -0
  309. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/adapters_langgraph.py +0 -0
  310. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/adapters_mcp.py +0 -0
  311. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/approval.py +0 -0
  312. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/backup.py +0 -0
  313. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/blobstore.py +0 -0
  314. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/blobstore_s3.py +0 -0
  315. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/conformance.py +0 -0
  316. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/context.py +0 -0
  317. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/contract.py +0 -0
  318. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/cost.py +0 -0
  319. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/diff.py +0 -0
  320. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/eval.py +0 -0
  321. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/examples.py +0 -0
  322. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/failure_injection.py +0 -0
  323. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/ids.py +0 -0
  324. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/jsonutil.py +0 -0
  325. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/lint.py +0 -0
  326. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/media.py +0 -0
  327. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/media_tools.py +0 -0
  328. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/policy.py +0 -0
  329. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/replay.py +0 -0
  330. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/repro.py +0 -0
  331. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/retention.py +0 -0
  332. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/review.py +0 -0
  333. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/runtime.py +0 -0
  334. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/sandbox.py +0 -0
  335. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/scheduler.py +0 -0
  336. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/shadow.py +0 -0
  337. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/simple.py +0 -0
  338. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/storage_mysql.py +0 -0
  339. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/storage_postgres.py +0 -0
  340. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/storage_schema.py +0 -0
  341. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/tools.py +0 -0
  342. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/trace.py +0 -0
  343. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/src/agentledger/worker.py +0 -0
  344. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/tests/test_postgres_integration.py +0 -0
  345. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/tests/test_s3_integration.py +0 -0
  346. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/examples/README.md +0 -0
  347. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/examples/mcp_governance/mcp_governance.js +0 -0
  348. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/examples/quickstart/quickstart.js +0 -0
  349. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/examples/three_minute_demo/three_minute_demo.js +0 -0
  350. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/examples/travel_assistant/travel_assistant.js +0 -0
  351. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langfuse/README.md +0 -0
  352. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langfuse/src/index.d.ts +0 -0
  353. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langfuse/src/index.js +0 -0
  354. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langgraph/README.md +0 -0
  355. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langgraph/src/index.d.ts +0 -0
  356. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-langgraph/src/index.js +0 -0
  357. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mcp/README.md +0 -0
  358. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mcp/src/index.d.ts +0 -0
  359. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mcp/src/index.js +0 -0
  360. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mysql/README.md +0 -0
  361. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mysql/src/index.d.ts +0 -0
  362. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-mysql/src/index.js +0 -0
  363. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-otel/README.md +0 -0
  364. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-otel/src/index.d.ts +0 -0
  365. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-otel/src/index.js +0 -0
  366. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-postgres/README.md +0 -0
  367. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-postgres/src/index.d.ts +0 -0
  368. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-postgres/src/index.js +0 -0
  369. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-s3/README.md +0 -0
  370. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-s3/src/index.d.ts +0 -0
  371. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-s3/src/index.js +0 -0
  372. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-sandbox-docker/README.md +0 -0
  373. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-sandbox-docker/src/index.d.ts +0 -0
  374. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/packages/agentledger-sandbox-docker/src/index.js +0 -0
  375. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/langfuse.d.ts +0 -0
  376. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/langgraph.d.ts +0 -0
  377. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/mcp.d.ts +0 -0
  378. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/mysql.d.ts +0 -0
  379. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/otel.d.ts +0 -0
  380. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/postgres.d.ts +0 -0
  381. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/s3.d.ts +0 -0
  382. {agentledger_runtime-1.3.4 → agentledger_runtime-1.4.0}/typescript/src/adapters/sandbox-docker.d.ts +0 -0
@@ -6,7 +6,46 @@ This project follows semantic versioning for the stable runtime-core contract. O
6
6
 
7
7
  ## Unreleased
8
8
 
9
- No unreleased changes yet.
9
+ No unreleased changes.
10
+
11
+ ## 1.4.0 - 2026-06-13
12
+
13
+ ### Added
14
+
15
+ - Added the Agent Failure Lifecycle baseline across Python, Go, TypeScript, and Rust runtime-core packages.
16
+ - Added `agentledger.failure.envelope.v1`, a normalized failure read model for terminal failures, recoverable retries, approval waits, blocked tools, and unknown side-effect states.
17
+ - Added `agentledger.failure.lifecycle.v1`, `agentledger.failure.causal_graph.v1`, `agentledger.failure.replay_plan.v1`, `agentledger.failure.regression.v1`, `agentledger.failure.alerts.v1`, and `agentledger.failure.export.v1`.
18
+ - Added failure lifecycle, causal graph, replay plan, local alert records, regression comparison, and external export mappings for OpenTelemetry, Langfuse, LangSmith, and Temporal-style consumers.
19
+ - Added `agentledger failure export` and `agentledger failure regress` CLI commands.
20
+ - Added Inspector panels for Failure Lifecycle, Failure Replay Plan, Failure Alerts, and Failure Causal Graph.
21
+
22
+ ### Tested
23
+
24
+ - Added non-happy-path tests for missing event payloads, retry-scheduled steps, pending approvals, pending tool verification, blocked tools, terminal failure reports, Inspector HTML rendering, unsafe replay planning, local failure alerts, export mappings, and failure regression classification.
25
+ - Added matching failure lifecycle assertions to Go, TypeScript, and Rust runtime-core tests.
26
+
27
+ ### Clarified
28
+
29
+ - This is a runtime-core feature release, not an Inspector-only patch. Python, Go, TypeScript, and Rust share the 1.4.0 failure lifecycle contract.
30
+ - Inspector remains a language-neutral read-only companion viewer distributed through Python/PyPI.
31
+ - Failure export mappings are local JSON contracts. They do not send data to external SaaS systems or replace incident management, eval, or observability platforms.
32
+
33
+ ## 1.3.5 - 2026-06-07
34
+
35
+ ### Added
36
+
37
+ - 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.
38
+ - Added `agentledger inspector runs` and the `agentledger.inspector.runs.v1` read model for a read-only run index over SQLite/Postgres/MySQL runtime metadata.
39
+
40
+ ### Fixed
41
+
42
+ - Improved packaged Inspector/static HTML layout so large JSON/details payloads and long ids do not expand tables or break the page width.
43
+ - 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.
44
+ - 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.
45
+
46
+ ### Clarified
47
+
48
+ - This is an Inspector companion patch release. Inspector is language-neutral, but the current packaged implementation is distributed through the Python/PyPI CLI. The release does not change the stable runtime-core contract or require Go, TypeScript, or Rust runtime-core package changes.
10
49
 
11
50
  ## 1.3.4
12
51
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentledger-runtime
3
- Version: 1.3.4
3
+ Version: 1.4.0
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,33 +21,33 @@ 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.4; extra == 'all'
25
- Requires-Dist: agentledger-langfuse<2,>=1.3; extra == 'all'
26
- Requires-Dist: agentledger-langgraph<2,>=1.3; extra == 'all'
27
- Requires-Dist: agentledger-mcp<2,>=1.3; extra == 'all'
28
- Requires-Dist: agentledger-mysql<2,>=1.3; extra == 'all'
29
- Requires-Dist: agentledger-otel<2,>=1.3; extra == 'all'
30
- Requires-Dist: agentledger-postgres<2,>=1.3; extra == 'all'
31
- Requires-Dist: agentledger-s3<2,>=1.3; extra == 'all'
32
- Requires-Dist: agentledger-sandbox-docker<2,>=1.3; extra == 'all'
24
+ Requires-Dist: agentledger-inspector<2,>=1.4.0; extra == 'all'
25
+ Requires-Dist: agentledger-langfuse<2,>=1.4; extra == 'all'
26
+ Requires-Dist: agentledger-langgraph<2,>=1.4; extra == 'all'
27
+ Requires-Dist: agentledger-mcp<2,>=1.4; extra == 'all'
28
+ Requires-Dist: agentledger-mysql<2,>=1.4; extra == 'all'
29
+ Requires-Dist: agentledger-otel<2,>=1.4; extra == 'all'
30
+ Requires-Dist: agentledger-postgres<2,>=1.4; extra == 'all'
31
+ Requires-Dist: agentledger-s3<2,>=1.4; extra == 'all'
32
+ Requires-Dist: agentledger-sandbox-docker<2,>=1.4; extra == 'all'
33
33
  Provides-Extra: docker
34
- Requires-Dist: agentledger-sandbox-docker<2,>=1.3; extra == 'docker'
34
+ Requires-Dist: agentledger-sandbox-docker<2,>=1.4; extra == 'docker'
35
35
  Provides-Extra: inspector
36
- Requires-Dist: agentledger-inspector<2,>=1.3.4; extra == 'inspector'
36
+ Requires-Dist: agentledger-inspector<2,>=1.4.0; extra == 'inspector'
37
37
  Provides-Extra: langfuse
38
- Requires-Dist: agentledger-langfuse<2,>=1.3; extra == 'langfuse'
38
+ Requires-Dist: agentledger-langfuse<2,>=1.4; extra == 'langfuse'
39
39
  Provides-Extra: langgraph
40
- Requires-Dist: agentledger-langgraph<2,>=1.3; extra == 'langgraph'
40
+ Requires-Dist: agentledger-langgraph<2,>=1.4; extra == 'langgraph'
41
41
  Provides-Extra: mcp
42
- Requires-Dist: agentledger-mcp<2,>=1.3; extra == 'mcp'
42
+ Requires-Dist: agentledger-mcp<2,>=1.4; extra == 'mcp'
43
43
  Provides-Extra: mysql
44
- Requires-Dist: agentledger-mysql<2,>=1.3; extra == 'mysql'
44
+ Requires-Dist: agentledger-mysql<2,>=1.4; extra == 'mysql'
45
45
  Provides-Extra: otel
46
- Requires-Dist: agentledger-otel<2,>=1.3; extra == 'otel'
46
+ Requires-Dist: agentledger-otel<2,>=1.4; extra == 'otel'
47
47
  Provides-Extra: postgres
48
- Requires-Dist: agentledger-postgres<2,>=1.3; extra == 'postgres'
48
+ Requires-Dist: agentledger-postgres<2,>=1.4; extra == 'postgres'
49
49
  Provides-Extra: s3
50
- Requires-Dist: agentledger-s3<2,>=1.3; extra == 's3'
50
+ Requires-Dist: agentledger-s3<2,>=1.4; extra == 's3'
51
51
  Description-Content-Type: text/markdown
52
52
 
53
53
  # AgentLedger
@@ -55,7 +55,7 @@ Description-Content-Type: text/markdown
55
55
  [English](README.md) | [中文](README.zh-CN.md)
56
56
 
57
57
  ![Python 3.11+](https://img.shields.io/badge/Python-3.11%2B-3776AB?logo=python&logoColor=white)
58
- ![Version 1.3.x stable](https://img.shields.io/badge/Version-1.3.x--stable-111827)
58
+ ![Version 1.4.x stable](https://img.shields.io/badge/Version-1.4.x--stable-111827)
59
59
  ![License Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-0f766e)
60
60
  ![Runtime Durable](https://img.shields.io/badge/Runtime-durable%20execution-1f6feb)
61
61
  ![Storage SQLite/Postgres/MySQL](https://img.shields.io/badge/Storage-SQLite%20%7C%20Postgres%20%7C%20MySQL-b45309)
@@ -64,7 +64,7 @@ Description-Content-Type: text/markdown
64
64
 
65
65
  Your agent called a tool. Did it happen? Can you retry safely? Can you prove it later?
66
66
 
67
- AgentLedger `1.3.x` is a runtime reliability layer for Agent Harness stacks. It does not try to teach agents how to reason or replace the surrounding harness ecosystem; it makes agent runs durable, auditable, replayable, policy-governed, and recoverable when workers crash, tools fail, or prompts change.
67
+ AgentLedger `1.4.x` is a runtime reliability layer for Agent Harness stacks. It does not try to teach agents how to reason or replace the surrounding harness ecosystem; it makes agent runs durable, auditable, replayable, policy-governed, and recoverable when workers crash, tools fail, or prompts change.
68
68
 
69
69
  Most agent frameworks focus on planning, reasoning, and workflow logic. AgentLedger sits underneath or beside LangChain, LangGraph, CrewAI, AutoGen, OpenAI Agents SDK, LlamaIndex, Semantic Kernel, or custom agents to provide runtime guarantees around state, tools, evidence, replay, and recovery.
70
70
 
@@ -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.4; 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.4.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 four language runtimes share the same runtime-core failure semantics: failed steps, retry scheduling, cancellation, lease recovery, Tool Ledger unknown-state handling, cost/failure attribution, evidence, replay, normalized failure envelopes, failure lifecycle, causal graph, replay plan, regression report, alerts, and failure export mappings. The current runtime-core release is 1.4.0 across Python, Go, TypeScript, and Rust; Inspector remains a language-neutral companion viewer distributed through Python/PyPI. 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
 
@@ -3,7 +3,7 @@
3
3
  [English](README.md) | [中文](README.zh-CN.md)
4
4
 
5
5
  ![Python 3.11+](https://img.shields.io/badge/Python-3.11%2B-3776AB?logo=python&logoColor=white)
6
- ![Version 1.3.x stable](https://img.shields.io/badge/Version-1.3.x--stable-111827)
6
+ ![Version 1.4.x stable](https://img.shields.io/badge/Version-1.4.x--stable-111827)
7
7
  ![License Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-0f766e)
8
8
  ![Runtime Durable](https://img.shields.io/badge/Runtime-durable%20execution-1f6feb)
9
9
  ![Storage SQLite/Postgres/MySQL](https://img.shields.io/badge/Storage-SQLite%20%7C%20Postgres%20%7C%20MySQL-b45309)
@@ -12,7 +12,7 @@
12
12
 
13
13
  Your agent called a tool. Did it happen? Can you retry safely? Can you prove it later?
14
14
 
15
- AgentLedger `1.3.x` is a runtime reliability layer for Agent Harness stacks. It does not try to teach agents how to reason or replace the surrounding harness ecosystem; it makes agent runs durable, auditable, replayable, policy-governed, and recoverable when workers crash, tools fail, or prompts change.
15
+ AgentLedger `1.4.x` is a runtime reliability layer for Agent Harness stacks. It does not try to teach agents how to reason or replace the surrounding harness ecosystem; it makes agent runs durable, auditable, replayable, policy-governed, and recoverable when workers crash, tools fail, or prompts change.
16
16
 
17
17
  Most agent frameworks focus on planning, reasoning, and workflow logic. AgentLedger sits underneath or beside LangChain, LangGraph, CrewAI, AutoGen, OpenAI Agents SDK, LlamaIndex, Semantic Kernel, or custom agents to provide runtime guarantees around state, tools, evidence, replay, and recovery.
18
18
 
@@ -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.4; 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.4.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 four language runtimes share the same runtime-core failure semantics: failed steps, retry scheduling, cancellation, lease recovery, Tool Ledger unknown-state handling, cost/failure attribution, evidence, replay, normalized failure envelopes, failure lifecycle, causal graph, replay plan, regression report, alerts, and failure export mappings. The current runtime-core release is 1.4.0 across Python, Go, TypeScript, and Rust; Inspector remains a language-neutral companion viewer distributed through Python/PyPI. 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
 
@@ -3,7 +3,7 @@
3
3
  [English](README.md) | [中文](README.zh-CN.md)
4
4
 
5
5
  ![Python 3.11+](https://img.shields.io/badge/Python-3.11%2B-3776AB?logo=python&logoColor=white)
6
- ![Version 1.3.x stable](https://img.shields.io/badge/Version-1.3.x--stable-111827)
6
+ ![Version 1.4.x stable](https://img.shields.io/badge/Version-1.4.x--stable-111827)
7
7
  ![License Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-0f766e)
8
8
  ![Runtime Durable](https://img.shields.io/badge/Runtime-durable%20execution-1f6feb)
9
9
  ![Storage SQLite/Postgres/MySQL](https://img.shields.io/badge/Storage-SQLite%20%7C%20Postgres%20%7C%20MySQL-b45309)
@@ -12,7 +12,7 @@
12
12
 
13
13
  你的 Agent 调用了一个工具。它真的执行了吗?可以安全重试吗?之后能证明发生过什么吗?
14
14
 
15
- AgentLedger `1.3.x` 是面向 Agent Harness stack 的 runtime reliability layer。它不负责让 Agent 更会“思考”,也不替代完整 Harness 生态;它负责让 Agent run 在 worker 崩溃、工具失败、prompt 变更和长任务恢复时,仍然具备持久化、可审计、可重放、可治理和可恢复能力。
15
+ AgentLedger `1.4.x` 是面向 Agent Harness stack 的 runtime reliability layer。它不负责让 Agent 更会“思考”,也不替代完整 Harness 生态;它负责让 Agent run 在 worker 崩溃、工具失败、prompt 变更和长任务恢复时,仍然具备持久化、可审计、可重放、可治理和可恢复能力。
16
16
 
17
17
  大多数 Agent 框架关注 planning、reasoning 和 workflow logic。AgentLedger 放在 LangChain、LangGraph、CrewAI、AutoGen、OpenAI Agents SDK、LlamaIndex、Semantic Kernel 或自定义 Agent 的下方或旁边,提供 state、tool、evidence、replay、recovery 相关的 runtime guarantees。
18
18
 
@@ -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.4.x 是 stable runtime-core line,Python 是 reference implementation,Go、TypeScript、Rust 已由共享 runtime-core parity gate 覆盖。四种语言 runtime 共享同一组 runtime-core failure semantics:failed step、retry scheduling、cancellation、lease recovery、Tool Ledger unknown-state handling、cost/failure attribution、evidence、replay、normalized failure envelope、failure lifecycle、causal graph、replay plan、regression report、alerts 和 failure export mappings。当前 runtime-core release 是 1.4.0,并覆盖 Python、Go、TypeScript、Rust;Inspector 仍是 language-neutral companion viewer,通过 Python/PyPI 分发。适合本地使用、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
 
@@ -212,10 +212,10 @@ This does not make an adapter production-ready by itself. It gives users a concr
212
212
  AgentLedger can generate a machine-readable starting bundle for official adapter profiles:
213
213
 
214
214
  ```bash
215
- PYTHONPATH=src python3 -m agentledger adapter certify --kind postgres --adapter-version 1.3.1
216
- PYTHONPATH=src python3 -m agentledger adapter certify --kind mysql --adapter-version 1.3.1 --out ./mysql-certification.json
217
- PYTHONPATH=src python3 -m agentledger adapter certify --kind s3 --adapter-version 1.3.1 --out ./s3-certification.json
218
- PYTHONPATH=src python3 -m agentledger adapter certify --kind langgraph --adapter-version 1.3.1 --package-name agentledger-langgraph
215
+ PYTHONPATH=src python3 -m agentledger adapter certify --kind postgres --adapter-version 1.4.0
216
+ PYTHONPATH=src python3 -m agentledger adapter certify --kind mysql --adapter-version 1.4.0 --out ./mysql-certification.json
217
+ PYTHONPATH=src python3 -m agentledger adapter certify --kind s3 --adapter-version 1.4.0 --out ./s3-certification.json
218
+ PYTHONPATH=src python3 -m agentledger adapter certify --kind langgraph --adapter-version 1.4.0 --package-name agentledger-langgraph
219
219
  ```
220
220
 
221
221
  Supported built-in profiles:
@@ -135,7 +135,7 @@ Each adapter package should provide:
135
135
 
136
136
  ## First Adapter Packages
137
137
 
138
- | Package | Owns in current `1.3.x` release train | Dependency status |
138
+ | Package | Owns in current `1.4.x` release train | Dependency status |
139
139
  | --- | --- | --- |
140
140
  | `agentledger-postgres` | `PostgresStore`, `PostgresStoreConfig`, migration/conformance helpers | Requires `psycopg[binary]`; production rollout still needs real-service drills. |
141
141
  | `agentledger-mysql` | `MySQLStore`, `MySQLStoreConfig`, migration/conformance helpers | Requires `pymysql`; production rollout still needs real-service drills. |
@@ -240,8 +240,8 @@ The packaging release is expected to pass:
240
240
 
241
241
  ```bash
242
242
  PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python3 -m unittest discover -s tests -q
243
- PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python3 -m agentledger adapter certify --kind postgres --adapter-version 1.3.1
244
- PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python3 -m agentledger adapter certify --kind mysql --adapter-version 1.3.1
243
+ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python3 -m agentledger adapter certify --kind postgres --adapter-version 1.4.0
244
+ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python3 -m agentledger adapter certify --kind mysql --adapter-version 1.4.0
245
245
  PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=src python3 scripts/check_adapter_packages.py
246
246
  go test ./...
247
247
  cd typescript && npm test
@@ -55,8 +55,8 @@ Excluded or not applicable:
55
55
  | CLI baseline | `--help`, `doctor`, `version`, `quickstart`, `conformance`, `contract validate`, `contract export` | `agentledger` CLI | `agentledger-go` | `agentledger-ts` | `agentledger-rust` | `scripts/check_complete_core_parity.py` | done |
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
- | 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.4` 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 |
58
+ | Package metadata | Installable package metadata in the current 1.4 release family | PyPI metadata `1.4.x` | `go.mod` tag `go/v1.4.0` for current baseline | npm package `1.4.0` for current baseline | `Cargo.toml` `1.4.0` 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.4.0` release smoke after publish | `go/v1.4.0` clean external `go get` smoke after tag | npm `agentledger-runtime@1.4.0` release smoke after publish | crates.io `agentledger-runtime==1.4.0` 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.4` 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.4`; 1.4.0 is a four-language runtime-core feature release for Agent Failure Lifecycle.
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
 
@@ -9,7 +9,7 @@ This is the shortest path from install to a working AgentLedger run. If you are
9
9
  | Language | Install / use | Quickstart | Examples | Package / command |
10
10
  |---|---|---|---|---|
11
11
  | Python | `pipx install agentledger-runtime` or `pip install agentledger-runtime` | `agentledger quickstart` | `../examples/README.md` | PyPI package `agentledger-runtime`, CLI `agentledger` |
12
- | Go | `go get github.com/yaogdu/AgentLedger/go@v1.3.1` inside a Go module | `cd go && go run ./examples/quickstart` from this repo | `../go/examples/README.md` | Go module `github.com/yaogdu/AgentLedger/go`, CLI package `.../go/cmd/agentledger-go` |
12
+ | Go | `go get github.com/yaogdu/AgentLedger/go@v1.4.0` inside a Go module | `cd go && go run ./examples/quickstart` from this repo | `../go/examples/README.md` | Go module `github.com/yaogdu/AgentLedger/go`, CLI package `.../go/cmd/agentledger-go` |
13
13
  | TypeScript | `npm install agentledger-runtime` | `node typescript/examples/quickstart/quickstart.js` | `../typescript/examples/README.md` | npm package `agentledger-runtime`, CLI `agentledger-ts` |
14
14
  | Rust | crates.io package: `agentledger-runtime` | `cargo add agentledger-runtime` 或 `cd rust && cargo run --example quickstart` | `../rust/examples/README.md` | crate `agentledger-runtime`, binary `agentledger-rust` |
15
15
 
@@ -36,17 +36,17 @@ Use the library inside a Go module:
36
36
 
37
37
  ```bash
38
38
  go mod init your-module-name # only if your project does not already have go.mod
39
- go get github.com/yaogdu/AgentLedger/go@v1.3.1
39
+ go get github.com/yaogdu/AgentLedger/go@v1.4.0
40
40
  ```
41
41
 
42
42
  Install the optional CLI:
43
43
 
44
44
  ```bash
45
- go install github.com/yaogdu/AgentLedger/go/cmd/agentledger-go@v1.3.1
45
+ go install github.com/yaogdu/AgentLedger/go/cmd/agentledger-go@v1.4.0
46
46
  agentledger-go --help
47
47
  ```
48
48
 
49
- Important: `go get` must run inside a Go module. `go install github.com/yaogdu/AgentLedger/go@v1.3.1` is not valid because that path is a library, not `package main`. Use `/cmd/agentledger-go` for the CLI.
49
+ Important: `go get` must run inside a Go module. `go install github.com/yaogdu/AgentLedger/go@v1.4.0` is not valid because that path is a library, not `package main`. Use `/cmd/agentledger-go` for the CLI.
50
50
 
51
51
  ### TypeScript
52
52
 
@@ -6,7 +6,7 @@ This document tracks what is implemented in runtime-core, what remains planned f
6
6
 
7
7
  ## Current Baseline
8
8
 
9
- AgentLedger 1.3.x is a stable runtime-core line with Python as the reference implementation and Go/TypeScript/Rust covered by shared runtime-core parity gates. The 1.3 line keeps the stable runtime-core contract and adds a language-neutral, read-only Inspector companion path for evidence and runtime metadata inspection. It is suitable for:
9
+ AgentLedger 1.4.x is a stable runtime-core line with Python as the reference implementation and Go/TypeScript/Rust covered by shared runtime-core parity gates. The 1.4 line keeps the stable runtime-core contract, adds a language-neutral read-only Inspector companion path, and completes the Agent Failure Lifecycle baseline across all four runtime packages. It is suitable for:
10
10
 
11
11
  - local use
12
12
  - runtime design review
@@ -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. 1.3.4 fixes Inspector package release metadata alignment 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.
18
+ Release-scope note: 1.3.x added and hardened 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 static HTML debug reports. 1.4.0 adds the four-language Agent Failure Lifecycle baseline: normalized failure envelopes, lifecycle stages, causal graph, replay plan, regression report, local alert records, and portable failure export mappings. 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
 
@@ -23,7 +23,7 @@ Scope rule: runtime-core should stay thin but indispensable. It should own only
23
23
 
24
24
  ## Current Completion Boundary
25
25
 
26
- For the current 1.3.x goal, "stable runtime-core plus read-only evidence consumers" means the Python reference runtime is usable, documented, tested, release-gated, and contract-frozen, with Go/TypeScript/Rust covered by runtime-core parity gates. It also means first-party adapter boundaries are packaged or importable in each ecosystem where they fit, and the Inspector can consume exported evidence across languages. It does not mean every optional production adapter or external eval integration is production-hardened in every language.
26
+ For the current 1.4.x goal, "stable runtime-core plus failure lifecycle and read-only evidence consumers" means the Python reference runtime is usable, documented, tested, release-gated, and contract-frozen, with Go/TypeScript/Rust covered by runtime-core parity gates. It also means first-party adapter boundaries are packaged or importable in each ecosystem where they fit, and the Inspector can consume exported evidence across languages. It does not mean every optional production adapter or external eval integration is production-hardened in every language.
27
27
 
28
28
  Included in this boundary:
29
29
 
@@ -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,11 +30,33 @@ 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.
29
37
 
38
+ ## Using Inspector With Non-Python Runtimes
39
+
40
+ Inspector is language-neutral, but the current official distribution is the Python/PyPI companion package and the `agentledger inspector ...` CLI. A Go, TypeScript, or Rust application does not need to embed Python or install PyPI packages in its runtime process. It only needs to write AgentLedger-compatible metadata or export an AgentLedger evidence bundle.
41
+
42
+ The normal non-Python workflow is:
43
+
44
+ 1. Run the agent with the native Go, TypeScript, or Rust runtime.
45
+ 2. Export evidence or point Inspector at the runtime database/blob root.
46
+ 3. Install `agentledger-inspector` on a developer, CI, support, or internal debugging machine.
47
+ 4. Generate static HTML or JSON from the shared read model.
48
+
49
+ Example:
50
+
51
+ ```bash
52
+ pip install agentledger-inspector
53
+ agentledger inspector evidence ./evidence/<run_id> --html ./inspector.html
54
+ ```
55
+
56
+ Without the Python/PyPI package, the non-Python runtimes still support the shared runtime-core failure semantics and can export compatible evidence. What they do not currently ship is an equivalent native Inspector viewer command that renders the same official run index, single-run HTML, and normalized failure envelopes without installing the companion Inspector tool. This is a distribution/viewer gap, not a runtime failure-support gap.
57
+
58
+ Standalone Inspector distributions are on the roadmap so non-Python users can consume the official viewer without installing through PyPI. Candidate forms include a Docker image, a single executable, a static web viewer over exported evidence JSON, and a Node/npm CLI or viewer package.
59
+
30
60
  ## Data Sources
31
61
 
32
62
  Inspector supports two read paths.
@@ -35,6 +65,7 @@ Inspector supports two read paths.
35
65
  |---|---|---|
36
66
  | Exported evidence | `agentledger inspector evidence <path>` | Portable artifact from any language implementation or CI job. |
37
67
  | Local SQLite runtime | `agentledger inspector run <run_id> --root .agentledger` | Local development and small deployments. |
68
+ | Run index | `agentledger inspector runs --root .agentledger` | Read-only list of recent runs before opening one run. |
38
69
  | Direct SQLite path | `agentledger inspector run <run_id> --backend sqlite --db state.db --blob-root blobs` | Custom runtime directory layouts. |
39
70
  | Postgres metadata | `agentledger inspector run <run_id> --backend postgres --dsn ... --schema ... --blob-root ...` | Server-side StateStore deployments. |
40
71
  | MySQL metadata | `agentledger inspector run <run_id> --backend mysql --dsn ... --database ... --blob-root ...` | MySQL-backed StateStore deployments. |
@@ -56,6 +87,8 @@ This path reads AgentLedger runtime metadata directly. SQLite is opened in read-
56
87
  ```bash
57
88
  agentledger inspector run <run_id> --root .agentledger --html ./inspector.html
58
89
  agentledger inspector run <run_id> --backend sqlite --db .agentledger/state.db --blob-root .agentledger/blobs --out ./inspector.json
90
+ agentledger inspector runs --root .agentledger --html ./runs.html
91
+ agentledger inspector runs --root .agentledger --out ./runs.json
59
92
  ```
60
93
 
61
94
  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 +96,16 @@ Postgres and MySQL are also supported through the existing StateStore adapter bo
63
96
  ```bash
64
97
  agentledger inspector run <run_id> --backend postgres --dsn "$AGENTLEDGER_POSTGRES_DSN" --schema agentledger --blob-root .agentledger/blobs --html ./inspector.html
65
98
  agentledger inspector run <run_id> --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN" --database agentledger --blob-root .agentledger/blobs --html ./inspector.html
99
+ agentledger inspector runs --backend postgres --dsn "$AGENTLEDGER_POSTGRES_DSN" --schema agentledger --html ./runs.html
100
+ agentledger inspector runs --backend mysql --dsn "$AGENTLEDGER_MYSQL_DSN" --database agentledger --html ./runs.html
66
101
  ```
67
102
 
68
103
  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
104
 
70
105
  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
106
 
107
+ 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 `-`.
108
+
72
109
  ## Output
73
110
 
74
111
  `--out` writes the stable JSON read model:
@@ -78,6 +115,8 @@ The `--blob-root` argument currently points at a local blob directory containing
78
115
  "schema_version": "agentledger.inspector.v1",
79
116
  "run": {},
80
117
  "summary": {},
118
+ "agent_run_id": null,
119
+ "event_stream": [],
81
120
  "timeline": [],
82
121
  "tool_ledger": [],
83
122
  "approvals": [],
@@ -90,6 +129,52 @@ The `--blob-root` argument currently points at a local blob directory containing
90
129
 
91
130
  `--html` writes a static HTML report for local or internal debugging. The file is self-contained and can be opened without a server.
92
131
 
132
+ `agentledger inspector runs --out` writes a run-index read model:
133
+
134
+ ```json
135
+ {
136
+ "schema_version": "agentledger.inspector.runs.v1",
137
+ "summary": {},
138
+ "runs": []
139
+ }
140
+ ```
141
+
142
+ `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.
143
+
144
+ ## Event Stream
145
+
146
+ `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:
147
+
148
+ - `runtime_run_id`: the AgentLedger runtime run id
149
+ - `agent_run_id`: an agent/application run id when one is present in event metadata or payloads
150
+ - `seq`: the original AgentLedger event sequence
151
+ - `type`, `step_id`, and `summary`: compact event context
152
+ - `related_links`: local links back to detailed timeline, step, tool, approval, policy, or artifact records
153
+
154
+ 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.
155
+
156
+ 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.
157
+
158
+ ## Failure Lifecycle
159
+
160
+ `1.4.0` adds the Agent Failure Lifecycle baseline consumed by `agentledger failure report`, `agentledger failure export`, Inspector JSON, and Inspector static HTML.
161
+
162
+ The runtime still records raw events, step rows, Tool Ledger rows, approval rows, cost records, and evidence bundles. Failure lifecycle output is a read model over those records so business code and support tooling do not need to infer failure semantics from undocumented table details.
163
+
164
+ The stable failure read model includes:
165
+
166
+ - `agentledger.failure.envelope.v1`: normalized category, status, severity, recoverability, retryability, owner, causal refs, and evidence refs
167
+ - `agentledger.failure.lifecycle.v1`: detected, classified, recovery scheduled, recovered, terminal, and regressed stages
168
+ - `agentledger.failure.causal_graph.v1`: run, step, event, tool, approval, cost, and failure nodes linked by causal/evidence edges
169
+ - `agentledger.failure.replay_plan.v1`: evidence-only replay guidance that blocks unsafe side-effect replay when manual verification is required
170
+ - `agentledger.failure.regression.v1`: recurring, fixed, and newly introduced failure comparison
171
+ - `agentledger.failure.alerts.v1`: local alert records for terminal failures, unknown side effects, costly failures, and unsafe replay blocks
172
+ - `agentledger.failure.export.v1`: portable export with OpenTelemetry, Langfuse, LangSmith, and Temporal-style mapping hints
173
+
174
+ This intentionally covers non-happy-path production states, not just terminal failures. For example, `PENDING_VERIFICATION` Tool Ledger rows become `unknown_side_effect` envelopes with `manual_verification` recoverability, because retrying blindly could duplicate an external side effect.
175
+
176
+ `1.4.0` does not turn AgentLedger into an incident-management, eval, or observability SaaS. The stable addition is the portable runtime-owned failure contract and Inspector panels that render it. External systems can consume the export without reading internal runtime tables.
177
+
93
178
  ## Navigation And Cross-links
94
179
 
95
180
  `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 +305,27 @@ Implemented in `1.3.3`:
220
305
  - stable read-model anchors for timeline, step, Tool Ledger, approval, policy, and artifact rows
221
306
  - static HTML section navigation and internal cross-links between related runtime records
222
307
 
308
+ Implemented in `1.3.5`:
309
+
310
+ - chronological Event Stream in JSON and static HTML reports
311
+ - read-only run index through `agentledger inspector runs`
312
+ - `agentledger.inspector.runs.v1` run-index read model for custom viewers
313
+ - runtime run id and extracted agent run id in event/timeline read-model rows
314
+ - safer static HTML layout for long ids, full-width JSON details, and paginated run lists
315
+
316
+ Implemented in `1.4.0`:
317
+
318
+ - `agentledger.failure.envelope.v1` normalized failure read model
319
+ - `agentledger.failure.lifecycle.v1`, `agentledger.failure.causal_graph.v1`, `agentledger.failure.replay_plan.v1`, `agentledger.failure.regression.v1`, `agentledger.failure.alerts.v1`, and `agentledger.failure.export.v1`
320
+ - failure lifecycle data in `agentledger failure report` and portable export data from `agentledger failure export`
321
+ - Failure Lifecycle, Failure Replay Plan, Failure Alerts, and Failure Causal Graph panels in Inspector JSON/static HTML
322
+ - non-happy-path coverage for missing payloads, retry scheduling, pending approvals, pending tool verification, blocked tools, unsafe replay planning, and terminal failures
323
+
223
324
  Not in this version:
224
325
 
225
326
  - long-running web server
327
+ - login, permission, user, or organization management for Inspector surfaces
226
328
  - write/control-plane actions
227
- - user/organization management
228
329
  - permission, identity, billing, or administration backend
229
330
  - full LangSmith/Langfuse replacement
230
331
  - live remote blob adapters inside the Inspector package
@@ -4,6 +4,8 @@
4
4
 
5
5
  This document makes the cross-language boundary explicit. AgentLedger's complete parity claim means **portable runtime-core parity**, not identical provider or ecosystem adapter implementations in every language.
6
6
 
7
+ Patch versions do not need to move in lockstep when a release only changes a language-specific package, companion tool, read model, or adapter wrapper. `1.4.0` is different: it is a four-language runtime-core feature release for the Agent Failure Lifecycle, so Python, Go, TypeScript, and Rust all move to the same runtime-core release family. Inspector remains a language-neutral companion viewer distributed through Python/PyPI, but the failure lifecycle contract itself is implemented across all four runtime packages.
8
+
7
9
  ## How To Read This Table
8
10
 
9
11
  | Mark | Meaning |
@@ -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.4 while the non-Python runtime-core package baselines remain on the latest shared runtime-core tag.
5
+ AgentLedger 1.4.x has one Python reference runtime and native 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, Agent Failure Lifecycle, conformance, and official optional adapter contracts. Version 1.4.0 is a four-language runtime-core release; Inspector remains a language-neutral companion viewer distributed through Python/PyPI.
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
 
@@ -66,13 +66,13 @@ Use the released Go module from a Go project:
66
66
 
67
67
  ```bash
68
68
  go mod init your-module-name # only if your project does not have go.mod yet
69
- go get github.com/yaogdu/AgentLedger/go@v1.3.1
69
+ go get github.com/yaogdu/AgentLedger/go@v1.4.0
70
70
  ```
71
71
 
72
72
  Install the optional CLI command:
73
73
 
74
74
  ```bash
75
- go install github.com/yaogdu/AgentLedger/go/cmd/agentledger-go@v1.3.1
75
+ go install github.com/yaogdu/AgentLedger/go/cmd/agentledger-go@v1.4.0
76
76
  agentledger-go --help
77
77
  agentledger-go doctor
78
78
  agentledger-go quickstart
@@ -86,7 +86,7 @@ go test . ./cmd/agentledger-go
86
86
  go run ./cmd/agentledger-go conformance
87
87
  ```
88
88
 
89
- Note: `go get` must run inside a Go module. `go install github.com/yaogdu/AgentLedger/go@v1.3.1` fails because the library package is not a `package main`; use `/cmd/agentledger-go` for the CLI.
89
+ Note: `go get` must run inside a Go module. `go install github.com/yaogdu/AgentLedger/go@v1.4.0` fails because the library package is not a `package main`; use `/cmd/agentledger-go` for the CLI.
90
90
 
91
91
  Minimal runtime:
92
92
 
@@ -267,7 +267,7 @@ python3.11 scripts/audit_python_parity.py > /tmp/agentledger-python-parity-audit
267
267
  python3.11 scripts/check_language_parity.py --json-report /tmp/agentledger-language-parity.json
268
268
  ```
269
269
 
270
- Expected for 1.3.x:
270
+ Expected for 1.4.x:
271
271
 
272
272
  ```text
273
273
  gap_count: 0
@@ -277,5 +277,5 @@ AgentLedger language parity checks passed
277
277
  ## What Not To Assume
278
278
 
279
279
  - Go/TypeScript/Rust are package surfaces, even though runtime-core semantics are conformance-aligned.
280
- - Official adapters in 1.3.x use injected clients and dry-run manifests; real cloud SDKs and live service hardening are optional follow-up gates.
280
+ - Official adapters in 1.4.x use injected clients and dry-run manifests; real cloud SDKs and live service hardening are optional follow-up gates.
281
281
  - AgentLedger does not replace LangGraph, LangChain, LangSmith, Langfuse, Temporal, Ray, Kubernetes, vector DBs, or eval platforms. It provides the runtime safety/evidence layer those systems can integrate with.