agentops-accelerator 0.4.1__tar.gz → 0.4.3__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 (323) hide show
  1. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/copilot-instructions.md +1 -0
  2. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/AGENTS.md +5 -4
  3. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/CHANGELOG.md +30 -0
  4. agentops_accelerator-0.4.3/PKG-INFO +119 -0
  5. agentops_accelerator-0.4.3/README.md +66 -0
  6. agentops_accelerator-0.4.1/docs/tutorial-prompt-agent-quickstart.md → agentops_accelerator-0.4.3/docs/tutorial-prompt-agent.md +20 -20
  7. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/README.md +1 -1
  8. {agentops_accelerator-0.4.1/src/agentops/templates → agentops_accelerator-0.4.3/plugins/agentops}/skills/agentops-config/SKILL.md +1 -1
  9. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/skills/agentops-eval/SKILL.md +19 -2
  10. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/pyproject.toml +4 -6
  11. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/foundry_config.py +1 -1
  12. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/foundry_control.py +1 -1
  13. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/results_history.py +1 -1
  14. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/cli/app.py +149 -1
  15. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/prompt_deploy.py +170 -2
  16. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/runtime.py +1 -1
  17. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/azd_eval_init.py +76 -5
  18. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml +1 -1
  19. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml +1 -1
  20. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml +1 -1
  21. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml +1 -1
  22. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml +1 -1
  23. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml +1 -1
  24. {agentops_accelerator-0.4.1/plugins/agentops → agentops_accelerator-0.4.3/src/agentops/templates}/skills/agentops-config/SKILL.md +1 -1
  25. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/skills/agentops-eval/SKILL.md +19 -2
  26. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-dev-azd.yml +1 -1
  27. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-dev.yml +1 -1
  28. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-prompt-agent.yml +1 -1
  29. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-qa-azd.yml +1 -1
  30. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-qa.yml +1 -1
  31. agentops_accelerator-0.4.3/src/agentops_accelerator.egg-info/PKG-INFO +119 -0
  32. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops_accelerator.egg-info/SOURCES.txt +1 -1
  33. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops_accelerator.egg-info/requires.txt +4 -6
  34. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_azd_eval_init.py +16 -6
  35. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_prompt_deploy.py +209 -1
  36. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/uv.lock +9 -11
  37. agentops_accelerator-0.4.1/PKG-INFO +0 -283
  38. agentops_accelerator-0.4.1/README.md +0 -229
  39. agentops_accelerator-0.4.1/src/agentops_accelerator.egg-info/PKG-INFO +0 -283
  40. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.claude-plugin/marketplace.json +0 -0
  41. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.gitattributes +0 -0
  42. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/actions/azure-oidc-login/action.yml +0 -0
  43. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/code-quality-py.instructions.md +0 -0
  44. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/dependabot.yml +0 -0
  45. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/extensions/agentops-skills/extension.mjs +0 -0
  46. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/plugin/marketplace.json +0 -0
  47. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/skills/release-management/SKILL.md +0 -0
  48. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/_build.yml +0 -0
  49. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/agentops-watchdog.yml +0 -0
  50. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/ci.yml +0 -0
  51. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/cut-release.yml +0 -0
  52. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/e2e.yml +0 -0
  53. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/release.yml +0 -0
  54. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.github/workflows/staging.yml +0 -0
  55. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.gitignore +0 -0
  56. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.pre-commit-config.yaml +0 -0
  57. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.vscode/launch.json +0 -0
  58. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.vscode/settings.json +0 -0
  59. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/.vscode/tasks.json +0 -0
  60. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/CONTRIBUTING.md +0 -0
  61. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/LICENSE +0 -0
  62. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/SECURITY.md +0 -0
  63. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/bundles.md +0 -0
  64. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/ci-github-actions.md +0 -0
  65. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/concepts.md +0 -0
  66. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/doctor-checks.md +0 -0
  67. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/doctor-explained.md +0 -0
  68. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/e2e-live-architecture.md +0 -0
  69. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/e2e-live-setup.md +0 -0
  70. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/foundry-evaluation-sdk-built-in-evaluators.md +0 -0
  71. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/how-it-works.md +0 -0
  72. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/media/agentops-diagrams.vsdx +0 -0
  73. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/media/foundry-control-plane.png +0 -0
  74. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/release-process.md +0 -0
  75. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/tutorial-end-to-end.md +0 -0
  76. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/docs/tutorial-hosted-agent-quickstart.md +0 -0
  77. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/examples/flat-quickstart/README.md +0 -0
  78. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/examples/flat-quickstart/agentops.yaml +0 -0
  79. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/examples/flat-quickstart/dataset.jsonl +0 -0
  80. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/icon.png +0 -0
  81. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/infra/e2e/agent-app/Dockerfile +0 -0
  82. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/infra/e2e/agent-app/app.py +0 -0
  83. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/infra/e2e/agent-app/requirements.txt +0 -0
  84. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/infra/e2e/bootstrap.bicep +0 -0
  85. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/infra/e2e/bootstrap.parameters.example.json +0 -0
  86. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/infra/e2e/perrun.bicep +0 -0
  87. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/launch.json +0 -0
  88. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/media/foundry.svg +0 -0
  89. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/media/quickstart.gif +0 -0
  90. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/.vscodeignore +0 -0
  91. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/LICENSE +0 -0
  92. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/package.json +0 -0
  93. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/plugin.json +0 -0
  94. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/skills/agentops-agent/SKILL.md +0 -0
  95. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/skills/agentops-dataset/SKILL.md +0 -0
  96. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/skills/agentops-governance/SKILL.md +0 -0
  97. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/skills/agentops-report/SKILL.md +0 -0
  98. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/plugins/agentops/skills/agentops-workflow/SKILL.md +0 -0
  99. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/create_support_agent.py +0 -0
  100. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/cut-release.ps1 +0 -0
  101. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/cut-release.sh +0 -0
  102. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_aggregate_summary.py +0 -0
  103. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_data/basic.jsonl +0 -0
  104. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_data/rag.jsonl +0 -0
  105. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_data/tools.jsonl +0 -0
  106. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_demo.py +0 -0
  107. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_hosted_agent.py +0 -0
  108. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_make_transcript.py +0 -0
  109. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/e2e_render_config.py +0 -0
  110. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/release.ps1 +0 -0
  111. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/release.sh +0 -0
  112. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/setup-e2e-new-tenant.ps1 +0 -0
  113. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/staging.ps1 +0 -0
  114. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/staging.sh +0 -0
  115. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/sync-skills.ps1 +0 -0
  116. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/scripts/sync-skills.sh +0 -0
  117. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/setup.cfg +0 -0
  118. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/__init__.py +0 -0
  119. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/__main__.py +0 -0
  120. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/__init__.py +0 -0
  121. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/_legacy_ids.py +0 -0
  122. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/analyzer.py +0 -0
  123. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/__init__.py +0 -0
  124. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/_rbac_authorization.py +0 -0
  125. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/catalog.py +0 -0
  126. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/errors.py +0 -0
  127. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/governance.py +0 -0
  128. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/latency.py +0 -0
  129. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/observability.py +0 -0
  130. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/opex.py +0 -0
  131. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/opex_workspace.py +0 -0
  132. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture.py +0 -0
  133. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture_rules/__init__.py +0 -0
  134. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture_rules/content_filter.py +0 -0
  135. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture_rules/diagnostics.py +0 -0
  136. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture_rules/local_auth.py +0 -0
  137. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture_rules/managed_identity.py +0 -0
  138. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/posture_rules/network.py +0 -0
  139. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/rbac_openai_data_plane.py +0 -0
  140. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/regression.py +0 -0
  141. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/release_readiness.py +0 -0
  142. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/safety.py +0 -0
  143. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/checks/spec_conformance.py +0 -0
  144. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/cockpit.py +0 -0
  145. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/config.py +0 -0
  146. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/findings.py +0 -0
  147. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/history.py +0 -0
  148. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/knowledge/__init__.py +0 -0
  149. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/knowledge/waf-checklist.csv +0 -0
  150. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/__init__.py +0 -0
  151. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_base.py +0 -0
  152. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_bundle_rule.py +0 -0
  153. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_client.py +0 -0
  154. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_dataset_rules.py +0 -0
  155. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_engine.py +0 -0
  156. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_prompt_rules.py +0 -0
  157. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/llm_assist/_spec_rules.py +0 -0
  158. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/production_telemetry.py +0 -0
  159. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/report.py +0 -0
  160. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/server/__init__.py +0 -0
  161. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/server/app.py +0 -0
  162. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/server/auth.py +0 -0
  163. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/server/chat.py +0 -0
  164. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/server/protocol.py +0 -0
  165. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/__init__.py +0 -0
  166. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/_credentials.py +0 -0
  167. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/azure_monitor.py +0 -0
  168. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/azure_resources.py +0 -0
  169. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/spec_detectors/__init__.py +0 -0
  170. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/spec_detectors/_base.py +0 -0
  171. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/spec_detectors/agents_md.py +0 -0
  172. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/sources/spec_detectors/spec_kit.py +0 -0
  173. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/agent/time_range.py +0 -0
  174. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/cli/__init__.py +0 -0
  175. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/__init__.py +0 -0
  176. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/agentops_config.py +0 -0
  177. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/azd_eval.py +0 -0
  178. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/config_loader.py +0 -0
  179. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/evaluators.py +0 -0
  180. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/governance.py +0 -0
  181. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/release_evidence.py +0 -0
  182. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/core/results.py +0 -0
  183. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/mcp/__init__.py +0 -0
  184. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/mcp/server.py +0 -0
  185. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/__init__.py +0 -0
  186. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/azd_runner.py +0 -0
  187. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/cloud_results.py +0 -0
  188. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/cloud_runner.py +0 -0
  189. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/comparison.py +0 -0
  190. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/diagnostics.py +0 -0
  191. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/invocations.py +0 -0
  192. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/official_eval.py +0 -0
  193. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/orchestrator.py +0 -0
  194. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/publisher.py +0 -0
  195. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/reporter.py +0 -0
  196. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/pipeline/thresholds.py +0 -0
  197. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/__init__.py +0 -0
  198. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/assert_runner.py +0 -0
  199. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/cicd.py +0 -0
  200. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/eval_analysis.py +0 -0
  201. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/evidence_pack.py +0 -0
  202. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/initializer.py +0 -0
  203. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/preflight.py +0 -0
  204. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/redteam_runner.py +0 -0
  205. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/setup_wizard.py +0 -0
  206. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/skills.py +0 -0
  207. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/trace_promotion.py +0 -0
  208. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/services/workflow_analysis.py +0 -0
  209. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/.gitignore +0 -0
  210. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/__init__.py +0 -0
  211. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/agent-server/Dockerfile +0 -0
  212. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/agent-server/README.md +0 -0
  213. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/agent-server/main.bicep +0 -0
  214. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/agent.yaml +0 -0
  215. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/agentops.yaml +0 -0
  216. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/foundry.svg +0 -0
  217. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/icon.png +0 -0
  218. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml +0 -0
  219. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml +0 -0
  220. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-pr.yml +0 -0
  221. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/pipelines/azuredevops/agentops-watchdog.yml +0 -0
  222. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/project.gitignore +0 -0
  223. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/sample-traces.jsonl +0 -0
  224. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/skills/agentops-agent/SKILL.md +0 -0
  225. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/skills/agentops-dataset/SKILL.md +0 -0
  226. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/skills/agentops-governance/SKILL.md +0 -0
  227. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/skills/agentops-report/SKILL.md +0 -0
  228. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/skills/agentops-workflow/SKILL.md +0 -0
  229. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/smoke.jsonl +0 -0
  230. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/waf-checklist.README.md +0 -0
  231. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/waf-checklist.csv +0 -0
  232. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-prod-azd.yml +0 -0
  233. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-deploy-prod.yml +0 -0
  234. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-pr-prompt-agent.yml +0 -0
  235. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-pr.yml +0 -0
  236. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/templates/workflows/agentops-watchdog.yml +0 -0
  237. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/__init__.py +0 -0
  238. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/azd_env.py +0 -0
  239. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/azure_endpoints.py +0 -0
  240. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/colors.py +0 -0
  241. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/dotenv_loader.py +0 -0
  242. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/foundry_discovery.py +0 -0
  243. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/logging.py +0 -0
  244. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/telemetry.py +0 -0
  245. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops/utils/yaml.py +0 -0
  246. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops_accelerator.egg-info/dependency_links.txt +0 -0
  247. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops_accelerator.egg-info/entry_points.txt +0 -0
  248. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/src/agentops_accelerator.egg-info/top_level.txt +0 -0
  249. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/TESTING.md +0 -0
  250. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/fixtures/fake_adapter.py +0 -0
  251. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/fixtures/fake_eval_runner.py +0 -0
  252. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/integration/.gitkeep +0 -0
  253. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/integration/test_cli_flat_schema.py +0 -0
  254. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/integration/test_pipeline_smoke.py +0 -0
  255. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/.gitkeep +0 -0
  256. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_analyzer.py +0 -0
  257. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_categories.py +0 -0
  258. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_errors.py +0 -0
  259. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_foundry_config.py +0 -0
  260. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_observability.py +0 -0
  261. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_opex.py +0 -0
  262. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_opex_workspace.py +0 -0
  263. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_rbac_openai_data_plane.py +0 -0
  264. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_regression.py +0 -0
  265. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_safety.py +0 -0
  266. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_checks_spec_conformance.py +0 -0
  267. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_cli.py +0 -0
  268. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_config.py +0 -0
  269. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_findings.py +0 -0
  270. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_history.py +0 -0
  271. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_opex_workspace_check.py +0 -0
  272. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_posture_rules.py +0 -0
  273. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_results_history.py +0 -0
  274. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agent_server.py +0 -0
  275. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_agentops_config.py +0 -0
  276. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_assert_and_redteam_runners.py +0 -0
  277. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_azd_env.py +0 -0
  278. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_azd_eval.py +0 -0
  279. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_azd_runner.py +0 -0
  280. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_azure_endpoints.py +0 -0
  281. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_azure_resources_discovery.py +0 -0
  282. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cicd.py +0 -0
  283. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cli_cockpit_connection_summary.py +0 -0
  284. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cli_cockpit_port_conflict.py +0 -0
  285. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cli_commands.py +0 -0
  286. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cli_explain.py +0 -0
  287. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cloud_results.py +0 -0
  288. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cloud_runner.py +0 -0
  289. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_cockpit.py +0 -0
  290. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_diagnostics.py +0 -0
  291. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_doctor_catalog.py +0 -0
  292. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_doctor_cli_explain.py +0 -0
  293. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_dotenv_loader.py +0 -0
  294. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_e2e_render.py +0 -0
  295. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_eval_analysis.py +0 -0
  296. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_eval_run_grader_errors.py +0 -0
  297. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_evaluators.py +0 -0
  298. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_foundry_discovery.py +0 -0
  299. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_governance.py +0 -0
  300. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_init_command.py +0 -0
  301. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_initializer.py +0 -0
  302. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_invocations.py +0 -0
  303. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_knowledge_loader.py +0 -0
  304. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_llm_assist.py +0 -0
  305. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_llm_assist_spec_rules.py +0 -0
  306. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_mcp_server.py +0 -0
  307. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_official_eval.py +0 -0
  308. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_pipeline_publisher.py +0 -0
  309. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_pipeline_reporter.py +0 -0
  310. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_preflight.py +0 -0
  311. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_production_telemetry.py +0 -0
  312. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_release_evidence.py +0 -0
  313. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_runtime_conversation.py +0 -0
  314. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_runtime_model_config.py +0 -0
  315. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_setup_wizard.py +0 -0
  316. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_shared_credentials.py +0 -0
  317. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_skills.py +0 -0
  318. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_skills_sync.py +0 -0
  319. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_telemetry.py +0 -0
  320. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_time_range.py +0 -0
  321. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_trace_promotion.py +0 -0
  322. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tests/unit/test_workflow_analysis.py +0 -0
  323. {agentops_accelerator-0.4.1 → agentops_accelerator-0.4.3}/tombstones/vscode/CDN_DEPRECATION_REQUEST.md +0 -0
