agentops-accelerator 0.5.3__tar.gz → 0.7.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.
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.claude-plugin/marketplace.json +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/plugin/marketplace.json +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/_build.yml +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/agentops-watchdog.yml +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/ci.yml +6 -6
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/cut-release.yml +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/e2e.yml +9 -9
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/release.yml +3 -3
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/workflows/staging.yml +2 -2
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/AGENTS.md +4 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/CHANGELOG.md +73 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/PKG-INFO +104 -5
- agentops_accelerator-0.7.0/README.md +164 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/ci-github-actions.md +6 -6
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/concepts.md +11 -3
- agentops_accelerator-0.7.0/docs/evaluation.md +257 -0
- agentops_accelerator-0.7.0/docs/foundry-evaluation-sdk-built-in-evaluators.md +210 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/how-it-works.md +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/tutorial-end-to-end.md +2 -2
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/tutorial-hosted-agent-quickstart.md +9 -2
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/tutorial-prompt-agent.md +7 -7
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/package.json +1 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/plugin.json +1 -1
- {agentops_accelerator-0.5.3/src/agentops/templates → agentops_accelerator-0.7.0/plugins/agentops}/skills/agentops-workflow/SKILL.md +14 -13
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/pyproject.toml +4 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/catalog.py +13 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture_rules/__init__.py +4 -0
- agentops_accelerator-0.7.0/src/agentops/agent/checks/posture_rules/aoai_diagnostic_categories.py +88 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/cockpit.py +270 -60
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/cli/app.py +386 -2
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/agentops_config.py +131 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/invocations.py +8 -8
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/orchestrator.py +63 -15
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/runtime.py +20 -3
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/cicd.py +6 -7
- agentops_accelerator-0.7.0/src/agentops/services/dashboard.py +503 -0
- agentops_accelerator-0.7.0/src/agentops/services/telemetry_import.py +550 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml +2 -2
- {agentops_accelerator-0.5.3/plugins/agentops → agentops_accelerator-0.7.0/src/agentops/templates}/skills/agentops-workflow/SKILL.md +14 -13
- agentops_accelerator-0.7.0/src/agentops/templates/workbooks/README.md +99 -0
- agentops_accelerator-0.7.0/src/agentops/templates/workbooks/foundry-ops.workbook.json +479 -0
- agentops_accelerator-0.7.0/src/agentops/templates/workbooks/queries/capacity_ptu_spillover.kql +52 -0
- agentops_accelerator-0.7.0/src/agentops/templates/workbooks/queries/errors_throttling.kql +48 -0
- agentops_accelerator-0.7.0/src/agentops/templates/workbooks/queries/latency_percentiles.kql +74 -0
- agentops_accelerator-0.7.0/src/agentops/templates/workbooks/queries/traffic_tokens.kql +61 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-pr-prompt-agent.yml +4 -5
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops_accelerator.egg-info/PKG-INFO +104 -5
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops_accelerator.egg-info/SOURCES.txt +15 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops_accelerator.egg-info/requires.txt +1 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_posture_rules.py +83 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agentops_config.py +108 -1
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cicd.py +3 -2
- agentops_accelerator-0.7.0/tests/unit/test_cli_commands.py +185 -0
- agentops_accelerator-0.7.0/tests/unit/test_cli_dashboard.py +155 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cockpit.py +54 -23
- agentops_accelerator-0.7.0/tests/unit/test_dashboard.py +269 -0
- agentops_accelerator-0.7.0/tests/unit/test_http_response_fields.py +106 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_init_command.py +2 -2
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_runtime_conversation.py +25 -0
- agentops_accelerator-0.7.0/tests/unit/test_runtime_dataset_response_source.py +74 -0
- agentops_accelerator-0.7.0/tests/unit/test_telemetry_import.py +153 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/uv.lock +174 -172
- agentops_accelerator-0.5.3/README.md +0 -66
- agentops_accelerator-0.5.3/docs/foundry-evaluation-sdk-built-in-evaluators.md +0 -218
- agentops_accelerator-0.5.3/tests/unit/test_cli_commands.py +0 -85
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.gitattributes +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/actions/azure-oidc-login/action.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/code-quality-py.instructions.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/copilot-instructions.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/dependabot.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/extensions/agentops-skills/extension.mjs +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.github/skills/release-management/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.gitignore +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.pre-commit-config.yaml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.vscode/launch.json +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.vscode/settings.json +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/.vscode/tasks.json +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/CONTRIBUTING.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/LICENSE +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/SECURITY.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/bundles.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/doctor-checks.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/doctor-explained.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/e2e-live-architecture.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/e2e-live-setup.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/media/agentops-diagrams.vsdx +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/media/foundry-control-plane.png +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/docs/release-process.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/examples/flat-quickstart/README.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/examples/flat-quickstart/agentops.yaml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/examples/flat-quickstart/dataset.jsonl +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/icon.png +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/infra/e2e/agent-app/Dockerfile +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/infra/e2e/agent-app/app.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/infra/e2e/agent-app/requirements.txt +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/infra/e2e/bootstrap.bicep +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/infra/e2e/bootstrap.parameters.example.json +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/infra/e2e/perrun.bicep +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/launch.json +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/media/foundry.svg +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/media/quickstart.gif +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/.vscodeignore +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/LICENSE +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/README.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/skills/agentops-agent/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/skills/agentops-config/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/skills/agentops-dataset/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/skills/agentops-eval/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/skills/agentops-governance/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/plugins/agentops/skills/agentops-report/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/create_support_agent.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/cut-release.ps1 +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/cut-release.sh +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_aggregate_summary.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_data/basic.jsonl +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_data/rag.jsonl +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_data/tools.jsonl +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_demo.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_hosted_agent.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_make_transcript.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/e2e_render_config.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/release.ps1 +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/release.sh +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/setup-e2e-new-tenant.ps1 +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/staging.ps1 +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/staging.sh +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/sync-skills.ps1 +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/scripts/sync-skills.sh +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/setup.cfg +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/__main__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/_legacy_ids.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/analyzer.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/_rbac_authorization.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/errors.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/foundry_config.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/governance.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/latency.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/observability.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/opex.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/opex_workspace.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture_rules/content_filter.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture_rules/diagnostics.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture_rules/local_auth.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture_rules/managed_identity.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/posture_rules/network.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/rbac_openai_data_plane.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/regression.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/release_readiness.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/safety.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/checks/spec_conformance.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/config.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/findings.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/history.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/knowledge/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/knowledge/waf-checklist.csv +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_base.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_bundle_rule.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_client.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_dataset_rules.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_engine.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_prompt_rules.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/llm_assist/_spec_rules.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/production_telemetry.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/report.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/server/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/server/app.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/server/auth.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/server/chat.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/server/protocol.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/_credentials.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/azure_monitor.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/azure_resources.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/foundry_control.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/results_history.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/spec_detectors/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/spec_detectors/_base.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/spec_detectors/agents_md.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/sources/spec_detectors/spec_kit.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/agent/time_range.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/cli/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/azd_eval.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/config_loader.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/evaluators.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/governance.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/release_evidence.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/results.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/core/step_summary.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/mcp/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/mcp/server.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/azd_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/cloud_results.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/cloud_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/comparison.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/diagnostics.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/official_eval.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/prompt_deploy.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/publisher.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/reporter.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/pipeline/thresholds.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/assert_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/azd_eval_init.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/eval_analysis.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/evidence_pack.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/initializer.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/preflight.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/redteam_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/setup_wizard.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/skills.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/trace_promotion.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/services/workflow_analysis.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/.gitignore +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/agent-server/Dockerfile +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/agent-server/README.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/agent-server/main.bicep +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/agent.yaml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/agentops.yaml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/foundry.svg +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/icon.png +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-pr.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/pipelines/azuredevops/agentops-watchdog.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/project.gitignore +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/sample-traces.jsonl +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/skills/agentops-agent/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/skills/agentops-config/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/skills/agentops-dataset/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/skills/agentops-eval/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/skills/agentops-governance/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/skills/agentops-report/SKILL.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/smoke.jsonl +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/waf-checklist.README.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/waf-checklist.csv +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-dev-azd.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-dev.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-prod-azd.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-prod.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-prompt-agent.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-qa-azd.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-deploy-qa.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-pr.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/templates/workflows/agentops-watchdog.yml +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/__init__.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/azd_env.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/azure_endpoints.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/colors.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/dotenv_loader.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/foundry_discovery.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/logging.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/telemetry.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops/utils/yaml.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops_accelerator.egg-info/dependency_links.txt +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops_accelerator.egg-info/entry_points.txt +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/src/agentops_accelerator.egg-info/top_level.txt +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/TESTING.md +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/fixtures/fake_adapter.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/fixtures/fake_eval_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/integration/.gitkeep +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/integration/test_cli_flat_schema.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/integration/test_pipeline_smoke.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/.gitkeep +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_analyzer.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_categories.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_errors.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_foundry_config.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_observability.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_opex.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_opex_workspace.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_rbac_openai_data_plane.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_regression.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_safety.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_checks_spec_conformance.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_cli.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_config.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_findings.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_history.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_opex_workspace_check.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_results_history.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_agent_server.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_assert_and_redteam_runners.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_azd_env.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_azd_eval.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_azd_eval_init.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_azd_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_azure_endpoints.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_azure_resources_discovery.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cli_cockpit_connection_summary.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cli_cockpit_port_conflict.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cli_explain.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cloud_results.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_cloud_runner.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_diagnostics.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_doctor_catalog.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_doctor_cli_explain.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_dotenv_loader.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_e2e_render.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_eval_analysis.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_eval_run_grader_errors.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_evaluators.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_foundry_discovery.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_governance.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_http_streaming.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_initializer.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_invocations.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_knowledge_loader.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_llm_assist.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_llm_assist_spec_rules.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_mcp_server.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_official_eval.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_pipeline_publisher.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_pipeline_reporter.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_preflight.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_production_telemetry.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_prompt_deploy.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_release_evidence.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_runtime_model_config.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_runtime_response_fields.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_setup_wizard.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_shared_credentials.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_skills.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_skills_sync.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_step_summary.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_telemetry.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_time_range.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_trace_promotion.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_workflow_analysis.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.0}/tests/unit/test_yaml_utils.py +0 -0
- {agentops_accelerator-0.5.3 → agentops_accelerator-0.7.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.
|
|
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.
|
|
16
|
+
"version": "0.6.0",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"agentops",
|
|
19
19
|
"evaluation",
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
lint:
|
|
39
39
|
runs-on: ubuntu-latest
|
|
40
40
|
steps:
|
|
41
|
-
- uses: actions/checkout@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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.
|
|
@@ -36,7 +36,7 @@ jobs:
|
|
|
36
36
|
offline-smoke:
|
|
37
37
|
runs-on: ubuntu-latest
|
|
38
38
|
steps:
|
|
39
|
-
- uses: actions/checkout@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
140
|
+
- uses: actions/checkout@v7
|
|
141
141
|
|
|
142
142
|
- name: Sync VSIX version from branch name
|
|
143
143
|
run: |
|
|
@@ -14,7 +14,7 @@ The repository provides:
|
|
|
14
14
|
- A normalized output contract (`results.json`, `report.md`) for CI and PRs
|
|
15
15
|
- A release evidence contract (`evidence.json`, `evidence.md`) for production promotion reviews
|
|
16
16
|
- A local Cockpit (`agentops cockpit`) that links out to Foundry for runtime
|
|
17
|
-
observability and surfaces Doctor findings AgentOps
|
|
17
|
+
observability and surfaces Doctor findings AgentOps handles end-to-end
|
|
18
18
|
- A Doctor (`agentops doctor`) for readiness, regression, and OpEx checks
|
|
19
19
|
- AI Landing Zone deployment readiness checks that connect official preflight,
|
|
20
20
|
azd/Bicep workflow deployment, AgentOps eval gates, and private-network runner
|
|
@@ -53,6 +53,9 @@ Public CLI contract:
|
|
|
53
53
|
- `agentops doctor [--workspace PATH] [--config PATH] [--out PATH] [--lookback-days N] [--severity-fail SEVERITY] [--evidence-pack] [--evidence-out PATH]`
|
|
54
54
|
- `agentops doctor explain [--no-pager] [--format text|markdown|html] [--out PATH] [--open]`
|
|
55
55
|
- `agentops cockpit [--host HOST] [--port PORT] [--workspace PATH] [--no-preflight]`
|
|
56
|
+
- `agentops telemetry dashboard deploy [--dry-run] [--subscription ID] [--resource-group RG] [--workspace-id ID] [--name NAME] [--dir PATH]`
|
|
57
|
+
- `agentops telemetry dashboard open [--print-url] [--subscription ID] [--resource-group RG] [--name NAME] [--dir PATH]`
|
|
58
|
+
- `agentops telemetry dashboard export [--out PATH]`
|
|
56
59
|
- `agentops agent serve [--host HOST] [--port PORT] [--config PATH] [--no-verify] [--workers N]`
|
|
57
60
|
|
|
58
61
|
Exit code contract:
|
|
@@ -5,6 +5,60 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [0.7.0] - 2026-07-01
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Foundry operations dashboard.** A new Azure Monitor Workbook
|
|
12
|
+
(`agentops telemetry dashboard`) surfaces Azure OpenAI capacity (PTU
|
|
13
|
+
utilization, rate-limit, spillover), traffic and tokens, latency
|
|
14
|
+
percentiles (TTFT, TBT, TTLT, tokens/sec), and errors and throttling for a
|
|
15
|
+
given Azure OpenAI resource and Log Analytics workspace. The workbook JSON,
|
|
16
|
+
its per-metric KQL queries, and an authoring README ship as package data.
|
|
17
|
+
Three commands manage it: `deploy` (RBAC + diagnostic-settings preflight,
|
|
18
|
+
then deploy the `Microsoft.Insights/workbooks` ARM resource, with
|
|
19
|
+
`--dry-run` to emit the template), `open` (build the portal deep link and
|
|
20
|
+
open a browser, `--print-url` for non-interactive shells), and `export`
|
|
21
|
+
(copy the packaged workbook JSON to a local path). `agentops telemetry
|
|
22
|
+
dashboard deploy` is the first CLI command that creates an Azure resource;
|
|
23
|
+
it is scoped to a single workbook.
|
|
24
|
+
- **Doctor check for Azure OpenAI usage telemetry.** A new WAF-AI Operational
|
|
25
|
+
Excellence posture rule (`waf.observability.aoai_diagnostic_categories`)
|
|
26
|
+
warns when the Azure OpenAI account is not emitting the `RequestResponse`
|
|
27
|
+
and `AzureOpenAIRequestUsage` diagnostic log categories to a Log Analytics
|
|
28
|
+
workspace, and prints the exact `az monitor diagnostic-settings create`
|
|
29
|
+
fix. Doctor stays read-only.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
- **Cockpit redesign answers "can I ship?" first.** The Cockpit now opens with
|
|
33
|
+
three consolidated status cards (Readiness, Doctor, Eval gate) that expand
|
|
34
|
+
their detail sections on click, promotes "Next actions" to second position,
|
|
35
|
+
and collapses the detailed sections by default. The former "Eval gate
|
|
36
|
+
summary" and "Quality gate summary" are merged into a single "Eval gates"
|
|
37
|
+
section with two subgroups. The Foundry launchpad footer adds a "Foundry
|
|
38
|
+
operations dashboard" tile (the same workbook portal URL used by
|
|
39
|
+
`agentops telemetry dashboard open`) next to "Operate overview", folds the
|
|
40
|
+
single-tile "Azure Monitor" group into the Foundry project group, and
|
|
41
|
+
removes the duplicated App Insights CTA from the Production signal section.
|
|
42
|
+
Cockpit remains read-only.
|
|
43
|
+
|
|
44
|
+
## [0.6.0] - 2026-06-26
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
- **Retrieval telemetry can now be imported as evaluation datasets.** The new
|
|
48
|
+
`telemetry_imports` config contract and `agentops telemetry validate`,
|
|
49
|
+
`agentops telemetry preview`, and `agentops telemetry import` commands let
|
|
50
|
+
teams turn reviewed retrieval telemetry into dataset-backed eval rows with
|
|
51
|
+
`response_source: dataset`. Grey-box HTTP agents can map `response_fields` from
|
|
52
|
+
`$response.context`, and the evaluation docs now cover the import workflow and
|
|
53
|
+
contract.
|
|
54
|
+
|
|
55
|
+
### Changed
|
|
56
|
+
- Updated the AgentOps CLI tagline to use `Operate` instead of `Own` for clearer
|
|
57
|
+
operator-focused positioning.
|
|
58
|
+
- **Prompt-agent PR validation now uses sandbox instead of dev.** Generated
|
|
59
|
+
GitHub and Azure DevOps PR workflows stage prompt-agent candidates in the
|
|
60
|
+
sandbox Foundry environment, keeping dev for deployed-of-record versions.
|
|
61
|
+
|
|
8
62
|
## [0.5.3] - 2026-06-22
|
|
9
63
|
|
|
10
64
|
### Fixed
|
|
@@ -173,6 +227,25 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
|
|
|
173
227
|
tutorial are updated to describe the new contract.
|
|
174
228
|
([#214](https://github.com/Azure/agentops/issues/214))
|
|
175
229
|
|
|
230
|
+
### Fixed
|
|
231
|
+
- **Clean installs now include the pager dependency used by explain commands.**
|
|
232
|
+
`agentops explain`, `agentops init explain`, and `agentops doctor explain`
|
|
233
|
+
import Click directly to render long manual output, so `click>=8.1,<9` is now
|
|
234
|
+
declared as a runtime dependency instead of relying on transitive installs.
|
|
235
|
+
|
|
236
|
+
- **`agentops eval init` now works with both old and new `azure.ai.agents` azd
|
|
237
|
+
extensions.** Version 0.1.40 of the extension renamed the eval subcommand from
|
|
238
|
+
`azd ai agent eval init` to `azd ai agent eval generate`, which made
|
|
239
|
+
`agentops eval init` hard-fail with `Command "init" is deprecated, use 'azd ai
|
|
240
|
+
agent eval generate' instead`. AgentOps now invokes `generate` first and
|
|
241
|
+
transparently falls back to the legacy `init` subcommand when an older
|
|
242
|
+
extension does not recognise `generate`. The fallback only triggers on
|
|
243
|
+
subcommand-name/deprecation errors; genuine failures (authentication, project
|
|
244
|
+
endpoint, timeouts) are still surfaced immediately and unchanged. All
|
|
245
|
+
previously passed flags (`--project-endpoint`, `--agent`,
|
|
246
|
+
`--gen-instruction-file`, `--eval-model`, `--dataset`, `--evaluator`) and the
|
|
247
|
+
recipe discovery/persistence behaviour are preserved.
|
|
248
|
+
|
|
176
249
|
## [0.4.0] - 2026-06-14
|
|
177
250
|
|
|
178
251
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agentops-accelerator
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.7.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
|
|
@@ -54,7 +55,7 @@ Dynamic: license-file
|
|
|
54
55
|
<h1 align="center">AgentOps Accelerator</h1>
|
|
55
56
|
|
|
56
57
|
<p align="center">
|
|
57
|
-
<b>Evaluate. Ship. Observe.
|
|
58
|
+
<b>Evaluate. Ship. Observe. Operate.</b>
|
|
58
59
|
<br/>
|
|
59
60
|
Continuous evaluation, safety testing, observability, and release readiness for Microsoft Foundry agents.
|
|
60
61
|
</p>
|
|
@@ -74,7 +75,7 @@ Continuous evaluation, safety testing, observability, and release readiness for
|
|
|
74
75
|
<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
76
|
</p>
|
|
76
77
|
|
|
77
|
-
AgentOps Accelerator helps Microsoft Foundry agent teams evaluate quality, prepare releases, monitor behavior, and
|
|
78
|
+
AgentOps Accelerator helps Microsoft Foundry agent teams evaluate quality, prepare releases, monitor behavior, and operate reliably 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
|
|
|
79
80
|
## Get started
|
|
80
81
|
|
|
@@ -99,7 +100,7 @@ Use AgentOps Accelerator when you need to:
|
|
|
99
100
|
- Compare changes across versions
|
|
100
101
|
- Capture release evidence
|
|
101
102
|
- Monitor agent quality and regressions
|
|
102
|
-
- Give teams a repeatable way to
|
|
103
|
+
- Give teams a repeatable way to operate agents responsibly in production
|
|
103
104
|
|
|
104
105
|
The accelerator keeps the local workflow simple, then points you to the full
|
|
105
106
|
docs when you are ready to configure pipelines, dashboards, and release
|
|
@@ -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,
|
|
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. Operate.</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 operate reliably 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 operate agents responsibly 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.
|