Skip to content
ai-supply.store
ОбзорКатегорииРейтингиСообществоAgent APIFAQ
ВойтиБесплатная регистрация
catalog / Agentic capability / AgentOps — AI Agent Observability & Monitoring SDK
◆SkillAgentic capabilityFree

AgentOps — AI Agent Observability & Monitoring SDK

Python SDK for AI agent monitoring, LLM cost tracking, session replay, and benchmarking across all major agent frameworks.

@ai-supply
Установки60k
⟳ upstream 0.4.21 · updated 11mo ago
↗ Исходный репозиторий
← More Agentic capabilityAgentic capability leaderboard →How we grade security →Source ↗
! Grade B · 75/100 · ReviewSecurity assessment
✓No compromise signals22capabilities surfaced1known CVE7of 20 OWASP controls clear
Broad capability surfaceSuspicious network referencesLow-confidence secret matchSuspicious network references
scanned 18d ago · partial·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

AgentOps

AgentOps gives every AI agent a flight recorder. A single decorator or SDK call captures every LLM request, tool call, error, and agent state transition — then surfaces them in a web dashboard with cost attribution, latency histograms, and session replays.

Key Features

  • One-line integration: agentops.init(api_key) wraps any LLM call automatically
  • Session replay: step-through timeline of every agent action
  • Cost tracking: per-model, per-session, per-run token and dollar spend
  • Error detection: captures exceptions, hallucinations, and infinite loops
  • Benchmarking: compare agent versions side-by-side
  • Native integrations: CrewAI, AutoGen, LangChain, OpenAI Agents SDK, Agno, CamelAI

Quick Start

import agentops
from openai import OpenAI

agentops.init("<AGENTOPS_API_KEY>")
client = OpenAI()

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "What is 2 + 2?"}],
)
print(response.choices[0].message.content)
agentops.end_session("Success")

Install via ai-supply

npx ai-supply add agentops-agent-observability-sdk

Curated mirror of the open-source AgentOps (MIT). Get it from the source.

Rating rank
#1
of 35 in Agentic capability
Install rank
#23
of 35 in Agentic capability
Security score
75/100 · B
review
Security rank
#23
of 35 in Agentic capability
Installs
60k
cat avg 186k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Agentic capability leaderboard →
! Security: Review · 7575/100 · grade Bscanned 18d ago
✓ no compromise signals23 risk-surface · 8/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