@@ -19,6 +19,7 @@ Read these first for detailed architecture and product context:
19
19
  - `agentops explain [COMMAND...] [--no-pager] [--format text|markdown|html] [--out PATH] [--open]`
20
20
  - `agentops init [--force] [--dir PATH] [--no-prompt] [--no-appinsights] [--azd-env NAME] [--project-endpoint URL] [--agent REF] [--dataset PATH] [--appinsights-connection-string STR]`
21
21
  - `agentops init show [--dir PATH] [--reveal-secrets]`
22
+ - `agentops prompt pull [--config PATH] [--out PATH] [--project-endpoint URL] [--force] [--update-config|--no-update-config]`
22
23
  - `agentops eval analyze [--dir PATH] [--format text|markdown|json] [--out PATH]`
23
24
  - `agentops eval run [--config PATH] [--baseline PATH] [--output DIR]`
24
25
  - `agentops eval promote-traces --source PATH [--out PATH] [--max-rows N] [--label-mode self-similarity|pending] [--apply]`
@@ -40,6 +40,7 @@ Public CLI contract:
40
40
  - `agentops init [--force] [--dir PATH] [--no-prompt] [--no-appinsights] [--azd-env NAME] [--project-endpoint URL] [--agent REF] [--dataset PATH] [--appinsights-connection-string STR]`
