.gitattributes
.gitignore
.pre-commit-config.yaml
AGENTS.md
CHANGELOG.md
CONTRIBUTING.md
LICENSE
README.md
SECURITY.md
icon.png
launch.json
pyproject.toml
uv.lock
.claude-plugin/marketplace.json
.github/code-quality-py.instructions.md
.github/copilot-instructions.md
.github/dependabot.yml
.github/actions/azure-oidc-login/action.yml
.github/extensions/agentops-skills/extension.mjs
.github/plugin/marketplace.json
.github/skills/release-management/SKILL.md
.github/workflows/_build.yml
.github/workflows/agentops-watchdog.yml
.github/workflows/ci.yml
.github/workflows/cut-release.yml
.github/workflows/e2e.yml
.github/workflows/release.yml
.github/workflows/staging.yml
.vscode/launch.json
.vscode/settings.json
.vscode/tasks.json
docs/bundles.md
docs/ci-github-actions.md
docs/concepts.md
docs/doctor-checks.md
docs/doctor-explained.md
docs/e2e-live-architecture.md
docs/e2e-live-setup.md
docs/foundry-evaluation-sdk-built-in-evaluators.md
docs/how-it-works.md
docs/release-process.md
docs/tutorial-end-to-end.md
docs/tutorial-hosted-agent-quickstart.md
docs/tutorial-prompt-agent-quickstart.md
docs/media/agentops-diagrams.vsdx
docs/media/foundry-control-plane.png
examples/flat-quickstart/README.md
examples/flat-quickstart/agentops.yaml
examples/flat-quickstart/dataset.jsonl
infra/e2e/bootstrap.bicep
infra/e2e/bootstrap.parameters.example.json
infra/e2e/perrun.bicep
infra/e2e/agent-app/Dockerfile
infra/e2e/agent-app/app.py
infra/e2e/agent-app/requirements.txt
media/foundry.svg
media/quickstart.gif
plugins/agentops/.vscodeignore
plugins/agentops/LICENSE
plugins/agentops/README.md
plugins/agentops/package.json
plugins/agentops/plugin.json
plugins/agentops/skills/agentops-agent/SKILL.md
plugins/agentops/skills/agentops-config/SKILL.md
plugins/agentops/skills/agentops-dataset/SKILL.md
plugins/agentops/skills/agentops-eval/SKILL.md
plugins/agentops/skills/agentops-governance/SKILL.md
plugins/agentops/skills/agentops-report/SKILL.md
plugins/agentops/skills/agentops-workflow/SKILL.md
scripts/create_support_agent.py
scripts/cut-release.ps1
scripts/cut-release.sh
scripts/e2e_aggregate_summary.py
scripts/e2e_demo.py
scripts/e2e_hosted_agent.py
scripts/e2e_make_transcript.py
scripts/e2e_render_config.py
scripts/release.ps1
scripts/release.sh
scripts/setup-e2e-new-tenant.ps1
scripts/staging.ps1
scripts/staging.sh
scripts/sync-skills.ps1
scripts/sync-skills.sh
scripts/e2e_data/basic.jsonl
scripts/e2e_data/rag.jsonl
scripts/e2e_data/tools.jsonl
src/agentops/__init__.py
src/agentops/__main__.py
src/agentops/agent/__init__.py
src/agentops/agent/_legacy_ids.py
src/agentops/agent/analyzer.py
src/agentops/agent/cockpit.py
src/agentops/agent/config.py
src/agentops/agent/findings.py
src/agentops/agent/history.py
src/agentops/agent/production_telemetry.py
src/agentops/agent/report.py
src/agentops/agent/time_range.py
src/agentops/agent/checks/__init__.py
src/agentops/agent/checks/_rbac_authorization.py
src/agentops/agent/checks/catalog.py
src/agentops/agent/checks/errors.py
src/agentops/agent/checks/foundry_config.py
src/agentops/agent/checks/governance.py
src/agentops/agent/checks/latency.py
src/agentops/agent/checks/observability.py
src/agentops/agent/checks/opex.py
src/agentops/agent/checks/opex_workspace.py
src/agentops/agent/checks/posture.py
src/agentops/agent/checks/rbac_openai_data_plane.py
src/agentops/agent/checks/regression.py
src/agentops/agent/checks/release_readiness.py
src/agentops/agent/checks/safety.py
src/agentops/agent/checks/spec_conformance.py
src/agentops/agent/checks/posture_rules/__init__.py
src/agentops/agent/checks/posture_rules/content_filter.py
src/agentops/agent/checks/posture_rules/diagnostics.py
src/agentops/agent/checks/posture_rules/local_auth.py
src/agentops/agent/checks/posture_rules/managed_identity.py
src/agentops/agent/checks/posture_rules/network.py
src/agentops/agent/knowledge/__init__.py
src/agentops/agent/knowledge/waf-checklist.csv
src/agentops/agent/llm_assist/__init__.py
src/agentops/agent/llm_assist/_base.py
src/agentops/agent/llm_assist/_bundle_rule.py
src/agentops/agent/llm_assist/_client.py
src/agentops/agent/llm_assist/_dataset_rules.py
src/agentops/agent/llm_assist/_engine.py
src/agentops/agent/llm_assist/_prompt_rules.py
src/agentops/agent/llm_assist/_spec_rules.py
src/agentops/agent/server/__init__.py
src/agentops/agent/server/app.py
src/agentops/agent/server/auth.py
src/agentops/agent/server/chat.py
src/agentops/agent/server/protocol.py
src/agentops/agent/sources/__init__.py
src/agentops/agent/sources/_credentials.py
src/agentops/agent/sources/azure_monitor.py
src/agentops/agent/sources/azure_resources.py
src/agentops/agent/sources/foundry_control.py
src/agentops/agent/sources/results_history.py
src/agentops/agent/sources/spec_detectors/__init__.py
src/agentops/agent/sources/spec_detectors/_base.py
src/agentops/agent/sources/spec_detectors/agents_md.py
src/agentops/agent/sources/spec_detectors/spec_kit.py
src/agentops/cli/__init__.py
src/agentops/cli/app.py
src/agentops/core/__init__.py
src/agentops/core/agentops_config.py
src/agentops/core/azd_eval.py
src/agentops/core/config_loader.py
src/agentops/core/evaluators.py
src/agentops/core/governance.py
src/agentops/core/release_evidence.py
src/agentops/core/results.py
src/agentops/mcp/__init__.py
src/agentops/mcp/server.py
src/agentops/pipeline/__init__.py
src/agentops/pipeline/azd_runner.py
src/agentops/pipeline/cloud_results.py
src/agentops/pipeline/cloud_runner.py
src/agentops/pipeline/comparison.py
src/agentops/pipeline/diagnostics.py
src/agentops/pipeline/invocations.py
src/agentops/pipeline/official_eval.py
src/agentops/pipeline/orchestrator.py
src/agentops/pipeline/prompt_deploy.py
src/agentops/pipeline/publisher.py
src/agentops/pipeline/reporter.py
src/agentops/pipeline/runtime.py
src/agentops/pipeline/thresholds.py
src/agentops/services/__init__.py
src/agentops/services/assert_runner.py
src/agentops/services/azd_eval_init.py
src/agentops/services/cicd.py
src/agentops/services/eval_analysis.py
src/agentops/services/evidence_pack.py
src/agentops/services/initializer.py
src/agentops/services/preflight.py
src/agentops/services/redteam_runner.py
src/agentops/services/setup_wizard.py
src/agentops/services/skills.py
src/agentops/services/trace_promotion.py
src/agentops/services/workflow_analysis.py
src/agentops/templates/.gitignore
src/agentops/templates/__init__.py
src/agentops/templates/agent.yaml
src/agentops/templates/agentops.yaml
src/agentops/templates/foundry.svg
src/agentops/templates/icon.png
src/agentops/templates/project.gitignore
src/agentops/templates/sample-traces.jsonl
src/agentops/templates/smoke.jsonl
src/agentops/templates/waf-checklist.README.md
src/agentops/templates/waf-checklist.csv
src/agentops/templates/agent-server/Dockerfile
src/agentops/templates/agent-server/README.md
src/agentops/templates/agent-server/main.bicep
src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml
src/agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml
src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml
src/agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml
src/agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml
src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml
src/agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml
src/agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml
src/agentops/templates/pipelines/azuredevops/agentops-pr.yml
src/agentops/templates/pipelines/azuredevops/agentops-watchdog.yml
src/agentops/templates/skills/agentops-agent/SKILL.md
src/agentops/templates/skills/agentops-config/SKILL.md
src/agentops/templates/skills/agentops-dataset/SKILL.md
src/agentops/templates/skills/agentops-eval/SKILL.md
src/agentops/templates/skills/agentops-governance/SKILL.md
src/agentops/templates/skills/agentops-report/SKILL.md
src/agentops/templates/skills/agentops-workflow/SKILL.md
src/agentops/templates/workflows/agentops-deploy-dev-azd.yml
src/agentops/templates/workflows/agentops-deploy-dev.yml
src/agentops/templates/workflows/agentops-deploy-prod-azd.yml
src/agentops/templates/workflows/agentops-deploy-prod.yml
src/agentops/templates/workflows/agentops-deploy-prompt-agent.yml
src/agentops/templates/workflows/agentops-deploy-qa-azd.yml
src/agentops/templates/workflows/agentops-deploy-qa.yml
src/agentops/templates/workflows/agentops-pr-prompt-agent.yml
src/agentops/templates/workflows/agentops-pr.yml
src/agentops/templates/workflows/agentops-watchdog.yml
src/agentops/utils/__init__.py
src/agentops/utils/azd_env.py
src/agentops/utils/azure_endpoints.py
src/agentops/utils/colors.py
src/agentops/utils/dotenv_loader.py
src/agentops/utils/foundry_discovery.py
src/agentops/utils/logging.py
src/agentops/utils/telemetry.py
src/agentops/utils/yaml.py
src/agentops_accelerator.egg-info/PKG-INFO
src/agentops_accelerator.egg-info/SOURCES.txt
src/agentops_accelerator.egg-info/dependency_links.txt
src/agentops_accelerator.egg-info/entry_points.txt
src/agentops_accelerator.egg-info/requires.txt
src/agentops_accelerator.egg-info/top_level.txt
tests/TESTING.md
tests/fixtures/fake_adapter.py
tests/fixtures/fake_eval_runner.py
tests/integration/.gitkeep
tests/integration/test_cli_flat_schema.py
tests/integration/test_pipeline_smoke.py
tests/unit/.gitkeep
tests/unit/test_agent_analyzer.py
tests/unit/test_agent_categories.py
tests/unit/test_agent_checks_errors.py
tests/unit/test_agent_checks_foundry_config.py
tests/unit/test_agent_checks_observability.py
tests/unit/test_agent_checks_opex.py
tests/unit/test_agent_checks_opex_workspace.py
tests/unit/test_agent_checks_rbac_openai_data_plane.py
tests/unit/test_agent_checks_regression.py
tests/unit/test_agent_checks_safety.py
tests/unit/test_agent_checks_spec_conformance.py
tests/unit/test_agent_cli.py
tests/unit/test_agent_config.py
tests/unit/test_agent_findings.py
tests/unit/test_agent_history.py
tests/unit/test_agent_opex_workspace_check.py
tests/unit/test_agent_posture_rules.py
tests/unit/test_agent_results_history.py
tests/unit/test_agent_server.py
tests/unit/test_agentops_config.py
tests/unit/test_assert_and_redteam_runners.py
tests/unit/test_azd_env.py
tests/unit/test_azd_eval.py
tests/unit/test_azd_eval_init.py
tests/unit/test_azd_runner.py
tests/unit/test_azure_endpoints.py
tests/unit/test_azure_resources_discovery.py
tests/unit/test_cicd.py
tests/unit/test_cli_cockpit_connection_summary.py
tests/unit/test_cli_cockpit_port_conflict.py
tests/unit/test_cli_commands.py
tests/unit/test_cli_explain.py
tests/unit/test_cloud_results.py
tests/unit/test_cloud_runner.py
tests/unit/test_cockpit.py
tests/unit/test_diagnostics.py
tests/unit/test_doctor_catalog.py
tests/unit/test_doctor_cli_explain.py
tests/unit/test_dotenv_loader.py
tests/unit/test_e2e_render.py
tests/unit/test_eval_analysis.py
tests/unit/test_eval_run_grader_errors.py
tests/unit/test_evaluators.py
tests/unit/test_foundry_discovery.py
tests/unit/test_governance.py
tests/unit/test_init_command.py
tests/unit/test_initializer.py
tests/unit/test_invocations.py
tests/unit/test_knowledge_loader.py
tests/unit/test_llm_assist.py
tests/unit/test_llm_assist_spec_rules.py
tests/unit/test_mcp_server.py
tests/unit/test_official_eval.py
tests/unit/test_pipeline_publisher.py
tests/unit/test_pipeline_reporter.py
tests/unit/test_preflight.py
tests/unit/test_production_telemetry.py
tests/unit/test_prompt_deploy.py
tests/unit/test_release_evidence.py
tests/unit/test_runtime_conversation.py
tests/unit/test_runtime_model_config.py
tests/unit/test_setup_wizard.py
tests/unit/test_shared_credentials.py
tests/unit/test_skills.py
tests/unit/test_skills_sync.py
tests/unit/test_telemetry.py
tests/unit/test_time_range.py
tests/unit/test_trace_promotion.py
tests/unit/test_workflow_analysis.py
tombstones/vscode/CDN_DEPRECATION_REQUEST.md