What this capability can do · med confidence (static)
⚑ filesystem⚑ shell⚑ network⚑ secrets
egress → agentops.ai, docs.agentops.ai, docs.github.com, pypi.org, test.pypi.org, api.example.com, discord.gg, agentops.ai?ref=gh +32
30 scripts

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM03Supply Chaincritical
Vulnerable/compromised dependencies, models or archives in the artifact.
•Vulnerable dependencies — 135 known vulnerabilities in: aiohttp@3.11.14, gitpython@3.1.44, h11@0.14.0, h2@4.2.0, idna@3.10, pyasn1@0.6.1, pygments@2.19.1, pyjwt@2.10.1 (CWE-1395)known CVE · -25 pts
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — dynamic code execution · agentops/app/SETUP_GUIDE.md (CWE-95)expected
•Suspicious code patterns — destructive rm -rf / · agentops/app/api/Dockerfile (CWE-78)expected
•Suspicious code patterns — pickle deserialization · agentops/app/api/agentops/api/encoders/spans.py (CWE-502)expected
•Suspicious code patterns — OS command execution · agentops/app/api/tests/_conftest/clickhouse.py (CWE-78)expected
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 1 distinct host(s) · agentops/.github/CONTRIBUTING.mdexpected
•External endpoints declared — 3 distinct host(s) · agentops/.github/workflows/python-publish.ymlexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · agentops/CONTRIBUTING.md (CWE-272)risk surface
•External endpoints declared — 4 distinct host(s) · agentops/CONTRIBUTING.mdexpected
•External endpoints declared — 27 distinct host(s) · agentops/README.mdexpected
•External endpoints declared — 2 distinct host(s) · agentops/agentops/__init__.pyexpected
•External endpoints declared — 10 distinct host(s) · agentops/app/CONTRIBUTING.mdexpected
•Egress to a private/loopback host — 127.0.0.1 · agentops/app/README.md (CWE-918)expected
•External endpoints declared — 19 distinct host(s) · agentops/app/README.mdexpected
•Egress to a private/loopback host — 127.0.0.1, 0.0.0.0 · agentops/app/SETUP_GUIDE.md (CWE-918)expected
•External endpoints declared — 5 distinct host(s) · agentops/app/api/README.mdexpected
•External endpoints declared — 6 distinct host(s) · agentops/app/dashboard/README.mdexpected
⚠LLM07System Prompt Leakagemedium
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Low-confidence secret match — possible: JWT · agentops/app/SETUP_GUIDE.md (CWE-798)risk surface
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · agentops/app/api/tests/auth/test_public_routes.py (CWE-200)risk surface
⚠LLM10Unbounded Consumptionmedium
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
•Potentially unbounded loop — an infinite loop (while True / while(1) / for(;;)) may cause runaway consumption · agentops/app/api/agentops/deploy/views/setup.py (CWE-835)risk surface
⚠LLM02Sensitive Information Disclosurelow
Secrets, credentials or PII shipped inside the artifact.
•Low-confidence secret match — possible: JWT · agentops/app/SETUP_GUIDE.md (CWE-798)risk surface
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
✓LLM01Prompt InjectionPassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
✓LLM08Vector and Embedding WeaknessesPassed
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
OWASP Machine Learning Security Top 10
⚠ML06AI Supply Chaincritical
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Vulnerable dependencies — 135 known vulnerabilities in: aiohttp@3.11.14, gitpython@3.1.44, h11@0.14.0, h2@4.2.0, idna@3.10, pyasn1@0.6.1, pygments@2.19.1, pyjwt@2.10.1 (CWE-1395)known CVE · -25 pts
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — dynamic code execution · agentops/app/SETUP_GUIDE.md (CWE-95)expected
•Suspicious code patterns — destructive rm -rf / · agentops/app/api/Dockerfile (CWE-78)expected
•Suspicious code patterns — pickle deserialization · agentops/app/api/agentops/api/encoders/spans.py (CWE-502)expected
•Suspicious code patterns — OS command execution · agentops/app/api/tests/_conftest/clickhouse.py (CWE-78)expected
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML02Data PoisoningPassed
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (4) · hygiene / uncategorized
•Suspicious network references — raw IP URL (69 URLs) · agentops/app/README.mdrisk surface
•Suspicious network references — raw IP URL (40 URLs) · agentops/app/SETUP_GUIDE.mdrisk surface
•Unrecognized file type — '.?' is not on the allowlist · agentops/app/api/Dockerfilerisk surface
•Suspicious network references — raw IP URL (2 URLs) · agentops/app/api/agentops/app.pyrisk surface
✔ verified source · pinned partial
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/agentops-agent-observability-sdk/check). Click a policy:

Consume AgentOps — AI Agent Observability & Monitoring SDK programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/agentops-agent-observability-sdk

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/agentops-agent-observability-sdk/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add agentops-agent-observability-sdk

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/agentops-agent-observability-sdk/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "agentops-agent-observability-sdk" })
OpenAPI spec →
vlatest
! Security: Review · 751mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Бесплатные AI-возможности с проверкой безопасности — skills, MCP, плагины, агенты, датасеты и другое. У каждой своя оценка безопасности и контроль актуальности, и всё создано как для людей, так и для агентов.

api · v3.1status · all green
Контакты
support@ai-supply.storesecurity@ai-supply.store
Каталог
  • Обзор
  • Категории
  • Рейтинги
  • Бенчмарки
  • Безопасность
  • Scan a repo
Сообщество
  • Сообщество
  • FAQ
Для агентов
  • Быстрый старт (60s)
  • Авторизовать агента
  • Agent API
  • Спецификация OpenAPI
Для разработчиков
  • Опубликовать
  • Панель управления
Аккаунт
  • Создать аккаунт
  • Войти
  • Настройки
Правовые документы
  • Условия использования
  • Соглашение издателя
  • Правила допустимого использования
  • Конфиденциальность