41
41
  - `agentops init show [--dir PATH] [--reveal-secrets]`
42
42
  - `agentops init explain [--no-pager] [--format text|markdown|html] [--out PATH] [--open]`
43
+ - `agentops prompt pull [--config PATH] [--out PATH] [--project-endpoint URL] [--force] [--update-config|--no-update-config]`
43
44
  - `agentops eval analyze [--dir PATH] [--format text|markdown|json] [--out PATH]`
44
45
  - `agentops eval init [--dir PATH] [--force]`
45
46
  - `agentops eval run [--config PATH] [--baseline PATH] [--output DIR]`
@@ -222,9 +223,9 @@ Coverage highlights:
222
223
  docs/
223
224
  ├── concepts.md # Core concepts and evaluation scenarios
224
225
  ├── how-it-works.md # Architecture and request flow
225
- ├── tutorial-prompt-agent-quickstart.md # Tutorial for Foundry Prompt Agents
226
- ├── tutorial-hosted-agent-quickstart.md # Tutorial for Foundry hosted / HTTP agents
227
- ├── tutorial-end-to-end.md # End-to-end release-readiness tutorial (Foundry + AgentOps)
226
+ ├── tutorial-prompt-agent.md # Tutorial for Foundry Prompt Agents
227
+ ├── tutorial-hosted-agent.md # Tutorial for Foundry hosted / HTTP agents
228
+ ├── tutorial-end-to-end.md # Full end-to-end release-readiness tutorial (Foundry + AgentOps)
228
229
  ├── doctor-explained.md # Doctor checks, history, and operations model
