agentops-accelerator 0.3.0__py3-none-any.whl
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/__init__.py +10 -0
- agentops/__main__.py +6 -0
- agentops/agent/__init__.py +12 -0
- agentops/agent/_legacy_ids.py +92 -0
- agentops/agent/analyzer.py +207 -0
- agentops/agent/checks/__init__.py +1 -0
- agentops/agent/checks/catalog.py +880 -0
- agentops/agent/checks/errors.py +279 -0
- agentops/agent/checks/foundry_config.py +75 -0
- agentops/agent/checks/latency.py +84 -0
- agentops/agent/checks/opex.py +157 -0
- agentops/agent/checks/opex_workspace.py +874 -0
- agentops/agent/checks/posture.py +36 -0
- agentops/agent/checks/posture_rules/__init__.py +53 -0
- agentops/agent/checks/posture_rules/content_filter.py +59 -0
- agentops/agent/checks/posture_rules/diagnostics.py +74 -0
- agentops/agent/checks/posture_rules/local_auth.py +55 -0
- agentops/agent/checks/posture_rules/managed_identity.py +59 -0
- agentops/agent/checks/posture_rules/network.py +68 -0
- agentops/agent/checks/regression.py +78 -0
- agentops/agent/checks/release_readiness.py +182 -0
- agentops/agent/checks/safety.py +247 -0
- agentops/agent/checks/spec_conformance.py +375 -0
- agentops/agent/cockpit.py +5159 -0
- agentops/agent/config.py +240 -0
- agentops/agent/findings.py +113 -0
- agentops/agent/history.py +142 -0
- agentops/agent/knowledge/__init__.py +182 -0
- agentops/agent/knowledge/waf-checklist.csv +39 -0
- agentops/agent/llm_assist/__init__.py +16 -0
- agentops/agent/llm_assist/_base.py +124 -0
- agentops/agent/llm_assist/_bundle_rule.py +154 -0
- agentops/agent/llm_assist/_client.py +347 -0
- agentops/agent/llm_assist/_dataset_rules.py +191 -0
- agentops/agent/llm_assist/_engine.py +106 -0
- agentops/agent/llm_assist/_prompt_rules.py +291 -0
- agentops/agent/llm_assist/_spec_rules.py +235 -0
- agentops/agent/production_telemetry.py +430 -0
- agentops/agent/report.py +207 -0
- agentops/agent/server/__init__.py +1 -0
- agentops/agent/server/app.py +84 -0
- agentops/agent/server/auth.py +94 -0
- agentops/agent/server/chat.py +44 -0
- agentops/agent/server/protocol.py +72 -0
- agentops/agent/sources/__init__.py +1 -0
- agentops/agent/sources/azure_monitor.py +523 -0
- agentops/agent/sources/azure_resources.py +602 -0
- agentops/agent/sources/foundry_control.py +174 -0
- agentops/agent/sources/results_history.py +494 -0
- agentops/agent/sources/spec_detectors/__init__.py +42 -0
- agentops/agent/sources/spec_detectors/_base.py +58 -0
- agentops/agent/sources/spec_detectors/agents_md.py +75 -0
- agentops/agent/sources/spec_detectors/spec_kit.py +172 -0
- agentops/agent/time_range.py +117 -0
- agentops/cli/__init__.py +1 -0
- agentops/cli/app.py +4823 -0
- agentops/core/__init__.py +1 -0
- agentops/core/agentops_config.py +592 -0
- agentops/core/config_loader.py +22 -0
- agentops/core/evaluators.py +480 -0
- agentops/core/release_evidence.py +56 -0
- agentops/core/results.py +117 -0
- agentops/mcp/__init__.py +10 -0
- agentops/mcp/server.py +232 -0
- agentops/pipeline/__init__.py +8 -0
- agentops/pipeline/cloud_results.py +189 -0
- agentops/pipeline/cloud_runner.py +901 -0
- agentops/pipeline/comparison.py +108 -0
- agentops/pipeline/diagnostics.py +51 -0
- agentops/pipeline/invocations.py +535 -0
- agentops/pipeline/official_eval.py +414 -0
- agentops/pipeline/orchestrator.py +775 -0
- agentops/pipeline/prompt_deploy.py +377 -0
- agentops/pipeline/publisher.py +121 -0
- agentops/pipeline/reporter.py +202 -0
- agentops/pipeline/runtime.py +409 -0
- agentops/pipeline/thresholds.py +84 -0
- agentops/services/__init__.py +1 -0
- agentops/services/cicd.py +720 -0
- agentops/services/eval_analysis.py +848 -0
- agentops/services/evidence_pack.py +757 -0
- agentops/services/initializer.py +86 -0
- agentops/services/preflight.py +470 -0
- agentops/services/setup_wizard.py +709 -0
- agentops/services/skills.py +643 -0
- agentops/services/trace_promotion.py +300 -0
- agentops/services/workflow_analysis.py +1129 -0
- agentops/templates/.gitignore +15 -0
- agentops/templates/__init__.py +1 -0
- agentops/templates/agent-server/Dockerfile +23 -0
- agentops/templates/agent-server/README.md +61 -0
- agentops/templates/agent-server/main.bicep +94 -0
- agentops/templates/agent.yaml +87 -0
- agentops/templates/agentops.yaml +58 -0
- agentops/templates/foundry.svg +71 -0
- agentops/templates/icon.png +0 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml +118 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml +73 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml +141 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml +94 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml +167 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml +118 -0
- agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml +68 -0
- agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml +210 -0
- agentops/templates/pipelines/azuredevops/agentops-pr.yml +155 -0
- agentops/templates/pipelines/azuredevops/agentops-watchdog.yml +106 -0
- agentops/templates/project.gitignore +36 -0
- agentops/templates/sample-traces.jsonl +3 -0
- agentops/templates/skills/agentops-agent/SKILL.md +137 -0
- agentops/templates/skills/agentops-config/SKILL.md +113 -0
- agentops/templates/skills/agentops-dataset/SKILL.md +84 -0
- agentops/templates/skills/agentops-eval/SKILL.md +189 -0
- agentops/templates/skills/agentops-report/SKILL.md +71 -0
- agentops/templates/skills/agentops-workflow/SKILL.md +471 -0
- agentops/templates/smoke.jsonl +3 -0
- agentops/templates/waf-checklist.README.md +84 -0
- agentops/templates/waf-checklist.csv +22 -0
- agentops/templates/workflows/agentops-deploy-dev-azd.yml +166 -0
- agentops/templates/workflows/agentops-deploy-dev.yml +187 -0
- agentops/templates/workflows/agentops-deploy-prod-azd.yml +183 -0
- agentops/templates/workflows/agentops-deploy-prod.yml +171 -0
- agentops/templates/workflows/agentops-deploy-prompt-agent.yml +197 -0
- agentops/templates/workflows/agentops-deploy-qa-azd.yml +156 -0
- agentops/templates/workflows/agentops-deploy-qa.yml +145 -0
- agentops/templates/workflows/agentops-pr-prompt-agent.yml +210 -0
- agentops/templates/workflows/agentops-pr.yml +148 -0
- agentops/templates/workflows/agentops-watchdog.yml +122 -0
- agentops/utils/__init__.py +1 -0
- agentops/utils/azd_env.py +435 -0
- agentops/utils/azure_endpoints.py +62 -0
- agentops/utils/colors.py +47 -0
- agentops/utils/dotenv_loader.py +105 -0
- agentops/utils/foundry_discovery.py +229 -0
- agentops/utils/logging.py +59 -0
- agentops/utils/telemetry.py +554 -0
- agentops/utils/yaml.py +36 -0
- agentops_accelerator-0.3.0.dist-info/METADATA +278 -0
- agentops_accelerator-0.3.0.dist-info/RECORD +142 -0
- agentops_accelerator-0.3.0.dist-info/WHEEL +5 -0
- agentops_accelerator-0.3.0.dist-info/entry_points.txt +2 -0
- agentops_accelerator-0.3.0.dist-info/licenses/LICENSE +21 -0
- agentops_accelerator-0.3.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agentops-accelerator
|
|
3
|
+
Version: 0.3.0
|
|
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>=2.0.1
|
|
34
|
+
Provides-Extra: mcp
|
|
35
|
+
Requires-Dist: mcp<2,>=1.0; extra == "mcp"
|
|
36
|
+
Provides-Extra: foundry
|
|
37
|
+
Requires-Dist: azure-ai-evaluation>=1.0; extra == "foundry"
|
|
38
|
+
Requires-Dist: azure-identity>=1.17; extra == "foundry"
|
|
39
|
+
Requires-Dist: azure-monitor-opentelemetry>=1.6; extra == "foundry"
|
|
40
|
+
Requires-Dist: pandas>=2.0; extra == "foundry"
|
|
41
|
+
Provides-Extra: agent
|
|
42
|
+
Requires-Dist: fastapi>=0.110; extra == "agent"
|
|
43
|
+
Requires-Dist: uvicorn[standard]>=0.30; extra == "agent"
|
|
44
|
+
Requires-Dist: httpx>=0.27; extra == "agent"
|
|
45
|
+
Requires-Dist: cryptography>=42; extra == "agent"
|
|
46
|
+
Requires-Dist: markdown>=3.6; extra == "agent"
|
|
47
|
+
Requires-Dist: azure-monitor-query>=1.3; extra == "agent"
|
|
48
|
+
Requires-Dist: azure-monitor-opentelemetry>=1.6; extra == "agent"
|
|
49
|
+
Requires-Dist: azure-identity>=1.17; extra == "agent"
|
|
50
|
+
Requires-Dist: azure-mgmt-cognitiveservices>=13.5; extra == "agent"
|
|
51
|
+
Requires-Dist: azure-mgmt-monitor>=6.0; extra == "agent"
|
|
52
|
+
Dynamic: license-file
|
|
53
|
+
|
|
54
|
+
<h1 align="center">AgentOps Accelerator</h1>
|
|
55
|
+
|
|
56
|
+
<p align="center">
|
|
57
|
+
Answer the release question for Microsoft Foundry agents: can we ship it, and where is the proof?
|
|
58
|
+
</p>
|
|
59
|
+
|
|
60
|
+
<p align="center">
|
|
61
|
+
<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>
|
|
62
|
+
<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>
|
|
63
|
+
<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>
|
|
64
|
+
<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>
|
|
65
|
+
<a href="https://github.com/Azure/agentops"><img alt="Status: Preview" src="https://img.shields.io/badge/Status-Preview-orange.svg"/></a>
|
|
66
|
+
<br/>
|
|
67
|
+
<a href="https://www.python.org/downloads/"><img alt="Python 3.11+" src="https://img.shields.io/badge/Python-3.11%2B-3776AB.svg"/></a>
|
|
68
|
+
<a href="https://typer.tiangolo.com/"><img alt="CLI: Typer" src="https://img.shields.io/badge/CLI-Typer-5A67D8.svg"/></a>
|
|
69
|
+
<a href="https://learn.microsoft.com/azure/ai-foundry/"><img alt="Built on Microsoft Foundry" src="https://img.shields.io/badge/Built%20on-Microsoft%20Foundry-0078D4.svg"/></a>
|
|
70
|
+
<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>
|
|
71
|
+
</p>
|
|
72
|
+
|
|
73
|
+
## Overview
|
|
74
|
+
|
|
75
|
+
AgentOps Accelerator helps teams turn Foundry agent work into a clear release
|
|
76
|
+
decision. Foundry is the agent control plane; AgentOps turns Foundry signals and
|
|
77
|
+
repo checks into repeatable gates, Doctor readiness, release evidence, and
|
|
78
|
+
trace-driven regression loops.
|
|
79
|
+
|
|
80
|
+
The project enables:
|
|
81
|
+
|
|
82
|
+
- Local and CI execution for release gates
|
|
83
|
+
- Foundry prompt agent, Foundry hosted endpoint, HTTP/JSON agent, and raw model targets
|
|
84
|
+
- Auto-selected evaluators for RAG, tools, and model quality
|
|
85
|
+
- Stable `results.json` for automation
|
|
86
|
+
- PR-friendly `report.md`
|
|
87
|
+
- Baseline comparison for regression detection
|
|
88
|
+
- Doctor checks for repo, CI/CD, telemetry, landing zones, and Foundry setup
|
|
89
|
+
- Release evidence packs for promotion review
|
|
90
|
+
- Trace promotion into regression datasets
|
|
91
|
+
- Cockpit navigation for AgentOps, Foundry, and Azure Monitor
|
|
92
|
+
|
|
93
|
+
## AgentOps and Microsoft Foundry
|
|
94
|
+
|
|
95
|
+
Foundry and AgentOps are designed to meet at the release boundary. Foundry is
|
|
96
|
+
where teams create, deploy, run, observe, and investigate agents. AgentOps is
|
|
97
|
+
the repo-side operating layer that turns those signals into a repeatable
|
|
98
|
+
ship/no-ship workflow.
|
|
99
|
+
|
|
100
|
+
| Moment | Foundry / Azure does | AgentOps adds |
|
|
101
|
+
|---|---|---|
|
|
102
|
+
| Build and version | Foundry portal, Foundry SDK/Toolkit, `microsoft-foundry` skill, azd | Pins the exact candidate in `agentops.yaml` and generates the PR/release gate around it |
|
|
103
|
+
| Evaluate and compare | Foundry Evaluations and official CI actions/extensions | Keeps datasets and thresholds in the repo, records evidence, and provides local/fallback runs for non-prompt targets |
|
|
104
|
+
| Observe and investigate | Foundry Monitor, Traces, Azure Monitor, App Insights | Surfaces deep links, telemetry readiness, Doctor findings, and Cockpit navigation |
|
|
105
|
+
| Decide release | Branch protection, environments, approvals | Packages `evidence.json` / `evidence.md` for promotion review |
|
|
106
|
+
| Improve from production | Production traces and Foundry datasets | Promotes reviewed trace learnings into regression candidates |
|
|
107
|
+
|
|
108
|
+
The rhythm is simple: build and operate the agent in Foundry, keep the release
|
|
109
|
+
contract in the repo, and let AgentOps connect the two into a clean review loop.
|
|
110
|
+
|
|
111
|
+
Core outputs:
|
|
112
|
+
|
|
113
|
+
- `results.json` (machine-readable)
|
|
114
|
+
- `report.md` (human-readable)
|
|
115
|
+
- `evidence.json` / `evidence.md` (from `agentops doctor --evidence-pack`)
|
|
116
|
+
|
|
117
|
+
Exit code contract:
|
|
118
|
+
|
|
119
|
+
- `0` execution succeeded and all thresholds passed
|
|
120
|
+
- `2` execution succeeded but one or more thresholds failed
|
|
121
|
+
- `1` runtime or configuration error
|
|
122
|
+
|
|
123
|
+
## Quickstart
|
|
124
|
+
|
|
125
|
+
### 1) Install
|
|
126
|
+
|
|
127
|
+
```powershell
|
|
128
|
+
python -m venv .venv
|
|
129
|
+
.\.venv\Scripts\Activate.ps1
|
|
130
|
+
python -m pip install -U pip
|
|
131
|
+
python -m pip install --upgrade "agentops-accelerator[foundry] @ git+https://github.com/Azure/agentops.git@main"
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
This installs the current AgentOps source from GitHub. After the next package
|
|
135
|
+
release, you can switch the install line back to `agentops-accelerator[foundry]`
|
|
136
|
+
from PyPI.
|
|
137
|
+
|
|
138
|
+
### 2) Bootstrap
|
|
139
|
+
|
|
140
|
+
```powershell
|
|
141
|
+
agentops init
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
This writes a single `agentops.yaml` at the project root and an
|
|
145
|
+
AgentOps-managed workspace under `.agentops/` for seed data, run history, and
|
|
146
|
+
generated evidence. It is not a second `.foundry/` project directory.
|
|
147
|
+
|
|
148
|
+
### 3) Configure your agent
|
|
149
|
+
|
|
150
|
+
Pick one of these forms for the `agent:` field - AgentOps classifies the target automatically:
|
|
151
|
+
|
|
152
|
+
```yaml
|
|
153
|
+
agent: "my-rag:3" # Foundry prompt agent (name:version)
|
|
154
|
+
agent: "https://...services.ai.azure.com/.../agents/<id>" # Foundry hosted endpoint
|
|
155
|
+
agent: "https://api.example.com/chat" # any HTTP/JSON agent (ACA, AKS, custom)
|
|
156
|
+
agent: "model:gpt-4o" # raw Foundry model deployment
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
AgentOps supports both Foundry Prompt Agents and Hosted Agents as evaluation
|
|
160
|
+
and readiness targets. Create and deploy them with Foundry tools, then reference
|
|
161
|
+
the published candidate in `agentops.yaml`.
|
|
162
|
+
|
|
163
|
+
For the smoke dataset, create a Foundry prompt agent such as
|
|
164
|
+
`agentops-smoke` and publish it with instructions that copy exact-answer
|
|
165
|
+
requests verbatim:
|
|
166
|
+
|
|
167
|
+
```text
|
|
168
|
+
If the user message starts with "Answer with exactly this sentence:",
|
|
169
|
+
copy only the sentence after that prefix. Do not add greetings,
|
|
170
|
+
markdown, citations, caveats, or explanations.
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
Evaluators come from dataset shape: `context` triggers RAG checks;
|
|
174
|
+
`tool_calls` / `tool_definitions` trigger tool-use checks. Minimal config:
|
|
175
|
+
|
|
176
|
+
```yaml
|
|
177
|
+
version: 1
|
|
178
|
+
agent: "agentops-smoke:2" # Foundry saves the first published version as v2
|
|
179
|
+
dataset: .agentops/data/smoke.jsonl
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### 4) Run
|
|
183
|
+
|
|
184
|
+
```powershell
|
|
185
|
+
az login
|
|
186
|
+
$env:AZURE_AI_FOUNDRY_PROJECT_ENDPOINT = "https://<resource>.services.ai.azure.com/api/projects/<project>"
|
|
187
|
+
$env:AZURE_OPENAI_ENDPOINT = "https://<openai-resource>.openai.azure.com"
|
|
188
|
+
$env:AZURE_OPENAI_DEPLOYMENT = "gpt-4o-mini"
|
|
189
|
+
agentops eval analyze
|
|
190
|
+
agentops eval run
|
|
191
|
+
agentops doctor --evidence-pack
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
For Foundry targets, use either `project_endpoint:` in `agentops.yaml` or
|
|
195
|
+
`AZURE_AI_FOUNDRY_PROJECT_ENDPOINT`. Config wins when both are set.
|
|
196
|
+
|
|
197
|
+
Outputs land in `.agentops/results/latest/`:
|
|
198
|
+
|
|
199
|
+
- `results.json` - machine-readable (versioned, stable schema)
|
|
200
|
+
- `report.md` - human-readable, PR-friendly
|
|
201
|
+
|
|
202
|
+
Release evidence lands in `.agentops/release/latest/`:
|
|
203
|
+
|
|
204
|
+
- `evidence.json` - machine-readable production-readiness projection
|
|
205
|
+
- `evidence.md` - PR/release summary
|
|
206
|
+
|
|
207
|
+
Capture the first successful run as a baseline:
|
|
208
|
+
|
|
209
|
+
```powershell
|
|
210
|
+
New-Item -ItemType Directory -Force .agentops\baseline | Out-Null
|
|
211
|
+
Copy-Item .agentops\results\latest\results.json .agentops\baseline\results.json
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
To see a visible comparison, publish a new agent version with a prompt
|
|
215
|
+
that paraphrases instead of copying exact-answer requests, update
|
|
216
|
+
`agentops.yaml` to that new `name:version`, and compare against the
|
|
217
|
+
baseline:
|
|
218
|
+
|
|
219
|
+
```powershell
|
|
220
|
+
agentops eval run --baseline .agentops/baseline/results.json
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
The report grows a `Comparison vs Baseline` section with per-metric deltas.
|
|
224
|
+
|
|
225
|
+
---
|
|
226
|
+
|
|
227
|
+
## Commands
|
|
228
|
+
|
|
229
|
+
Install optional extras as needed: `[foundry]` for eval runtime, `[agent]` for
|
|
230
|
+
Doctor/Cockpit, and `[mcp]` for MCP.
|
|
231
|
+
|
|
232
|
+
- `agentops --version` - show installed version.
|
|
233
|
+
- `agentops init` - bootstrap config and seed data.
|
|
234
|
+
- `agentops eval analyze` - check eval readiness.
|
|
235
|
+
- `agentops eval run [--baseline PATH]` - run an evaluation.
|
|
236
|
+
- `agentops eval promote-traces --source FILE [--apply]` - promote traces.
|
|
237
|
+
- `agentops report generate` - regenerate `report.md`.
|
|
238
|
+
- `agentops workflow analyze` - recommend CI/CD shape.
|
|
239
|
+
- `agentops workflow generate` - generate CI/CD workflows.
|
|
240
|
+
- `agentops skills install` - install Copilot or Claude skills.
|
|
241
|
+
- `agentops mcp serve` - start the MCP server.
|
|
242
|
+
- `agentops doctor [--evidence-pack]` - run readiness checks.
|
|
243
|
+
- `agentops cockpit` - open the local Cockpit.
|
|
244
|
+
- `agentops agent serve` - serve Doctor as a Copilot Extension.
|
|
245
|
+
|
|
246
|
+
## AgentOps Cockpit
|
|
247
|
+
|
|
248
|
+
`agentops cockpit` opens a localhost command center for the current workspace.
|
|
249
|
+
It combines eval history, Doctor findings, workflow status, and links to the
|
|
250
|
+
matching Foundry and Azure Monitor views.
|
|
251
|
+
|
|
252
|
+
Cockpit sections, in display order:
|
|
253
|
+
|
|
254
|
+
- **Foundry connection** - project, tenant, agent, App Insights.
|
|
255
|
+
- **Foundry launchpad** - links for the agent, project, and telemetry.
|
|
256
|
+
- **Observability readiness** - tracing, evals, red team, alerts.
|
|
257
|
+
- **AgentOps Doctor** - latest Doctor findings.
|
|
258
|
+
- **Eval gate summary** - local and CI gate history.
|
|
259
|
+
- **Quality gate summary** - score trends and regressions.
|
|
260
|
+
- **Production signal** - App Insights health snapshot.
|
|
261
|
+
- **CI/CD Pipelines** - GitHub Actions status.
|
|
262
|
+
- **Next actions** - contextual recommendations.
|
|
263
|
+
|
|
264
|
+
## Documentation
|
|
265
|
+
|
|
266
|
+
- [Prompt Agent quickstart](docs/tutorial-prompt-agent-quickstart.md) - use this when the Foundry target is `agent: name:version`.
|
|
267
|
+
- [Hosted Agent quickstart](docs/tutorial-hosted-agent-quickstart.md) - use this when the target is a Foundry hosted or HTTP endpoint URL.
|
|
268
|
+
- [End-to-end workshop](docs/tutorial-end-to-end.md) - complete Foundry + AgentOps journey: create, debug, evaluate, release, observe, red-team follow-through, and trace regression.
|
|
269
|
+
- [Core concepts](docs/concepts.md)
|
|
270
|
+
- [How it works](docs/how-it-works.md)
|
|
271
|
+
- [Doctor explained](docs/doctor-explained.md)
|
|
272
|
+
- [CI/CD with GitHub Actions](docs/ci-github-actions.md)
|
|
273
|
+
- [Built-in evaluator reference](docs/foundry-evaluation-sdk-built-in-evaluators.md)
|
|
274
|
+
- [Release process](docs/release-process.md)
|
|
275
|
+
|
|
276
|
+
## Contributing
|
|
277
|
+
|
|
278
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for architecture rules, testing, and contribution flow.
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
agentops/__init__.py,sha256=_nBDua3yKeu5yG9IBoH0YUJCGRP6EXyF7MZuztigMn8,232
|
|
2
|
+
agentops/__main__.py,sha256=XdH9WFIKmL38H2e_g1vbVdNAEuD2QdPkpDn1YFkLNug,115
|
|
3
|
+
agentops/agent/__init__.py,sha256=8Y6woqKMuVQfz8M370hXKTJRiFEDjlSaCb1kILv5GgI,457
|
|
4
|
+
agentops/agent/_legacy_ids.py,sha256=NxzCSrXZTy0knwGdqGh6mFka-yzjYPP3Cri7yAVK_ZE,3052
|
|
5
|
+
agentops/agent/analyzer.py,sha256=rPctFYPCcXN6W4arvka0kUI2jfKGKFXaKPDgWfbGpMk,7608
|
|
6
|
+
agentops/agent/cockpit.py,sha256=zAs_B3qjht6IQ377tWnvKCm1qHBduw7JtZFaR138NuU,194672
|
|
7
|
+
agentops/agent/config.py,sha256=nl_dLAWh6HwEpXPIhJ_w5Z54RXUPs9B46LN85cskgYs,8253
|
|
8
|
+
agentops/agent/findings.py,sha256=LfjhL0RUGNr5CF5uz8anHsTMtSsCarNxA-czN1eKiXU,3442
|
|
9
|
+
agentops/agent/history.py,sha256=kOBiRu2hyFYxHbYt12VsKRqO2zCb7QO9ioPmM3zn0oA,5219
|
|
10
|
+
agentops/agent/production_telemetry.py,sha256=MzdsfUOAuvNmWS6il53c45Exa_UVb4IjvivEI3VXqbc,15606
|
|
11
|
+
agentops/agent/report.py,sha256=R1W-haYcsBrQ5N8TmHn0Q2M2_Wqy5XUjp6tQnVKwVHE,7408
|
|
12
|
+
agentops/agent/time_range.py,sha256=GWOuSS-e61L149hWD-LmhwmqfoUXaCmvatV9EBEEHOY,3581
|
|
13
|
+
agentops/agent/checks/__init__.py,sha256=-OvtqNK3TF_sKdQmco131Xptw2mK2fVslBmRS-buuCs,29
|
|
14
|
+
agentops/agent/checks/catalog.py,sha256=RYIfW3qtdgKmYU3liyiEM71vlPTktYJm_WwtE97riIM,34429
|
|
15
|
+
agentops/agent/checks/errors.py,sha256=HC4Pl7NSbwwxQt-lFQFCgRSzCizopNEm7Q7txQqTXoc,10826
|
|
16
|
+
agentops/agent/checks/foundry_config.py,sha256=YdXCV9hcthlL3I1Ibx7MUxO3ry4T6V641rLwgbS_jrU,2533
|
|
17
|
+
agentops/agent/checks/latency.py,sha256=PpBtYqqrzBJbxtuG-sn0nvT-lrZA3SPffYodfEq8cv4,3309
|
|
18
|
+
agentops/agent/checks/opex.py,sha256=UTkUAd-Zqxuu3Teekhc_Yk0y6eqJAQN4YWIahusk28I,5780
|
|
19
|
+
agentops/agent/checks/opex_workspace.py,sha256=TcKSXX96NKn5_Gx4CxA7w4YntR8udV2JNFzfLgPcuB0,32584
|
|
20
|
+
agentops/agent/checks/posture.py,sha256=9GojJ-1mlnOOWyuDxeRp5ZeEyPPG9WcvkNWQPS7Mo6w,1102
|
|
21
|
+
agentops/agent/checks/regression.py,sha256=G11DMwRgFb8nkO9AxwL_zy1Em6STsqHWd79ebvZoXJQ,2542
|
|
22
|
+
agentops/agent/checks/release_readiness.py,sha256=VhQ1Q_QdvfQaPPZrV7z4o0FirXdiUBRMVpdORs-EVS8,7157
|
|
23
|
+
agentops/agent/checks/safety.py,sha256=zP-uNPQqgAfOjGRNjGTZDWWqr81pZHtMbF2AfummCWQ,8963
|
|
24
|
+
agentops/agent/checks/spec_conformance.py,sha256=Ri47iDsfBNheJWTeqMxRYA4qWuFWSClNGjNRm4U_jxk,13908
|
|
25
|
+
agentops/agent/checks/posture_rules/__init__.py,sha256=eSoPJR9rbqNg9uUt_cs93MOtdJqqWPgbTgA3Ytyp2n8,1913
|
|
26
|
+
agentops/agent/checks/posture_rules/content_filter.py,sha256=ccE3AmZSVngQsfeOX-p-p5cJgHgOeetGs7kTRGQbkJo,2169
|
|
27
|
+
agentops/agent/checks/posture_rules/diagnostics.py,sha256=6krvD5H84VFXptzH9LllI0UciOHg5lShb0RjWC4Fr6Y,2829
|
|
28
|
+
agentops/agent/checks/posture_rules/local_auth.py,sha256=oCk4XBrPAP9UleHw4i2Z67pK4tXJc5ZWyEPQJaN7myk,2036
|
|
29
|
+
agentops/agent/checks/posture_rules/managed_identity.py,sha256=LIYtpsYgjcKTMCb0DmNUHK-F_ZzdtApdGApYiXiqods,2209
|
|
30
|
+
agentops/agent/checks/posture_rules/network.py,sha256=pxV-EIwucZpreHEn2eSOoAO0pLDRqJyEy7N8f3at920,2500
|
|
31
|
+
agentops/agent/knowledge/__init__.py,sha256=Dwb9fKFmJTQNz-wZY9jA4dGDtKcHUmYmWbVW-u3jLZo,6186
|
|
32
|
+
agentops/agent/knowledge/waf-checklist.csv,sha256=E-VIZh42A7nrOFzbbBMC8F-VjxL-WB_BHihao_6GFtA,10787
|
|
33
|
+
agentops/agent/llm_assist/__init__.py,sha256=DSyMxmjCJfgJ-hVYh8PJvy549HSv3_4ZfRt593rcidg,560
|
|
34
|
+
agentops/agent/llm_assist/_base.py,sha256=wcsbbtz5ft_IiFi-jLvoPRtW0iAsbJPJP2tDYbRnfIk,3904
|
|
35
|
+
agentops/agent/llm_assist/_bundle_rule.py,sha256=Lu9b9iMVrZRSqE1U_f2z6kO4a2gkQbT5NkhESxIPUzI,4935
|
|
36
|
+
agentops/agent/llm_assist/_client.py,sha256=n_z6UQ0nwGBcoFngh6yBFa-5sEqBeyS76BeTNzPWpzs,12212
|
|
37
|
+
agentops/agent/llm_assist/_dataset_rules.py,sha256=U4y1-arEwt9YGxH-TZXpOnR7pLDEqoHZiVYD7NysOnw,6501
|
|
38
|
+
agentops/agent/llm_assist/_engine.py,sha256=WIMV564qCCoj4V_wXevNPAszwzjDwUgMdmLmnBziI4U,3337
|
|
39
|
+
agentops/agent/llm_assist/_prompt_rules.py,sha256=210BH4CNVpW06ZTbRjvS8dr1h6vKlpJoxIE1oLOqsyk,10412
|
|
40
|
+
agentops/agent/llm_assist/_spec_rules.py,sha256=KiG4HaUd_MvrNH6pjG_68FWJkne9eSSdEASe5A1zl78,7914
|
|
41
|
+
agentops/agent/server/__init__.py,sha256=wAadAEHj56kNaoVncVk94Z2M7biPW4MH0XIQSr_AzTc,63
|
|
42
|
+
agentops/agent/server/app.py,sha256=KsIr-t_JBr1v1P-uymiRbbMby5uvlWxLXMvF_j3P2Yo,2708
|
|
43
|
+
agentops/agent/server/auth.py,sha256=9jDJz0OpD009D9Nt4qeeW5YG1XLPchcy7vMMQYl1_yA,2821
|
|
44
|
+
agentops/agent/server/chat.py,sha256=E_QU5PrloSwzRmCtSOJACIRHMRDOWCYAQ2KwW36f33g,1575
|
|
45
|
+
agentops/agent/server/protocol.py,sha256=z5kl7Py4kvSTVspiIV08Xzy-AbeDqIGiEyjiYBRkGN0,2180
|
|
46
|
+
agentops/agent/sources/__init__.py,sha256=OmwJtjydKRwaVS-IpT9BSZwu9Z1lDRDQiMW8MxnTkHE,37
|
|
47
|
+
agentops/agent/sources/azure_monitor.py,sha256=c1NTmg8O6ttJe0xvK_QVL2s22-RJtfaTvZeUY7a1aIw,21160
|
|
48
|
+
agentops/agent/sources/azure_resources.py,sha256=0tGKsw-EJd80tT0MWaEfVC-HbNtywJa5Ka5RgUAR1Fg,22503
|
|
49
|
+
agentops/agent/sources/foundry_control.py,sha256=6km_8wI8XaSRgl900Sy9_f2fNZ-0cA5PXyR5nUCUc3I,6360
|
|
50
|
+
agentops/agent/sources/results_history.py,sha256=0U_ppBhtYlHUuZoPGymrf65I3SsFVtieX6ZuFKp0h-8,16385
|
|
51
|
+
agentops/agent/sources/spec_detectors/__init__.py,sha256=zBAqWpC7XORgBzWiaN9MrDGs3sHku8mFroS9TthiEIw,1151
|
|
52
|
+
agentops/agent/sources/spec_detectors/_base.py,sha256=QD-5HmW45A_9QrPOf8MCHtIyaCbBvkCcssIQMpuQJWk,1896
|
|
53
|
+
agentops/agent/sources/spec_detectors/agents_md.py,sha256=TnUIe1KhmzExeVln5D8wty1_DX62ASRkGCBgP4fcWvQ,2192
|
|
54
|
+
agentops/agent/sources/spec_detectors/spec_kit.py,sha256=B862mxNwR1sg8areuuDDAZxif2dL-s7TOUP6UUlf9jY,5746
|
|
55
|
+
agentops/cli/__init__.py,sha256=zmVI6DI9-hlMIOFdRDJCnaVQDtIcQ94jQIgDohh3BR0,32
|
|
56
|
+
agentops/cli/app.py,sha256=OMUnDE-P_0aObyD-ZuwVy2xTdDkCJGkiaQ3H5ynzOZs,186787
|
|
57
|
+
agentops/core/__init__.py,sha256=4MhbD3vJNJzj7iVHqRy_yeSipVs3GioQ-o-uN53fy4Q,33
|
|
58
|
+
agentops/core/agentops_config.py,sha256=YdPnYGLWm5NoN6Hd3P7TdVOXIxwbB8jOLa_tb0pql24,22251
|
|
59
|
+
agentops/core/config_loader.py,sha256=rBOtda28ty3s9NTRqWCHDvS9hXOjNSCqgJtKlxpBJ_Q,612
|
|
60
|
+
agentops/core/evaluators.py,sha256=RgQQGpxd0hfPWO9cFm02E4fmmUAGRSY0JSbOgFkImxQ,16970
|
|
61
|
+
agentops/core/release_evidence.py,sha256=jPhMAxQPncWFWDGkRsfjtCppqmSqwRkBucM2vf2Kp54,1845
|
|
62
|
+
agentops/core/results.py,sha256=aVq00kN__QFGKklKLWMqBp3m-nYBQhNwFhbWGczTq00,3188
|
|
63
|
+
agentops/mcp/__init__.py,sha256=QNZIlyk79sirN4975j0_ESUaQ7U8RZ8Tmxi0B4RqgRo,393
|
|
64
|
+
agentops/mcp/server.py,sha256=ubZ4lQMZ77BdRrFwq8TzE00HsQ7EtCkjNKFVOsFg_jk,8689
|
|
65
|
+
agentops/pipeline/__init__.py,sha256=9YJeOkgCm-ilyPDXMvGTK_HVeImAWntUV4KXCVHQYiI,206
|
|
66
|
+
agentops/pipeline/cloud_results.py,sha256=ZFuZCtGeB3qZxhGGHtAN2eSh5t9cXeb_SaZLjB-9LmE,7112
|
|
67
|
+
agentops/pipeline/cloud_runner.py,sha256=k0VCyBMHwB07XKrUoVOo1TzOtJ278v4g38rboUM13s4,32998
|
|
68
|
+
agentops/pipeline/comparison.py,sha256=DKHJLD0SrW25VGfRWrjSJKJL-PJZGUpDNR-Nf-sDFZE,3468
|
|
69
|
+
agentops/pipeline/diagnostics.py,sha256=wuiT7Vq20pa_1ATp4UVj7TaGoEcoOtofWkycEplTsQo,1670
|
|
70
|
+
agentops/pipeline/invocations.py,sha256=TtR4sc-69zViTyTrDqAwAzTlWZzoudqd0VBcrr7hvcM,17884
|
|
71
|
+
agentops/pipeline/official_eval.py,sha256=k2PjQtoed5vj1z4SCLJ0lTviRkDUmKwb4NERzXECg_I,14169
|
|
72
|
+
agentops/pipeline/orchestrator.py,sha256=gApNcLvrtGfzyCgKC0LIcmVGLJAq38dJi_XZnQvJzjQ,27203
|
|
73
|
+
agentops/pipeline/prompt_deploy.py,sha256=jwj_SS5Md1l4Q8-2CdD5AvQkDCWReDd0nXfZGL03oxs,13393
|
|
74
|
+
agentops/pipeline/publisher.py,sha256=-hKJZTdDREZJS2KQAYAHJHuFkPm2f2o4swtdiOmQ5d8,4057
|
|
75
|
+
agentops/pipeline/reporter.py,sha256=tH1f1IWILJRrWjjaIEThti-6ufWL17-sEvVhlmGXiL4,7517
|
|
76
|
+
agentops/pipeline/runtime.py,sha256=hwsBy3UwqdLjAo14uWBckYS3PhbzI0F5PFni5420ufc,14569
|
|
77
|
+
agentops/pipeline/thresholds.py,sha256=1Hr34GOdA0XhMFfrfEgmdPL9dPTc2LiqzDXeERab-zQ,2688
|
|
78
|
+
agentops/services/__init__.py,sha256=8QHEGqP2AJB-5aDQNcMjOkp4Cg5IrcFBV785jiPGQzc,36
|
|
79
|
+
agentops/services/cicd.py,sha256=W54JLT9D305TWM6hE7xUsWE8AxXtVTV4RKQlqjhcasc,27991
|
|
80
|
+
agentops/services/eval_analysis.py,sha256=Z2GyeXIS80oi2NGNxcDtU1OA5998BUDHyjmh7ogIOvM,29920
|
|
81
|
+
agentops/services/evidence_pack.py,sha256=_2QROSEZzfHDtRWO37tfdCmG9p7PU2LuqxOb9wsqvew,30843
|
|
82
|
+
agentops/services/initializer.py,sha256=0uKu4SXqoOC6eg9ic4LBFHSZTdn7tHRTv-dUOJqokds,3274
|
|
83
|
+
agentops/services/preflight.py,sha256=oyna6mal-u-4g8fOKiQNNJFhP1_43POrjrxnoaGv3V4,16605
|
|
84
|
+
agentops/services/setup_wizard.py,sha256=LGDv1baXtcf_eRHZjzML1bIlfWijv1buMcW-52z9oEU,25236
|
|
85
|
+
agentops/services/skills.py,sha256=9pBQ5p-TSS8bOvGHFdKSUD5YnZSiKmuURWQ5zcswCRw,22384
|
|
86
|
+
agentops/services/trace_promotion.py,sha256=3EaOkxMHTVzaLIjLyf5Zzb94V2Qthb8G8fGg58E_deI,9478
|
|
87
|
+
agentops/services/workflow_analysis.py,sha256=Co8NgCHl35t3CmtVkB8ZH2e8mNpMiGBYfwbGWgwfuNI,40424
|
|
88
|
+
agentops/templates/.gitignore,sha256=AMOk03MneSXmS0nhVQKFGBfh7TsExn_kAtSvhIypNgk,279
|
|
89
|
+
agentops/templates/__init__.py,sha256=ZETLg8W9OClJTrwI-C1t-cKw3yzLonFm14zhGOXfda8,49
|
|
90
|
+
agentops/templates/agent.yaml,sha256=s41bjbfuROUifXZ0d3IEhTwg2dih4xKLySFVJAyffxo,3049
|
|
91
|
+
agentops/templates/agentops.yaml,sha256=HrKZsxcNcvvBQlKAamz_QMweHOYLsjMAlQXMwCtBgwQ,2454
|
|
92
|
+
agentops/templates/foundry.svg,sha256=rxdzOt2Rd4SkgCexYc3pM8S_K2cCYYQJ0IuZptqrUmM,2930
|
|
93
|
+
agentops/templates/icon.png,sha256=3nrfEQNKvw06EYZ-WdxOkVYa-FFZBhrNaSafQjt5Mzk,29425
|
|
94
|
+
agentops/templates/project.gitignore,sha256=AOZh1DCB31VzS9Rv4N8aSfOtz1ZX1vhCUK3q5EHIksI,526
|
|
95
|
+
agentops/templates/sample-traces.jsonl,sha256=q2GFHvcRNIZH5-bQU2pqHYJcj06YBzrvSfiIdFidLM0,986
|
|
96
|
+
agentops/templates/smoke.jsonl,sha256=G-XHs00hOBv5yO1yGUisGXAsQeLUbIdOIB-2STFRsEo,731
|
|
97
|
+
agentops/templates/waf-checklist.README.md,sha256=tAd-gkq6qQiItLsKXRvJZB_SCi1gBEouo4TuX1R_Bqw,3882
|
|
98
|
+
agentops/templates/waf-checklist.csv,sha256=0kEMp3MytCGRMKVln5ZVrL2lOfHK9Od6fK-nty6JaIw,6057
|
|
99
|
+
agentops/templates/agent-server/Dockerfile,sha256=rsGv8PcqT0qQwQSLWjaAvkwePUujRh6vms-iz5ZnKw8,711
|
|
100
|
+
agentops/templates/agent-server/README.md,sha256=6BOzydRyLx6eP1Sd50t3n6Y6OPNYTQyoXhvcVIXDc2I,1815
|
|
101
|
+
agentops/templates/agent-server/main.bicep,sha256=1xKKg1OzLWI8zHHUXWhyfRHD5_dQFedod0cl-fIAV0M,2425
|
|
102
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-dev-azd.yml,sha256=7uHYYaJZ6nzv88V0L__lE8uqQmWvPT9OhfENDmYIqGE,4420
|
|
103
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-dev.yml,sha256=vrnKqQgZnd5SDJ4Aa1ir9-t0FUHHt7n_sQ1BvqSQMPo,2379
|
|
104
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-prod-azd.yml,sha256=rp6HxUxAsSBBRCO6hf0nhMqM1CYEgJHTVDR82p6l4hw,5493
|
|
105
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-prod.yml,sha256=wHJ3xZIyDdhD7VJA79FGICgCuX4e_J9BrD2I-H9t4Sg,3465
|
|
106
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-prompt-agent.yml,sha256=58sySpbnpbFKWWbdG_ThqCvJHn6tgKRv3ymV1eXKMc4,6425
|
|
107
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-qa-azd.yml,sha256=UR-7MJ78quoZw9QpVgM7qbdN7SpYiqq4Hz2_tXi7STk,4386
|
|
108
|
+
agentops/templates/pipelines/azuredevops/agentops-deploy-qa.yml,sha256=L5P9gOOdDYD2MMb-wKeOCEtI2F0V3YDJiF0vk8hPgTs,2086
|
|
109
|
+
agentops/templates/pipelines/azuredevops/agentops-pr-prompt-agent.yml,sha256=0d4lwQg9rLVVNUNjdXQJW0ZatlmtmF7Eg1Y2F2y9Hwc,8748
|
|
110
|
+
agentops/templates/pipelines/azuredevops/agentops-pr.yml,sha256=ht5u_heh2OT_YBmti6jkKXRYRaeK7M6QvfnPwvQ7qZg,6267
|
|
111
|
+
agentops/templates/pipelines/azuredevops/agentops-watchdog.yml,sha256=UkorrmNapNZLxtUkrusKEXQ6-DZSgspCDkFbvEuEcEo,3652
|
|
112
|
+
agentops/templates/skills/agentops-agent/SKILL.md,sha256=uRVMlWMuMz7ZvVAwwhWIDODf2N-i8b34GvAXlA_L400,5054
|
|
113
|
+
agentops/templates/skills/agentops-config/SKILL.md,sha256=llo9HZOS7fJjHigNVOefqd8UsO95yczin_eqB2Dqz-U,4446
|
|
114
|
+
agentops/templates/skills/agentops-dataset/SKILL.md,sha256=0hjXJ2G5zaxhrTzmTBhSqsQ1yqe5s1b_V-7XZ01Ui0o,3403
|
|
115
|
+
agentops/templates/skills/agentops-eval/SKILL.md,sha256=9sFx6G0H_De8ASH3nAloZ7DQO64LhMpTSoYi1X86CQM,7473
|
|
116
|
+
agentops/templates/skills/agentops-report/SKILL.md,sha256=pOYEjSMoEfP4bO7hlhuV6-2PLPLNncCjQVZiOPqv2dM,2999
|
|
117
|
+
agentops/templates/skills/agentops-workflow/SKILL.md,sha256=cCIF2eYMkFOiP1Z1xMmORY4C0HSJLM0oTDCpm70q7EY,23510
|
|
118
|
+
agentops/templates/workflows/agentops-deploy-dev-azd.yml,sha256=B3s-MlrOtKFU6RBgJ4kVkgVQDY5aPSAIPe4tr1_2NUk,5104
|
|
119
|
+
agentops/templates/workflows/agentops-deploy-dev.yml,sha256=gjtcYm-Q1n8c-LuDQgHKAGJvcydmD4wmmnUf1-aMM9Q,5795
|
|
120
|
+
agentops/templates/workflows/agentops-deploy-prod-azd.yml,sha256=KlYoBr6QEztz6A8pKsyjUeyT2V2SWmccmuAM_Il98L0,6474
|
|
121
|
+
agentops/templates/workflows/agentops-deploy-prod.yml,sha256=NmcdoddnVFIuGZ2lYP2afHZc4z1wtHTxaUG2btVzYeA,5728
|
|
122
|
+
agentops/templates/workflows/agentops-deploy-prompt-agent.yml,sha256=Xtv3tjRhqGAS90Aj53e-aM_LM1C8YVRSsPaV-bU-zGQ,6385
|
|
123
|
+
agentops/templates/workflows/agentops-deploy-qa-azd.yml,sha256=J3cjjQKYnm1REjN0aPU-aF2I-mVOxazQCwbQLdtLsfM,5086
|
|
124
|
+
agentops/templates/workflows/agentops-deploy-qa.yml,sha256=aaQu_ZOOKRoL8GYWT96lunWbOWLFh-dYzKAPU7X_qVo,4464
|
|
125
|
+
agentops/templates/workflows/agentops-pr-prompt-agent.yml,sha256=_lumX557g3rVD9imf3mfVaW8b_mPVTi6BIFIBniAshI,7660
|
|
126
|
+
agentops/templates/workflows/agentops-pr.yml,sha256=IH8P3Dfo5Lc65oz2OcXGh_RCT7mMhcAhCK2egzI4Mf4,5433
|
|
127
|
+
agentops/templates/workflows/agentops-watchdog.yml,sha256=0JTCUJ0ipwcB2-MYylZ45tM8QYx7FK-_orlr9_rHzr0,4051
|
|
128
|
+
agentops/utils/__init__.py,sha256=Lq0XaW2hgvwsAn20xcpEvssVm8KS64p9puEfxKMpi-Y,31
|
|
129
|
+
agentops/utils/azd_env.py,sha256=Kfv6vAkkl1oTOKd2eEC-wBiNMmvPvAO32GE80LejnbA,15404
|
|
130
|
+
agentops/utils/azure_endpoints.py,sha256=oblhl4ivkEZBUjRGcx7px01ugHysfvi2rqWbeT-iw7U,2160
|
|
131
|
+
agentops/utils/colors.py,sha256=DAqz5ZivoPIvO5up6fljBL8QTr8z2B4dla_ce92n1vc,1294
|
|
132
|
+
agentops/utils/dotenv_loader.py,sha256=ZkoyBRREpCx4yTQIh642tgjdt5e0-XoqjX9uKQA3tCY,4054
|
|
133
|
+
agentops/utils/foundry_discovery.py,sha256=b4g5DSspb9HXeWpN5a59JAeLrjWk_pdv8OwL3Pcxy74,8209
|
|
134
|
+
agentops/utils/logging.py,sha256=-KoEKwJK24LrPa5xh9Zf6kEfhNl9pCdZi_PFux0F4-M,2203
|
|
135
|
+
agentops/utils/telemetry.py,sha256=mpQlIKZjl6KQb2n10mg6WnkiFBE2SbqY08cSWk_cpzc,19430
|
|
136
|
+
agentops/utils/yaml.py,sha256=8Co92cOrMmL2VwhAv2CbXV_T43u6XOvX_qifZ0htyNw,974
|
|
137
|
+
agentops_accelerator-0.3.0.dist-info/licenses/LICENSE,sha256=ffINzfkZfplFwUhY1Bxg8RtSuT5baeK2NBa4dNWY0yI,1074
|
|
138
|
+
agentops_accelerator-0.3.0.dist-info/METADATA,sha256=LExbABDlT4QfV_ipPbKY7_p9e06oUcCI6VGR1zKLZSk,12580
|
|
139
|
+
agentops_accelerator-0.3.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
140
|
+
agentops_accelerator-0.3.0.dist-info/entry_points.txt,sha256=u6L0CIZ_g8A0fBFlRg22xm44lHNUaKUMnGfjWIZ4Xo4,51
|
|
141
|
+
agentops_accelerator-0.3.0.dist-info/top_level.txt,sha256=iveqXCIg3p0dqEDFVBzPclQhECEFXeEFbALdlVupVVk,9
|
|
142
|
+
agentops_accelerator-0.3.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) Microsoft Corporation.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
agentops
|