agentops-accelerator 0.5.2__tar.gz → 0.6.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 (333) hide show
  1. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.claude-plugin/marketplace.json +1 -1
  2. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/plugin/marketplace.json +1 -1
  3. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/_build.yml +1 -1
  4. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/agentops-watchdog.yml +1 -1
  5. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/ci.yml +6 -6
  6. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/cut-release.yml +1 -1
  7. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/e2e.yml +9 -9
  8. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/release.yml +3 -3
  9. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/workflows/staging.yml +2 -2
  10. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/CHANGELOG.md +45 -0
  11. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/PKG-INFO +101 -2
  12. agentops_accelerator-0.6.0/README.md +164 -0
  13. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/concepts.md +11 -3
  14. agentops_accelerator-0.6.0/docs/evaluation.md +257 -0
  15. agentops_accelerator-0.6.0/docs/foundry-evaluation-sdk-built-in-evaluators.md +210 -0
  16. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/tutorial-hosted-agent-quickstart.md +7 -0
  17. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/package.json +1 -1
  18. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/plugin.json +1 -1
  19. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-workflow/SKILL.md +9 -8
  20. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/pyproject.toml +1 -0
  21. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/cli/app.py +107 -0
  22. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/agentops_config.py +131 -0
  23. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/invocations.py +8 -8
  24. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/orchestrator.py +63 -15
  25. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/runtime.py +20 -3
  26. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/cicd.py +6 -7
  27. agentops_accelerator-0.6.0/src/agentops/services/telemetry_import.py +550 -0
  28. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml +2 -2
  29. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-workflow/SKILL.md +9 -8
  30. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-pr-prompt-agent.yml +4 -5
  31. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops_accelerator.egg-info/PKG-INFO +101 -2
  32. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops_accelerator.egg-info/SOURCES.txt +5 -0
  33. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops_accelerator.egg-info/requires.txt +1 -0
  34. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agentops_config.py +108 -1
  35. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cicd.py +3 -2
  36. agentops_accelerator-0.6.0/tests/unit/test_cli_commands.py +185 -0
  37. agentops_accelerator-0.6.0/tests/unit/test_http_response_fields.py +106 -0
  38. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_runtime_conversation.py +25 -0
  39. agentops_accelerator-0.6.0/tests/unit/test_runtime_dataset_response_source.py +74 -0
  40. agentops_accelerator-0.6.0/tests/unit/test_telemetry_import.py +153 -0
  41. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/uv.lock +174 -172
  42. agentops_accelerator-0.5.2/README.md +0 -66
  43. agentops_accelerator-0.5.2/docs/foundry-evaluation-sdk-built-in-evaluators.md +0 -218
  44. agentops_accelerator-0.5.2/tests/unit/test_cli_commands.py +0 -85
  45. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.gitattributes +0 -0
  46. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/actions/azure-oidc-login/action.yml +0 -0
  47. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/code-quality-py.instructions.md +0 -0
  48. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/copilot-instructions.md +0 -0
  49. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/dependabot.yml +0 -0
  50. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/extensions/agentops-skills/extension.mjs +0 -0
  51. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.github/skills/release-management/SKILL.md +0 -0
  52. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.gitignore +0 -0
  53. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.pre-commit-config.yaml +0 -0
  54. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.vscode/launch.json +0 -0
  55. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.vscode/settings.json +0 -0
  56. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/.vscode/tasks.json +0 -0
  57. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/AGENTS.md +0 -0
  58. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/CONTRIBUTING.md +0 -0
  59. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/LICENSE +0 -0
  60. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/SECURITY.md +0 -0
  61. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/bundles.md +0 -0
  62. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/ci-github-actions.md +0 -0
  63. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/doctor-checks.md +0 -0
  64. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/doctor-explained.md +0 -0
  65. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/e2e-live-architecture.md +0 -0
  66. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/e2e-live-setup.md +0 -0
  67. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/how-it-works.md +0 -0
  68. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/media/agentops-diagrams.vsdx +0 -0
  69. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/media/foundry-control-plane.png +0 -0
  70. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/release-process.md +0 -0
  71. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/tutorial-end-to-end.md +0 -0
  72. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/docs/tutorial-prompt-agent.md +0 -0
  73. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/examples/flat-quickstart/README.md +0 -0
  74. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/examples/flat-quickstart/agentops.yaml +0 -0
  75. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/examples/flat-quickstart/dataset.jsonl +0 -0
  76. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/icon.png +0 -0
  77. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/infra/e2e/agent-app/Dockerfile +0 -0
  78. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/infra/e2e/agent-app/app.py +0 -0
  79. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/infra/e2e/agent-app/requirements.txt +0 -0
  80. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/infra/e2e/bootstrap.bicep +0 -0
  81. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/infra/e2e/bootstrap.parameters.example.json +0 -0
  82. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/infra/e2e/perrun.bicep +0 -0
  83. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/launch.json +0 -0
  84. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/media/foundry.svg +0 -0
  85. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/media/quickstart.gif +0 -0
  86. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/.vscodeignore +0 -0
  87. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/LICENSE +0 -0
  88. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/README.md +0 -0
  89. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-agent/SKILL.md +0 -0
  90. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-config/SKILL.md +0 -0
  91. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-dataset/SKILL.md +0 -0
  92. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-eval/SKILL.md +0 -0
  93. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-governance/SKILL.md +0 -0
  94. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/plugins/agentops/skills/agentops-report/SKILL.md +0 -0
  95. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/create_support_agent.py +0 -0
  96. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/cut-release.ps1 +0 -0
  97. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/cut-release.sh +0 -0
  98. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_aggregate_summary.py +0 -0
  99. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_data/basic.jsonl +0 -0
  100. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_data/rag.jsonl +0 -0
  101. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_data/tools.jsonl +0 -0
  102. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_demo.py +0 -0
  103. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_hosted_agent.py +0 -0
  104. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_make_transcript.py +0 -0
  105. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/e2e_render_config.py +0 -0
  106. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/release.ps1 +0 -0
  107. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/release.sh +0 -0
  108. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/setup-e2e-new-tenant.ps1 +0 -0
  109. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/staging.ps1 +0 -0
  110. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/staging.sh +0 -0
  111. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/sync-skills.ps1 +0 -0
  112. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/scripts/sync-skills.sh +0 -0
  113. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/setup.cfg +0 -0
  114. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/__init__.py +0 -0
  115. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/__main__.py +0 -0
  116. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/__init__.py +0 -0
  117. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/_legacy_ids.py +0 -0
  118. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/analyzer.py +0 -0
  119. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/__init__.py +0 -0
  120. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/_rbac_authorization.py +0 -0
  121. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/catalog.py +0 -0
  122. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/errors.py +0 -0
  123. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/foundry_config.py +0 -0
  124. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/governance.py +0 -0
  125. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/latency.py +0 -0
  126. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/observability.py +0 -0
  127. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/opex.py +0 -0
  128. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/opex_workspace.py +0 -0
  129. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture.py +0 -0
  130. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture_rules/__init__.py +0 -0
  131. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture_rules/content_filter.py +0 -0
  132. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture_rules/diagnostics.py +0 -0
  133. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture_rules/local_auth.py +0 -0
  134. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture_rules/managed_identity.py +0 -0
  135. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/posture_rules/network.py +0 -0
  136. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/rbac_openai_data_plane.py +0 -0
  137. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/regression.py +0 -0
  138. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/release_readiness.py +0 -0
  139. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/safety.py +0 -0
  140. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/checks/spec_conformance.py +0 -0
  141. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/cockpit.py +0 -0
  142. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/config.py +0 -0
  143. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/findings.py +0 -0
  144. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/history.py +0 -0
  145. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/knowledge/__init__.py +0 -0
  146. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/knowledge/waf-checklist.csv +0 -0
  147. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/__init__.py +0 -0
  148. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_base.py +0 -0
  149. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_bundle_rule.py +0 -0
  150. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_client.py +0 -0
  151. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_dataset_rules.py +0 -0
  152. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_engine.py +0 -0
  153. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_prompt_rules.py +0 -0
  154. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/llm_assist/_spec_rules.py +0 -0
  155. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/production_telemetry.py +0 -0
  156. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/report.py +0 -0
  157. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/server/__init__.py +0 -0
  158. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/server/app.py +0 -0
  159. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/server/auth.py +0 -0
  160. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/server/chat.py +0 -0
  161. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/server/protocol.py +0 -0
  162. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/__init__.py +0 -0
  163. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/_credentials.py +0 -0
  164. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/azure_monitor.py +0 -0
  165. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/azure_resources.py +0 -0
  166. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/foundry_control.py +0 -0
  167. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/results_history.py +0 -0
  168. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/spec_detectors/__init__.py +0 -0
  169. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/spec_detectors/_base.py +0 -0
  170. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/spec_detectors/agents_md.py +0 -0
  171. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/sources/spec_detectors/spec_kit.py +0 -0
  172. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/agent/time_range.py +0 -0
  173. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/cli/__init__.py +0 -0
  174. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/__init__.py +0 -0
  175. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/azd_eval.py +0 -0
  176. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/config_loader.py +0 -0
  177. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/evaluators.py +0 -0
  178. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/governance.py +0 -0
  179. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/release_evidence.py +0 -0
  180. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/results.py +0 -0
  181. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/core/step_summary.py +0 -0
  182. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/mcp/__init__.py +0 -0
  183. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/mcp/server.py +0 -0
  184. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/__init__.py +0 -0
  185. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/azd_runner.py +0 -0
  186. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/cloud_results.py +0 -0
  187. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/cloud_runner.py +0 -0
  188. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/comparison.py +0 -0
  189. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/diagnostics.py +0 -0
  190. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/official_eval.py +0 -0
  191. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/prompt_deploy.py +0 -0
  192. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/publisher.py +0 -0
  193. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/reporter.py +0 -0
  194. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/pipeline/thresholds.py +0 -0
  195. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/__init__.py +0 -0
  196. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/assert_runner.py +0 -0
  197. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/azd_eval_init.py +0 -0
  198. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/eval_analysis.py +0 -0
  199. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/evidence_pack.py +0 -0
  200. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/initializer.py +0 -0
  201. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/preflight.py +0 -0
  202. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/redteam_runner.py +0 -0
  203. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/setup_wizard.py +0 -0
  204. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/skills.py +0 -0
  205. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/trace_promotion.py +0 -0
  206. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/services/workflow_analysis.py +0 -0
  207. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/.gitignore +0 -0
  208. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/__init__.py +0 -0
  209. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/agent-server/Dockerfile +0 -0
  210. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/agent-server/README.md +0 -0
  211. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/agent-server/main.bicep +0 -0
  212. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/agent.yaml +0 -0
  213. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/agentops.yaml +0 -0
  214. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/foundry.svg +0 -0
  215. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/icon.png +0 -0
  216. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml +0 -0
  217. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml +0 -0
  218. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml +0 -0
  219. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml +0 -0
  220. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml +0 -0
  221. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml +0 -0
  222. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml +0 -0
  223. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-pr.yml +0 -0
  224. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/pipelines/azuredevops/agentops-watchdog.yml +0 -0
  225. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/project.gitignore +0 -0
  226. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/sample-traces.jsonl +0 -0
  227. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-agent/SKILL.md +0 -0
  228. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-config/SKILL.md +0 -0
  229. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-dataset/SKILL.md +0 -0
  230. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-eval/SKILL.md +0 -0
  231. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-governance/SKILL.md +0 -0
  232. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/skills/agentops-report/SKILL.md +0 -0
  233. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/smoke.jsonl +0 -0
  234. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/waf-checklist.README.md +0 -0
  235. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/waf-checklist.csv +0 -0
  236. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-dev-azd.yml +0 -0
  237. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-dev.yml +0 -0
  238. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-prod-azd.yml +0 -0
  239. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-prod.yml +0 -0
  240. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-prompt-agent.yml +0 -0
  241. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-qa-azd.yml +0 -0
  242. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-deploy-qa.yml +0 -0
  243. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-pr.yml +0 -0
  244. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/templates/workflows/agentops-watchdog.yml +0 -0
  245. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/__init__.py +0 -0
  246. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/azd_env.py +0 -0
  247. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/azure_endpoints.py +0 -0
  248. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/colors.py +0 -0
  249. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/dotenv_loader.py +0 -0
  250. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/foundry_discovery.py +0 -0
  251. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/logging.py +0 -0
  252. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/telemetry.py +0 -0
  253. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops/utils/yaml.py +0 -0
  254. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops_accelerator.egg-info/dependency_links.txt +0 -0
  255. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops_accelerator.egg-info/entry_points.txt +0 -0
  256. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/src/agentops_accelerator.egg-info/top_level.txt +0 -0
  257. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/TESTING.md +0 -0
  258. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/fixtures/fake_adapter.py +0 -0
  259. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/fixtures/fake_eval_runner.py +0 -0
  260. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/integration/.gitkeep +0 -0
  261. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/integration/test_cli_flat_schema.py +0 -0
  262. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/integration/test_pipeline_smoke.py +0 -0
  263. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/.gitkeep +0 -0
  264. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_analyzer.py +0 -0
  265. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_categories.py +0 -0
  266. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_errors.py +0 -0
  267. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_foundry_config.py +0 -0
  268. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_observability.py +0 -0
  269. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_opex.py +0 -0
  270. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_opex_workspace.py +0 -0
  271. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_rbac_openai_data_plane.py +0 -0
  272. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_regression.py +0 -0
  273. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_safety.py +0 -0
  274. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_checks_spec_conformance.py +0 -0
  275. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_cli.py +0 -0
  276. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_config.py +0 -0
  277. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_findings.py +0 -0
  278. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_history.py +0 -0
  279. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_opex_workspace_check.py +0 -0
  280. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_posture_rules.py +0 -0
  281. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_results_history.py +0 -0
  282. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_agent_server.py +0 -0
  283. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_assert_and_redteam_runners.py +0 -0
  284. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_azd_env.py +0 -0
  285. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_azd_eval.py +0 -0
  286. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_azd_eval_init.py +0 -0
  287. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_azd_runner.py +0 -0
  288. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_azure_endpoints.py +0 -0
  289. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_azure_resources_discovery.py +0 -0
  290. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cli_cockpit_connection_summary.py +0 -0
  291. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cli_cockpit_port_conflict.py +0 -0
  292. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cli_explain.py +0 -0
  293. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cloud_results.py +0 -0
  294. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cloud_runner.py +0 -0
  295. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_cockpit.py +0 -0
  296. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_diagnostics.py +0 -0
  297. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_doctor_catalog.py +0 -0
  298. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_doctor_cli_explain.py +0 -0
  299. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_dotenv_loader.py +0 -0
  300. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_e2e_render.py +0 -0
  301. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_eval_analysis.py +0 -0
  302. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_eval_run_grader_errors.py +0 -0
  303. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_evaluators.py +0 -0
  304. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_foundry_discovery.py +0 -0
  305. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_governance.py +0 -0
  306. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_http_streaming.py +0 -0
  307. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_init_command.py +0 -0
  308. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_initializer.py +0 -0
  309. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_invocations.py +0 -0
  310. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_knowledge_loader.py +0 -0
  311. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_llm_assist.py +0 -0
  312. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_llm_assist_spec_rules.py +0 -0
  313. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_mcp_server.py +0 -0
  314. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_official_eval.py +0 -0
  315. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_pipeline_publisher.py +0 -0
  316. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_pipeline_reporter.py +0 -0
  317. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_preflight.py +0 -0
  318. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_production_telemetry.py +0 -0
  319. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_prompt_deploy.py +0 -0
  320. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_release_evidence.py +0 -0
  321. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_runtime_model_config.py +0 -0
  322. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_runtime_response_fields.py +0 -0
  323. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_setup_wizard.py +0 -0
  324. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_shared_credentials.py +0 -0
  325. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_skills.py +0 -0
  326. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_skills_sync.py +0 -0
  327. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_step_summary.py +0 -0
  328. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_telemetry.py +0 -0
  329. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_time_range.py +0 -0
  330. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_trace_promotion.py +0 -0
  331. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_workflow_analysis.py +0 -0
  332. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tests/unit/test_yaml_utils.py +0 -0
  333. {agentops_accelerator-0.5.2 → agentops_accelerator-0.6.0}/tombstones/vscode/CDN_DEPRECATION_REQUEST.md +0 -0