229
230
  ├── ci-github-actions.md # CI/CD setup
230
231
  ├── release-process.md # Release and versioning
@@ -472,7 +473,7 @@ Authentication rule (Windows-friendly):
472
473
 
473
474
  Recommended default behavior:
474
475
  - Keep Foundry cloud mode as the default for `name:version` agents
475
- - Install Azure runtime dependencies via the `[foundry]` extra
476
+ - Install AgentOps normally; Foundry runtime dependencies are part of the default package
476
477
  - Keep Azure SDK imports inside functions (lazy) in `pipeline/` and `agent/`
477
478
  - Do not hardcode `api_version` in `get_openai_client()` — the SDK picks it
478
479
 
@@ -5,6 +5,36 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [0.4.3] - 2026-06-17
9
+
10
+ ### Added
11
+ - **Prompt-agent tutorials no longer require manual portal copy/paste.**
12
+ `agentops prompt pull` reads the configured Foundry prompt agent
13
+ (`agent: name:version`), validates that the Foundry definition is actually a
14
+ prompt agent, and writes the reviewed Sandbox instructions to
15
+ `.agentops/prompts/<agent-name>.prompt.md` by default. Before writing, the CLI
16
+ prints the resolved agent, endpoint, endpoint source, and destination file so
17
+ operators can catch the wrong environment early. Changed prompt files are
18
+ protected by default and require `--force` to overwrite reviewed local edits.
19
+ The command updates `prompt_file` in `agentops.yaml` unless
20
+ `--no-update-config` is passed, and it can resolve the endpoint from
21
+ `--project-endpoint`, `agentops.yaml`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT`, or
22
+ the active `.azure/<env>/.env`. The prompt-agent tutorial and packaged
23
+ `agentops-eval` skill now use this command instead of a manual here-string.
24
+ ([#322](https://github.com/Azure/agentops/issues/322))
25
+
26
+ ### Changed
27
+ - **`agentops eval init` now recommends evaluators from the agent and dataset
28
+ shape.** The azd bootstrap path now reuses the same AgentOps evaluator
29
+ catalog as `agentops eval run`: free-form answer datasets get answer-quality
30
+ checks, RAG-shaped datasets get groundedness / relevance / retrieval checks,
31
+ and tool-use datasets get tool-call / intent / task-adherence checks while
32
+ avoiding literal-answer similarity metrics. Explicit `evaluators:` entries in
33
+ `agentops.yaml` still win. The CLI prints the recommendation source, detected
34
+ signals, and selected azd built-ins before reporting the generated
35
+ `eval.yaml`, so users can see why those evaluators were chosen.
36
+ ([#323](https://github.com/Azure/agentops/issues/323))
37
+
8
38
  ## [0.4.1] - 2026-06-15
9
39
 
10
40
  ### Changed
@@ -0,0 +1,119 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentops-accelerator
3
+ Version: 0.4.3
4
+ Summary: Release readiness gates and evidence for Microsoft Foundry agents
5
+ License: MIT License
6
+
7
+ Copyright (c) Microsoft Corporation.
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
26
+
27
+ Requires-Python: >=3.11
28
+ Description-Content-Type: text/markdown
29
+ License-File: LICENSE
30
+ Requires-Dist: typer<1.0,>=0.12
31
+ Requires-Dist: pydantic<3,>=2
32
+ Requires-Dist: ruamel.yaml<1.0,>=0.18
33
+ Requires-Dist: azure-ai-projects<3.0,>=2.0.1
34
+ Requires-Dist: azure-ai-evaluation<2.0,>=1.0
35
+ Requires-Dist: azure-identity<2.0,>=1.17
36
+ Requires-Dist: azure-monitor-opentelemetry<2.0,>=1.6
37
+ Requires-Dist: pandas<4.0,>=2.0
38
+ Provides-Extra: mcp
39
+ Requires-Dist: mcp<2,>=1.0; extra == "mcp"
40
+ Provides-Extra: agent
41
+ Requires-Dist: fastapi<1.0,>=0.110; extra == "agent"
42
+ Requires-Dist: uvicorn[standard]<1.0,>=0.30; extra == "agent"
43
+ Requires-Dist: httpx<1.0,>=0.27; extra == "agent"
44
+ Requires-Dist: cryptography>=42; extra == "agent"
45
+ Requires-Dist: markdown<4.0,>=3.6; extra == "agent"
46
+ Requires-Dist: azure-monitor-query<3.0,>=1.3; extra == "agent"
47
+ Requires-Dist: azure-monitor-opentelemetry<2.0,>=1.6; extra == "agent"
48
+ Requires-Dist: azure-identity<2.0,>=1.17; extra == "agent"
49
+ Requires-Dist: azure-mgmt-cognitiveservices<15.0,>=13.5; extra == "agent"
50
+ Requires-Dist: azure-mgmt-monitor<7.0,>=6.0; extra == "agent"
51
+ Requires-Dist: azure-mgmt-authorization<5.0,>=4.0; extra == "agent"
52
+ Dynamic: license-file
53
+
54
+ <h1 align="center">AgentOps Accelerator</h1>
55
+
56
+ <p align="center">
57
+ <b>Evaluate. Ship. Observe. Own.</b>
58
+ <br/>
59
+ Continuous evaluation, safety testing, observability, and release readiness for Microsoft Foundry agents.
60
+ </p>
61
+
62
+ <p align="center">
63
+ <a href="https://aka.ms/agentops-accelerator"><b>Documentation</b></a> |
64
+ <a href="https://pypi.org/project/agentops-accelerator/">PyPI</a> |
65
+ <a href="https://marketplace.visualstudio.com/items?itemName=AgentOpsAccelerator.agentops-accelerator">VS Code Extension</a> |
66
+ <a href="https://github.com/Azure/agentops/releases/latest">Latest release</a>
67
+ </p>
68
+
69
+ <p align="center">
70
+ <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>
71
+ <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>
72
+ <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>
73
+ <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>
74
+ <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>
75
+ </p>
76
+
77
+ 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.
78
+
79
+ ## Get started
80
+
81
+ ```powershell
82
+ python -m pip install agentops-accelerator
83
+ agentops init
84
+ ```
85
+
86
+ `agentops init` starts a guided setup that creates your `agentops.yaml` and
87
+ `.agentops/` workspace.
88
+
89
+ Next, follow the tutorial that matches your agent type:
90
+
91
+ - [Prompt Agent tutorial](https://azure.github.io/agentops/tutorial-prompt-agent/)
92
+ - [Hosted or HTTP Agent tutorial](https://azure.github.io/agentops/tutorial-hosted-agent/)
93
+
94
+ ## What it helps you do
95
+
96
+ Use AgentOps Accelerator when you need to:
97
+
98
+ - Evaluate an agent before release
99
+ - Compare changes across versions
100
+ - Capture release evidence
101
+ - Monitor agent quality and regressions
102
+ - Give teams a repeatable way to own agent behavior in production
103
+
104
+ The accelerator keeps the local workflow simple, then points you to the full
105
+ docs when you are ready to configure pipelines, dashboards, and release
106
+ practices.
107
+
108
+ ## Learn more
109
+
110
+ For setup guides, tutorials, architecture, CI/CD guidance, Doctor checks, and
111
+ evaluator reference, see:
112
+
113
+ <p align="center">
114
+ <a href="https://aka.ms/agentops-accelerator"><b>https://aka.ms/agentops-accelerator</b></a>
115
+ </p>
116
+
117
+ ## Contributing
118
+
119
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for development, testing, and contribution guidance.
@@ -0,0 +1,66 @@
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, see:
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
+ ## Contributing
65
+
66
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for development, testing, and contribution guidance.
@@ -130,7 +130,7 @@ cd agentops-prompt-quickstart
130
130
  python -m venv .venv
131
131
  .\.venv\Scripts\Activate.ps1
132
132
  python -m pip install -U pip
133
- python -m pip install "agentops-accelerator[foundry,agent]"
133
+ python -m pip install agentops-accelerator
134
134
  agentops --version
135
135
  ```
