dsoa-context

dsoa-context is a skill for OpenCode from dynatrace-oss/dynatrace-snowflake-observability-agent. It costs 0 tokens per session (2,872 once invoked), scanned A, original, MIT.

A project-context skill for the Dynatrace Snowflake Observability Agent, which runs inside Snowflake and sends telemetry such as metrics, logs, and traces to Dynatrace.

In plain words
What is it for?
Use it when developing or planning Snowflake observability plugins, their Python and SQL files, telemetry handling, or related tests.
Why use it?
It gives agents the repository's architecture, coding standards, testing patterns, and documentation rules before they make changes.

Skill for OpenCode

Written for OpenCode: installed under .opencode/.

Good fit Use it when developing or planning Snowflake observability plugins, their Python and SQL files, telemetry handling, or related tests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dynatrace-oss/dynatrace-snowflake-observability-agent --skill dsoa-context
Clone the repo
git clone --depth 1 https://github.com/dynatrace-oss/dynatrace-snowflake-observability-agent

Made for: OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for dsoa-context

README.md
[![agentmods](https://agentmods.dev/badge/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context/github.svg)](https://agentmods.dev/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context)
Your own site
<a href="https://agentmods.dev/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context"><img src="https://agentmods.dev/badge/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for dsoa-context

Your own site · 80×15
<a href="https://agentmods.dev/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context"><img src="https://agentmods.dev/badge/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/dsoa-context.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,872 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 97
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • high Privilege Escalation · line 161
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.02872
Opus 5 $0.00000 $0.01436
Sonnet 5 $0.00000 $0.00574
Haiku 4.5 $0.00000 $0.00287

Measured 8d ago against content hash ef474cb76cf8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

dsoa-context scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.opencode/skills/dsoa-context/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DSOA — Dynatrace Snowflake Observability Agent

Persona

You are the DSOA coding sidekick — a senior data-platform engineer and observability expert in Snowflake, OpenTelemetry, and Dynatrace. You build and maintain an observability agent running inside Snowflake as stored procedures, pushing telemetry (metrics, logs, spans, events, business events) to Dynatrace.

Repository: https://github.com/dynatrace-oss/dynatrace-snowflake-observability-agent


Core Architecture

DSOA is plugin-based: each plugin captures one observable aspect of Snowflake.

Agent lifecycle

  1. Snowflake task scheduler invokes the main stored procedure.
  2. DynatraceSnowAgent.process() iterates over enabled plugins.
  3. Each plugin queries Snowflake views, transforms rows, emits telemetry via OtelManager.
  4. Telemetry → Dynatrace over HTTPS (OTLP for logs/spans; Dynatrace API for metrics/events).

Plugin anatomy — every plugin has exactly three co-located parts

Component Path pattern Purpose
Python module src/dtagent/plugins/{name}.py {CamelCase}Plugin(Plugin) with PLUGIN_NAME and process()
SQL directory src/dtagent/plugins/{name}.sql/ Views, functions, tasks (3-digit prefix ordering)
Config directory src/dtagent/plugins/{name}.config/ {name}-config.yml, bom.yml, instruments-def.yml, readme.md

Key modules

File Purpose
src/dtagent/agent.py DynatraceSnowAgent entry point
src/dtagent/config.py Reads CONFIG.CONFIGURATIONS table
src/dtagent/connector.py Ad-hoc telemetry sender
src/dtagent/util.py Shared helpers (escaping, JSON, timestamps)
src/dtagent/otel/ Exporters: Logs, Spans, Metrics, events
src/dtagent/otel/semantics.py Metric semantic definitions (auto-generated)
src/dtagent/_snowflake.py Secrets via read_secret()

Read the full file on GitHub · 204 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 204 lines · 0 tokens per session scan A ef474cb76cf8

Subscribe to this mod's changes

dsoa-context is a skill published in the GitHub repository dynatrace-oss/dynatrace-snowflake-observability-agent (10 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,872 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-02.

Related

Other skills, from other repositories

connection-auth-rules

Build a Connection Auth Rules for a Monte Carlo connection type. Fetches live connector schemas and transform steps from the apollo-agent repo.

monte-carlo-data/mc-agent-toolkit · 32 tokens

mem0-oss-to-platform

Plan and then execute a migration of a project from the mem0 open-source / self-hosted SDK (the local Memory class) to the mem0 Platform / hosted / managed SDK (the MemoryClient class). Use this whenever a developer wants to move, switch, or migrate their mem0 usage off OSS/self-hosted to the hosted API — e.g.…

mem0ai/mem0 · 273 tokens

agui-dotnet-protobuf

Use the protobuf wire transport (instead of the default Server-Sent Events) for an AG-UI connection with the AG-UI .NET SDK — a compact binary event stream negotiated via the Accept header. USE FOR: making an AGUIChatClient prefer protobuf by wiring an AGUIEventStreamHandler with ProtobufEventStreamFormatter (then…

ag-ui-protocol/ag-ui · 162 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

fastapi-router-py

Create FastAPI routers with CRUD operations, authentication dependencies, and proper response models. Use when building REST API endpoints, creating new routes, implementing CRUD operations, or adding authenticated endpoints in FastAPI applications.

microsoft/skills · 46 tokens

migrate-segw-to-rap

Reverse-engineer a SEGW-built OData V2 service (MPC/DPC/MPCEXT/DPCEXT) into a modern RAP V4 service — tables, CDS views (interface + projection), behavior definitions, draft entities, service definition + binding. Use when asked to "migrate this SEGW service to RAP", "convert OData V2 to V4 RAP", "modernize this…

arc-mcp/arc-1 · 106 tokens