@@ -13,7 +13,7 @@
13
13
  "name": "agentops-accelerator",
14
14
  "source": "../../plugins/agentops",
15
15
  "description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Toolkit and Microsoft Foundry agents.",
16
- "version": "0.4.1",
16
+ "version": "0.6.0",
17
17
  "keywords": [
18
18
  "agentops",
19
19
  "evaluation",
@@ -13,7 +13,7 @@
13
13
  "name": "agentops-accelerator",
14
14
  "source": "../../plugins/agentops",
15
15
  "description": "Copilot agent skills for running standardized evaluation workflows with AgentOps Toolkit and Microsoft Foundry agents.",
16
- "version": "0.4.1",
16
+ "version": "0.6.0",
17
17
  "keywords": [
18
18
  "agentops",
19
19
  "evaluation",
@@ -39,7 +39,7 @@ jobs:
39
39
  build:
40
40
  runs-on: ubuntu-latest
41
41
  steps:
42
- - uses: actions/checkout@v6
42
+ - uses: actions/checkout@v7
43
43
  with:
44
44
  ref: ${{ inputs.checkout_ref || github.ref }}
45
45
  fetch-depth: 0 # Full history required for setuptools-scm
@@ -44,7 +44,7 @@ jobs:
44
44
  timeout-minutes: 30
45
45
  steps:
46
46
  - name: Checkout
47
- uses: actions/checkout@v6
47
+ uses: actions/checkout@v7
48
48
 
49
49
  - name: Azure login (OIDC)
50
50
  uses: azure/login@v3
@@ -38,7 +38,7 @@ jobs:
38
38
  lint:
39
39
  runs-on: ubuntu-latest
40
40
  steps:
41
- - uses: actions/checkout@v6
41
+ - uses: actions/checkout@v7
42
42
 
43
43
  - name: Install uv
44
44
  uses: astral-sh/setup-uv@v7
@@ -66,7 +66,7 @@ jobs:
66
66
  os: [ubuntu-latest, windows-latest]
67
67
  python-version: ["3.11", "3.12", "3.13"]
68
68
  steps:
69
- - uses: actions/checkout@v6
69
+ - uses: actions/checkout@v7
70
70
 
71
71
  - name: Install uv
72
72
  uses: astral-sh/setup-uv@v7
@@ -93,7 +93,7 @@ jobs:
93
93
  runs-on: ubuntu-latest
94
94
  needs: test
95
95
  steps:
96
- - uses: actions/checkout@v6
96
+ - uses: actions/checkout@v7
97
97
 
98
98
  - name: Install uv
99
99
  uses: astral-sh/setup-uv@v7
@@ -125,7 +125,7 @@ jobs:
125
125
  permissions:
126
126
  id-token: write # Required for PyPI Trusted Publishing (OIDC)
127
127
  steps:
128
- - uses: actions/checkout@v6
128
+ - uses: actions/checkout@v7
129
129
  with:
130
130
  fetch-depth: 0 # Full history for setuptools-scm
131
131
 
@@ -162,7 +162,7 @@ jobs:
162
162
  needs: publish-dev
163
163
  runs-on: ubuntu-latest
164
164
  steps:
165
- - uses: actions/checkout@v6
165
+ - uses: actions/checkout@v7
166
166
  with:
167
167
  fetch-depth: 0
168
168
 
@@ -215,7 +215,7 @@ jobs:
215
215
  build-vsix:
216
216
  runs-on: ubuntu-latest
217
217
  steps:
218
- - uses: actions/checkout@v6
218
+ - uses: actions/checkout@v7
219
219
 
220
220
  # CI uses the committed package.json version as-is (no publish, dry-run only).
221
221
  # The version in package.json is synced by cut-release.yml when a release branch is created.
@@ -48,7 +48,7 @@ jobs:
48
48
  echo "version=$VERSION" >> "$GITHUB_ENV"
49
49
 
50
50
  - name: Checkout develop
51
- uses: actions/checkout@v6
51
+ uses: actions/checkout@v7
52
52
  with:
53
53
  ref: develop
54
54
  fetch-depth: 0
@@ -36,7 +36,7 @@ jobs:
36
36
  offline-smoke:
37
37
  runs-on: ubuntu-latest
38
38
  steps:
39
- - uses: actions/checkout@v6
39
+ - uses: actions/checkout@v7
40
40
 
41
41
  - name: Set up Python
42
42
  uses: actions/setup-python@v6
@@ -69,7 +69,7 @@ jobs:
69
69
  unit-tests-with-coverage:
70
70
  runs-on: ubuntu-latest
71
71
  steps:
72
- - uses: actions/checkout@v6
72
+ - uses: actions/checkout@v7
73
73
 
74
74
  - name: Set up Python
75
75
  uses: actions/setup-python@v6
@@ -127,7 +127,7 @@ jobs:
127
127
  hosted_agent_name: ${{ steps.create_hosted_agent.outputs.agent_name }}
128
128
  suffix: ${{ steps.suffix.outputs.value }}
129
129
  steps:
130
- - uses: actions/checkout@v6
130
+ - uses: actions/checkout@v7
131
131
 
132
132
  - id: suffix
133
133
  name: Compute per-run suffix
@@ -256,7 +256,7 @@ jobs:
256
256
  id-token: write
257
257
  contents: read
258
258
  steps:
259
- - uses: actions/checkout@v6
259
+ - uses: actions/checkout@v7
260
260
  - uses: actions/setup-python@v6
261
261
  with:
262
262
  python-version: "3.12"
@@ -307,7 +307,7 @@ jobs:
307
307
  id-token: write
308
308
  contents: read
309
309
  steps:
310
- - uses: actions/checkout@v6
310
+ - uses: actions/checkout@v7
311
311
  - uses: actions/setup-python@v6
312
312
  with:
313
313
  python-version: "3.12"
@@ -359,7 +359,7 @@ jobs:
359
359
  id-token: write
360
360
  contents: read
361
361
  steps:
362
- - uses: actions/checkout@v6
362
+ - uses: actions/checkout@v7
363
363
  - uses: actions/setup-python@v6
364
364
  with:
365
365
  python-version: "3.12"
@@ -409,7 +409,7 @@ jobs:
409
409
  id-token: write
410
410
  contents: read
411
411
  steps:
412
- - uses: actions/checkout@v6
412
+ - uses: actions/checkout@v7
413
413
  - uses: actions/setup-python@v6
414
414
  with:
415
415
  python-version: "3.12"
@@ -464,7 +464,7 @@ jobs:
464
464
  id-token: write
465
465
  contents: read
466
466
  steps:
467
- - uses: actions/checkout@v6
467
+ - uses: actions/checkout@v7
468
468
  - name: Azure login (OIDC)
469
469
  uses: ./.github/actions/azure-oidc-login
470
470
  with:
@@ -529,7 +529,7 @@ jobs:
529
529
  if: always()
530
530
  runs-on: ubuntu-latest
531
531
  steps:
532
- - uses: actions/checkout@v6
532
+ - uses: actions/checkout@v7
533
533
  - name: Download all artifacts
534
534
  uses: actions/download-artifact@v8
535
535
  with:
@@ -98,7 +98,7 @@ jobs:
98
98
  needs: publish-testpypi
99
99
  runs-on: ubuntu-latest
100
100
  steps:
101
- - uses: actions/checkout@v6
101
+ - uses: actions/checkout@v7
102
102
  with:
103
103
  fetch-depth: 0
104
104
 
@@ -185,7 +185,7 @@ jobs:
185
185
  env:
186
186
  VSIX_FILE: agentops-skills.vsix
187
187
  steps:
188
- - uses: actions/checkout@v6
188
+ - uses: actions/checkout@v7
189
189
  with:
190
190
  fetch-depth: 0 # Full history for version derivation
191
191
 
@@ -255,7 +255,7 @@ jobs:
255
255
  permissions:
256
256
  contents: write
257
257
  steps:
258
- - uses: actions/checkout@v6
258
+ - uses: actions/checkout@v7
259
259
 
260
260
  - name: Download Python dist artifacts
261
261
  uses: actions/download-artifact@v8
@@ -79,7 +79,7 @@ jobs:
79
79
  needs: publish-testpypi
80
80
  runs-on: ubuntu-latest
81
81
  steps:
82
- - uses: actions/checkout@v6
82
+ - uses: actions/checkout@v7
83
83
  with:
84
84
  fetch-depth: 0
85
85
 
@@ -137,7 +137,7 @@ jobs:
137
137
  runs-on: ubuntu-latest
138
138
  environment: staging
139
139
  steps:
140
- - uses: actions/checkout@v6
140
+ - uses: actions/checkout@v7
141
141
 
142
142
  - name: Sync VSIX version from branch name
143
143
  run: |
@@ -5,6 +5,32 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [0.6.0] - 2026-06-26
9
+
10
+ ### Added
11
+ - **Retrieval telemetry can now be imported as evaluation datasets.** The new
12
+ `telemetry_imports` config contract and `agentops telemetry validate`,
13
+ `agentops telemetry preview`, and `agentops telemetry import` commands let
14
+ teams turn reviewed retrieval telemetry into dataset-backed eval rows with
15
+ `response_source: dataset`. Grey-box HTTP agents can map `response_fields` from
16
+ `$response.context`, and the evaluation docs now cover the import workflow and
17
+ contract.
18
+
19
+ ### Changed
20
+ - **Prompt-agent PR validation now uses sandbox instead of dev.** Generated
21
+ GitHub and Azure DevOps PR workflows stage prompt-agent candidates in the
22
+ sandbox Foundry environment, keeping dev for deployed-of-record versions.
23
+
24
+ ## [0.5.3] - 2026-06-22
25
+
26
+ ### Fixed
27
+ - **VS Code extension is back on the Marketplace.** The 0.5.2 release published to
28
+ PyPI, but the Marketplace (VSIX) publish was blocked by an expired publisher
29
+ token, so the VS Code extension never updated to 0.5.2. Release 0.5.3 ships the
30
+ same toolkit as 0.5.2 with a refreshed Marketplace credential, so
31
+ `agentops-accelerator` on PyPI and the AgentOps extension on the Marketplace are
32
+ back in sync. No functional changes to the CLI or the extension.
33
+
8
34
  ## [0.5.2] - 2026-06-20
9
35
 
10
36
  ### Added
@@ -163,6 +189,25 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
163
189
  tutorial are updated to describe the new contract.
164
190
  ([#214](https://github.com/Azure/agentops/issues/214))
165
191
 
192
+ ### Fixed
193
+ - **Clean installs now include the pager dependency used by explain commands.**
194
+ `agentops explain`, `agentops init explain`, and `agentops doctor explain`
195
+ import Click directly to render long manual output, so `click>=8.1,<9` is now
196
+ declared as a runtime dependency instead of relying on transitive installs.
197
+
198
+ - **`agentops eval init` now works with both old and new `azure.ai.agents` azd
199
+ extensions.** Version 0.1.40 of the extension renamed the eval subcommand from
200
+ `azd ai agent eval init` to `azd ai agent eval generate`, which made
201
+ `agentops eval init` hard-fail with `Command "init" is deprecated, use 'azd ai
202
+ agent eval generate' instead`. AgentOps now invokes `generate` first and
203
+ transparently falls back to the legacy `init` subcommand when an older
204
+ extension does not recognise `generate`. The fallback only triggers on
205
+ subcommand-name/deprecation errors; genuine failures (authentication, project
206
+ endpoint, timeouts) are still surfaced immediately and unchanged. All
207
+ previously passed flags (`--project-endpoint`, `--agent`,
208
+ `--gen-instruction-file`, `--eval-model`, `--dataset`, `--evaluator`) and the
209
+ recipe discovery/persistence behaviour are preserved.
210
+
166
211
  ## [0.4.0] - 2026-06-14
167
212
 
168
213
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentops-accelerator
3
- Version: 0.5.2
3
+ Version: 0.6.0
4
4
  Summary: Release readiness gates and evidence for Microsoft Foundry agents
5
5
  License: MIT License
6
6
 
@@ -28,6 +28,7 @@ Requires-Python: >=3.11
28
28
  Description-Content-Type: text/markdown
29
29
  License-File: LICENSE
30
30
  Requires-Dist: typer<1.0,>=0.12
31
+ Requires-Dist: click<9,>=8.1
31
32
  Requires-Dist: pydantic<3,>=2
32
33
  Requires-Dist: ruamel.yaml<1.0,>=0.18
33
34
  Requires-Dist: azure-ai-projects<3.0,>=2.0.1
@@ -108,12 +109,110 @@ practices.
108
109
  ## Learn more
109
110
 
110
111
  For setup guides, tutorials, architecture, CI/CD guidance, Doctor checks, and
111
- evaluator reference, see:
112
+ evaluator reference, start with the documentation site:
112
113
 
113
114
  <p align="center">
114
115
  <a href="https://aka.ms/agentops-accelerator"><b>https://aka.ms/agentops-accelerator</b></a>
115
116
  </p>
116
117
 
118
+ ## Run a first evaluation
119
+
120
+ ```powershell
121
+ az login
122
+ $env:AZURE_AI_FOUNDRY_PROJECT_ENDPOINT = "https://<resource>.services.ai.azure.com/api/projects/<project>"
123
+ $env:AZURE_OPENAI_ENDPOINT = "https://<openai-resource>.openai.azure.com"
124
+ $env:AZURE_OPENAI_DEPLOYMENT = "gpt-4o-mini"
125
+ agentops eval analyze
126
+ agentops eval run
127
+ agentops doctor --evidence-pack
128
+ ```
129
+
130
+ For Foundry targets, use either `project_endpoint:` in `agentops.yaml` or
131
+ `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT`. Config wins when both are set.
132
+
133
+ Outputs land in `.agentops/results/latest/`:
134
+
135
+ - `results.json` - machine-readable (versioned, stable schema)
136
+ - `report.md` - human-readable, PR-friendly
137
+
138
+ Release evidence lands in `.agentops/release/latest/`:
139
+
140
+ - `evidence.json` - machine-readable production-readiness projection
141
+ - `evidence.md` - PR/release summary
142
+
143
+ Capture the first successful run as a baseline:
144
+
145
+ ```powershell
146
+ New-Item -ItemType Directory -Force .agentops\baseline | Out-Null
147
+ Copy-Item .agentops\results\latest\results.json .agentops\baseline\results.json
148
+ ```
149
+
150
+ To see a visible comparison, publish a new agent version with a prompt
151
+ that paraphrases instead of copying exact-answer requests, update
152
+ `agentops.yaml` to that new `name:version`, and compare against the
153
+ baseline:
154
+
155
+ ```powershell
156
+ agentops eval run --baseline .agentops/baseline/results.json
157
+ ```
158
+
159
+ The report grows a `Comparison vs Baseline` section with per-metric deltas.
160
+
161
+ ---
162
+
163
+ ## Commands
164
+
165
+ Install optional extras as needed: `[agent]` for Doctor/Cockpit and `[mcp]` for MCP.
166
+
167
+ - `agentops --version` - show installed version.
168
+ - `agentops init` - bootstrap config and seed data.
169
+ - `agentops eval analyze` - check eval readiness.
170
+ - `agentops eval init` - bootstrap an azd `eval.yaml` recipe and wire `execution: azd`.
171
+ - `agentops eval run [--baseline PATH]` - run an evaluation.
172
+ - `agentops eval promote-traces --source FILE [--apply]` - promote local trace export files.
173
+ - `agentops telemetry validate NAME` - validate an Azure Monitor or Application Insights import.
174
+ - `agentops telemetry preview NAME --rows N` - preview telemetry import rows.
175
+ - `agentops telemetry import NAME --apply` - write the imported telemetry dataset.
176
+ - `agentops report generate` - regenerate `report.md`.
177
+ - `agentops workflow analyze` - recommend CI/CD shape.
178
+ - `agentops workflow generate` - generate CI/CD workflows.
179
+ - `agentops skills install` - install Copilot or Claude skills.
180
+ - `agentops mcp serve` - start the MCP server.
181
+ - `agentops doctor [--evidence-pack]` - run readiness checks.
182
+ - `agentops cockpit` - open the local Cockpit.
183
+ - `agentops agent serve` - serve Doctor as a Copilot Extension.
184
+
185
+ ## AgentOps Cockpit
186
+
187
+ `agentops cockpit` opens a localhost command center for the current workspace.
188
+ It combines eval history, Doctor findings, workflow status, and links to the
189
+ matching Foundry and Azure Monitor views.
190
+
191
+ Cockpit sections, in display order:
192
+
193
+ - **Foundry connection** - project, tenant, agent, App Insights.
194
+ - **Foundry launchpad** - links for the agent, project, and telemetry.
195
+ - **Observability readiness** - tracing, evals, red team, alerts.
196
+ - **AgentOps Doctor** - latest Doctor findings.
197
+ - **Eval gate summary** - local and CI gate history.
198
+ - **Quality gate summary** - score trends and regressions.
199
+ - **Production signal** - App Insights health snapshot.
200
+ - **CI/CD Pipelines** - GitHub Actions status.
201
+ - **Next actions** - contextual recommendations.
202
+
203
+ ## Documentation
204
+
205
+ - [Foundry Prompt Agent tutorial](docs/tutorial-prompt-agent.md) - use this when the Foundry target is `agent: name:version`. Walks the sandbox to dev journey with a PR gate.
206
+ - [Hosted or HTTP Agent tutorial](docs/tutorial-hosted-agent-quickstart.md) - use this when the target is a Foundry hosted or HTTP endpoint URL. Same sandbox to dev journey for endpoint-based agents.
207
+ - [End-to-end tutorial](docs/tutorial-end-to-end.md) - extends either of the above with the full sandbox to dev to qa to prod promotion, Foundry red-team scans, and trace-to-regression promotion.
208
+ - [Evaluation paths](docs/evaluation.md) - choose static dataset, grey-box HTTP, or telemetry/trace import.
209
+ - [Core concepts](docs/concepts.md)
210
+ - [How it works](docs/how-it-works.md)
211
+ - [Doctor explained](docs/doctor-explained.md)
212
+ - [CI/CD with GitHub Actions](docs/ci-github-actions.md)
213
+ - [Built-in evaluator reference](docs/foundry-evaluation-sdk-built-in-evaluators.md)
214
+ - [Release process](docs/release-process.md)
215
+
117
216
  ## Contributing
118
217
 
119
218
  See [CONTRIBUTING.md](CONTRIBUTING.md) for development, testing, and contribution guidance.
@@ -0,0 +1,164 @@
1
+ <h1 align="center">AgentOps Accelerator</h1>
2
+
3
+ <p align="center">
4
+ <b>Evaluate. Ship. Observe. Own.</b>
5
+ <br/>
6
+ Continuous evaluation, safety testing, observability, and release readiness for Microsoft Foundry agents.
7
+ </p>
8
+
9
+ <p align="center">
10
+ <a href="https://aka.ms/agentops-accelerator"><b>Documentation</b></a> |
11
+ <a href="https://pypi.org/project/agentops-accelerator/">PyPI</a> |
12
+ <a href="https://marketplace.visualstudio.com/items?itemName=AgentOpsAccelerator.agentops-accelerator">VS Code Extension</a> |
13
+ <a href="https://github.com/Azure/agentops/releases/latest">Latest release</a>
14
+ </p>
15
+
16
+ <p align="center">
17
+ <a href="https://pypi.org/project/agentops-accelerator/"><img alt="PyPI" src="https://img.shields.io/pypi/v/agentops-accelerator.svg?label=PyPI&color=blue"/></a>
18
+ <a href="https://marketplace.visualstudio.com/items?itemName=AgentOpsAccelerator.agentops-accelerator"><img alt="VS Code Extension" src="https://img.shields.io/badge/VS%20Code-Extension-007ACC.svg?logo=visualstudiocode"/></a>
19
+ <a href="https://github.com/Azure/agentops/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/Azure/agentops/actions/workflows/ci.yml/badge.svg?branch=develop"/></a>
20
+ <a href="https://github.com/Azure/agentops/actions/workflows/release.yml"><img alt="Release" src="https://github.com/Azure/agentops/actions/workflows/release.yml/badge.svg"/></a>
21
+ <a href="https://github.com/Azure/agentops/blob/main/LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-green.svg"/></a>
22
+ </p>
23
+
24
+ AgentOps Accelerator helps Microsoft Foundry agent teams evaluate quality, prepare releases, monitor behavior, and stay accountable after launch. It gives you a practical starting point for agent operations, with Foundry integration as the default path and deeper setup guidance in the full docs.
25
+
26
+ ## Get started
27
+
28
+ ```powershell
29
+ python -m pip install agentops-accelerator
30
+ agentops init
31
+ ```
32
+
33
+ `agentops init` starts a guided setup that creates your `agentops.yaml` and
34
+ `.agentops/` workspace.
35
+
36
+ Next, follow the tutorial that matches your agent type:
37
+
38
+ - [Prompt Agent tutorial](https://azure.github.io/agentops/tutorial-prompt-agent/)
39
+ - [Hosted or HTTP Agent tutorial](https://azure.github.io/agentops/tutorial-hosted-agent/)
40
+
41
+ ## What it helps you do
42
+
43
+ Use AgentOps Accelerator when you need to:
44
+
45
+ - Evaluate an agent before release
46
+ - Compare changes across versions
47
+ - Capture release evidence
48
+ - Monitor agent quality and regressions
49
+ - Give teams a repeatable way to own agent behavior in production
50
+
51
+ The accelerator keeps the local workflow simple, then points you to the full
52
+ docs when you are ready to configure pipelines, dashboards, and release
53
+ practices.
54
+
55
+ ## Learn more
56
+
57
+ For setup guides, tutorials, architecture, CI/CD guidance, Doctor checks, and
58
+ evaluator reference, start with the documentation site:
59
+
60
+ <p align="center">
61
+ <a href="https://aka.ms/agentops-accelerator"><b>https://aka.ms/agentops-accelerator</b></a>
62
+ </p>
63
+
64
+ ## Run a first evaluation
65
+
66
+ ```powershell
67
+ az login
68
+ $env:AZURE_AI_FOUNDRY_PROJECT_ENDPOINT = "https://<resource>.services.ai.azure.com/api/projects/<project>"
69
+ $env:AZURE_OPENAI_ENDPOINT = "https://<openai-resource>.openai.azure.com"
70
+ $env:AZURE_OPENAI_DEPLOYMENT = "gpt-4o-mini"
71
+ agentops eval analyze
72
+ agentops eval run
73
+ agentops doctor --evidence-pack
74
+ ```
75
+
76
+ For Foundry targets, use either `project_endpoint:` in `agentops.yaml` or
77
+ `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT`. Config wins when both are set.
78
+
79
+ Outputs land in `.agentops/results/latest/`:
80
+
81
+ - `results.json` - machine-readable (versioned, stable schema)
82
+ - `report.md` - human-readable, PR-friendly
83
+
84
+ Release evidence lands in `.agentops/release/latest/`:
85
+
86
+ - `evidence.json` - machine-readable production-readiness projection
87
+ - `evidence.md` - PR/release summary
88
+
89
+ Capture the first successful run as a baseline:
90
+
91
+ ```powershell
92
+ New-Item -ItemType Directory -Force .agentops\baseline | Out-Null
93
+ Copy-Item .agentops\results\latest\results.json .agentops\baseline\results.json
94
+ ```
95
+
96
+ To see a visible comparison, publish a new agent version with a prompt
97
+ that paraphrases instead of copying exact-answer requests, update
98
+ `agentops.yaml` to that new `name:version`, and compare against the
99
+ baseline:
100
+
101
+ ```powershell
102
+ agentops eval run --baseline .agentops/baseline/results.json
103
+ ```
104
+
105
+ The report grows a `Comparison vs Baseline` section with per-metric deltas.
106
+
107
+ ---
108
+
109
+ ## Commands
110
+
111
+ Install optional extras as needed: `[agent]` for Doctor/Cockpit and `[mcp]` for MCP.
112
+
113
+ - `agentops --version` - show installed version.
114
+ - `agentops init` - bootstrap config and seed data.
115
+ - `agentops eval analyze` - check eval readiness.
116
+ - `agentops eval init` - bootstrap an azd `eval.yaml` recipe and wire `execution: azd`.
117
+ - `agentops eval run [--baseline PATH]` - run an evaluation.
118
+ - `agentops eval promote-traces --source FILE [--apply]` - promote local trace export files.
119
+ - `agentops telemetry validate NAME` - validate an Azure Monitor or Application Insights import.
120
+ - `agentops telemetry preview NAME --rows N` - preview telemetry import rows.
121
+ - `agentops telemetry import NAME --apply` - write the imported telemetry dataset.
122
+ - `agentops report generate` - regenerate `report.md`.
123
+ - `agentops workflow analyze` - recommend CI/CD shape.
124
+ - `agentops workflow generate` - generate CI/CD workflows.
125
+ - `agentops skills install` - install Copilot or Claude skills.
126
+ - `agentops mcp serve` - start the MCP server.
127
+ - `agentops doctor [--evidence-pack]` - run readiness checks.
128
+ - `agentops cockpit` - open the local Cockpit.
129
+ - `agentops agent serve` - serve Doctor as a Copilot Extension.
130
+
131
+ ## AgentOps Cockpit
132
+
133
+ `agentops cockpit` opens a localhost command center for the current workspace.
134
+ It combines eval history, Doctor findings, workflow status, and links to the
135
+ matching Foundry and Azure Monitor views.
136
+
137
+ Cockpit sections, in display order:
138
+
139
+ - **Foundry connection** - project, tenant, agent, App Insights.
140
+ - **Foundry launchpad** - links for the agent, project, and telemetry.
141
+ - **Observability readiness** - tracing, evals, red team, alerts.
142
+ - **AgentOps Doctor** - latest Doctor findings.
143
+ - **Eval gate summary** - local and CI gate history.
144
+ - **Quality gate summary** - score trends and regressions.
145
+ - **Production signal** - App Insights health snapshot.
146
+ - **CI/CD Pipelines** - GitHub Actions status.
147
+ - **Next actions** - contextual recommendations.
148
+
149
+ ## Documentation
150
+
151
+ - [Foundry Prompt Agent tutorial](docs/tutorial-prompt-agent.md) - use this when the Foundry target is `agent: name:version`. Walks the sandbox to dev journey with a PR gate.
152
+ - [Hosted or HTTP Agent tutorial](docs/tutorial-hosted-agent-quickstart.md) - use this when the target is a Foundry hosted or HTTP endpoint URL. Same sandbox to dev journey for endpoint-based agents.
153
+ - [End-to-end tutorial](docs/tutorial-end-to-end.md) - extends either of the above with the full sandbox to dev to qa to prod promotion, Foundry red-team scans, and trace-to-regression promotion.
154
+ - [Evaluation paths](docs/evaluation.md) - choose static dataset, grey-box HTTP, or telemetry/trace import.
155
+ - [Core concepts](docs/concepts.md)
156
+ - [How it works](docs/how-it-works.md)
157
+ - [Doctor explained](docs/doctor-explained.md)
158
+ - [CI/CD with GitHub Actions](docs/ci-github-actions.md)
159
+ - [Built-in evaluator reference](docs/foundry-evaluation-sdk-built-in-evaluators.md)
160
+ - [Release process](docs/release-process.md)
161
+
162
+ ## Contributing
163
+
164
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for development, testing, and contribution guidance.
@@ -96,8 +96,10 @@ Common `agent:` values:
96
96
  | `"model:gpt-4o-mini"` | Direct model deployment |
97
97
 
98
98
  HTTP targets can add top-level mapping fields such as `request_field`,
99
- `response_field`, `tool_calls_field`, `auth_header_env`, and
100
- `extra_fields`.
99
+ `response_fields`, `tool_calls_field`, `auth_header_env`, and `extra_fields`.
100
+ Use `response_fields.response` for the final answer and
101
+ `response_fields.context` for retrieved context. Use `response_source: dataset`
102
+ when each dataset row already contains the response to evaluate.
101
103
 
102
104
  ### Dataset
103
105
 
@@ -198,6 +200,8 @@ AgentOps auto-selects common evaluation patterns from the dataset:
198
200
 
199
201
  Use one of the three hands-on tutorials for scenario coverage:
200
202
 
203
+ - [Evaluation paths](evaluation.md) explains when to use a static dataset,
204
+ grey-box HTTP response mapping, or telemetry/trace import.
201
205
  - [Foundry Prompt Agent tutorial](tutorial-prompt-agent-quickstart.md) for Foundry
202
206
  prompt agents referenced as `name:version`.
203
207
  - [Hosted or HTTP Agent tutorial](tutorial-hosted-agent-quickstart.md) for Foundry
@@ -215,9 +219,13 @@ the fields your target needs:
215
219
  version: 1
216
220
  agent: "https://api.example.com/chat"
217
221
  dataset: .agentops/data/support.jsonl
222
+ response_source: agent
218
223
 
224
+ protocol: http-json
219
225
  request_field: message
220
- response_field: text
226
+ response_fields:
227
+ response: text
228
+ context: retrieved_context
221
229
 
222
230
  thresholds:
223
231
  coherence: ">=3"