136
136
 
@@ -139,7 +139,7 @@ path, install the aligned reference branch so the CLI, generated
139
139
  workflows, and tutorial steps stay in sync:
140
140
 
141
141
  ```powershell
142
- python -m pip install "agentops-accelerator[foundry,agent] @ git+https://github.com/Azure/agentops.git@develop"
142
+ python -m pip install "agentops-accelerator @ git+https://github.com/Azure/agentops.git@develop"
143
143
  ```
144
144
 
145
145
  ## 2. Install the AgentOps Copilot skills
@@ -426,7 +426,7 @@ In the **sandbox** project only:
426
426
  > next-version flow.
427
427
 
428
428
  > **Prompt-as-code captures only the instructions.** Later in the
429
- > tutorial you will commit `.agentops/prompts/travel-agent.md` to git
429
+ > tutorial you will commit `.agentops/prompts/travel-agent.prompt.md` to git
430
430
  > and let CI use it as the prompt source. That file does not capture
431
431
  > the model deployment, parameters (temperature, top-p), tools, or
432
432
  > other agent settings — those come from `prompt_agent_bootstrap` on
@@ -709,31 +709,31 @@ evaluates and deploys comes from this file in git, not from manual edits
709
709
  in the Foundry portal.
710
710
 
711
711
  ```powershell
712
- New-Item -ItemType Directory -Force .agentops\prompts | Out-Null
713
- @'
714
- You are Travel Agent, a concise travel planning assistant.
712
+ agentops prompt pull
713
+ ```
715
714
 
716
- Help users plan short leisure trips. Always include:
717
- - a short summary;
718
- - a day-by-day plan when the user asks for an itinerary;
719
- - practical notes about budget, transit, weather, or booking constraints;
720
- - a reminder that you cannot make live reservations or purchases.
715
+ AgentOps reads `agent: travel-agent:2`, resolves the current Foundry
716
+ endpoint, validates that the Foundry definition is a prompt agent, and
717
+ writes the instructions to `.agentops/prompts/travel-agent.prompt.md`.
718
+ Before writing, it prints the resolved agent, endpoint, endpoint source,
719
+ and destination file so you can catch the wrong environment before the
720
+ prompt is saved.
721
721
 
722
- Ask one clarifying question only when the destination, duration, or
723
- traveler preference is missing. Do not invent booking confirmations,
724
- prices, or availability.
725
- '@ | Set-Content -Encoding utf8 .agentops\prompts\travel-agent.md
726
- ```
722
+ By default, the command refuses to overwrite a changed prompt file. Use
723
+ `--force` only when you intentionally want to replace reviewed local
724
+ prompt edits with the current Sandbox version. Use `--out <path>` if you
725
+ need a different file name, but keep prompt source under
726
+ `.agentops/prompts/` unless your repository has a stronger convention.
727
727
 
728
- Then tell `agentops.yaml` where to find the file and add
729
- `prompt_agent_bootstrap` so CI can auto-create the agent in dev (and
730
- later qa / prod) on the first deploy:
728
+ Then add `prompt_agent_bootstrap` so CI can auto-create the agent in dev
729
+ (and later qa / prod) on the first deploy. `agentops prompt pull` writes
730
+ `prompt_file` for you when it is missing:
731
731
 
732
732
  ```yaml
733
733
  version: 1
734
734
  agent: travel-agent:2
735
735
  dataset: .agentops/data/travel-smoke.jsonl
736
- prompt_file: .agentops/prompts/travel-agent.md
736
+ prompt_file: .agentops/prompts/travel-agent.prompt.md
737
737
  prompt_agent_bootstrap:
738
738
  model: gpt-4o-mini
739
739
  description: "Helps plan short trips and explains tradeoffs."
@@ -46,7 +46,7 @@ skills from the extension/plugin.
46
46
  Run this from the repository where you want skills checked in:
47
47
 
48
48
  ```bash
49
- python -m pip install "agentops-accelerator[foundry] @ git+https://github.com/Azure/agentops.git@main"
49
+ python -m pip install "agentops-accelerator @ git+https://github.com/Azure/agentops.git@main"
50
50
  agentops skills install --platform copilot --force
51
51
  ```
52
52
 
@@ -17,7 +17,7 @@ then return here once there is a `name:version` or URL.
17
17
 
18
18
  ## Step 0 - Prerequisites
19
19
 
20
- 1. `pip install "agentops-accelerator[foundry] @ git+https://github.com/Azure/agentops.git@main"` if `agentops` is missing.
20
+ 1. `pip install "agentops-accelerator @ git+https://github.com/Azure/agentops.git@main"` if `agentops` is missing.
21
21
  2. Run `agentops eval analyze` first. If it reports missing or ambiguous
22
22
  target/dataset/scenario signals, use this skill to adapt the config.
23
23
  3. If `agentops.yaml` does not exist, run `agentops init` first. The init
@@ -15,7 +15,7 @@ with a `name:version` or URL.
15
15
 
16
16
  ## Step 0 - Setup
17
17
 
18
- 1. Install if missing: `pip install "agentops-accelerator[foundry] @ git+https://github.com/Azure/agentops.git@main"`.
18
+ 1. Install if missing: `pip install "agentops-accelerator @ git+https://github.com/Azure/agentops.git@main"`.
19
19
  2. If `agentops.yaml` does not exist at the project root, run `agentops init`.
20
20
  The init wizard prompts (azd-style) for the Foundry project endpoint,
21
21
  agent reference, and dataset path, persists each answer to
@@ -93,7 +93,7 @@ done
93
93
  ```
94
94
 
95
95
  PowerShell equivalent: replace `$(...)` with the PowerShell variable
96
- assignments shown in `docs/tutorial-prompt-agent-quickstart.md`.
96
+ assignments shown in `docs/tutorial-prompt-agent.md`.
97
97
 
98
98
  If the user has not run `az login` yet, do that first. If
99
99
  `az cognitiveservices account list` returns an empty RG, the AI Services
@@ -143,6 +143,23 @@ for the `agent:` field of `agentops.yaml`:
143
143
 
144
144
  If nothing is found, ask the user once for the agent identifier.
145
145
 
146
+ For Foundry Prompt Agents authored in the Sandbox portal, do not copy/paste the
147
+ instructions into a file manually. After `agentops.yaml` contains `agent:
148
+ name:version` and the correct project endpoint is available from
149
+ `agentops.yaml`, `AZURE_AI_FOUNDRY_PROJECT_ENDPOINT`, or the active
150
+ `.azure/<env>/.env`, run:
151
+
152
+ ```bash
153
+ agentops prompt pull
154
+ ```
155
+
156
+ This writes `.agentops/prompts/<agent-name>.prompt.md` by default, updates
157
+ `prompt_file` in `agentops.yaml` when needed, prints the resolved endpoint and
158
+ agent version before writing, validates that the Foundry definition is a prompt
159
+ agent, and refuses to overwrite changed prompt files unless `--force` is used.
160
+ Use `--out` only when the repository already has a stronger prompt-file
161
+ convention.
162
+
146
163
  ## Step 3 - Make sure the dataset exists
147
164
 
148
165
  `agentops.yaml` points to a JSONL file (default
@@ -13,17 +13,15 @@ dependencies = [
13
13
  "pydantic>=2,<3",
14
14
  "ruamel.yaml>=0.18,<1.0",
15
15
  "azure-ai-projects>=2.0.1,<3.0",
16
- ]
17
- license = { file = "LICENSE" }
18
-
19
- [project.optional-dependencies]
20
- mcp = ["mcp>=1.0,<2"]
21
- foundry = [
22
16
  "azure-ai-evaluation>=1.0,<2.0",
23
17
  "azure-identity>=1.17,<2.0",
24
18
  "azure-monitor-opentelemetry>=1.6,<2.0",
25
19
  "pandas>=2.0,<4.0",
26
20
  ]
21
+ license = { file = "LICENSE" }
22
+
23
+ [project.optional-dependencies]
24
+ mcp = ["mcp>=1.0,<2"]
27
25
  agent = [
28
26
  "fastapi>=0.110,<1.0",
29
27
  "uvicorn[standard]>=0.30,<1.0",
@@ -60,7 +60,7 @@ def _no_foundry_control_finding(diag: dict) -> Finding:
60
60
  recommendation=(
61
61
  "Set `sources.foundry_control.project_endpoint` (or the "
62
62
  "`AZURE_AI_FOUNDRY_PROJECT_ENDPOINT` env var) in "
63
- "`.agentops/agent.yaml`, install the `[foundry]` extra, "
63
+ "`.agentops/agent.yaml`, install AgentOps, "
64
64
  "and grant the running identity at least `Reader` on the "
65
65
  "Foundry project. If this project does not use Foundry, "
66
66
  "set `sources.foundry_control.enabled: false` to opt out "
@@ -91,7 +91,7 @@ def collect_foundry_control(
91
91
  diagnostics["status"] = "skipped"
92
92
  diagnostics["reason"] = (
93
93
  "azure-ai-projects / azure-identity not installed "
94
- "(install agentops-accelerator[foundry])"
94
+ "(install agentops-accelerator)"
95
95
  )
96
96
  log.info("azure-ai-projects unavailable: %s", exc)
97
97
  return FoundryControlPayload(diagnostics=diagnostics)
@@ -301,7 +301,7 @@ def _collect_foundry_eval_runs(
301
301
  diagnostics["status"] = "skipped"
302
302
  diagnostics["reason"] = (
303
303
  "azure-ai-projects / azure-identity not installed "
304
- "(install agentops-accelerator[foundry])"
304
+ "(install agentops-accelerator)"
305
305
  )
306
306
  log.info("Foundry cloud eval history unavailable: %s", exc)
307
307
  return [], diagnostics