snowflake-synthetic

snowflake-synthetic is a skill for OpenCode from dynatrace-oss/dynatrace-snowflake-observability-agent. It costs 19 tokens per session (4,163 once invoked), scanned A, original, MIT.

A procedure for creating and updating synthetic Snowflake test data and pipelines for checking DSOA telemetry and dashboards.

In plain words
What is it for?
Use it to set up, change, or verify Snowflake test databases, warehouses, roles, and synthetic data pipelines.
Why use it?
It provides an isolated test setup that can validate telemetry without requiring DSOA to already be deployed.

Skill for OpenCode

Written for OpenCode: installed under .opencode/. Also seen: mentions OpenCode.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/dev/build.sh.

Good fit Use it to set up, change, or verify Snowflake test databases, warehouses, roles, and synthetic data pipelines.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/dynatrace-oss/dynatrace-snowflake-observability-agent
agentmods
npx agentmods add skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic

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 snowflake-synthetic

README.md
[![agentmods](https://agentmods.dev/badge/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic/github.svg)](https://agentmods.dev/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic)
Your own site
<a href="https://agentmods.dev/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic"><img src="https://agentmods.dev/badge/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic/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 snowflake-synthetic

Your own site · 80×15
<a href="https://agentmods.dev/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic"><img src="https://agentmods.dev/badge/skills/dynatrace-oss/dynatrace-snowflake-observability-agent/snowflake-synthetic.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,163 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 pass 7 Sept 2026
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.00019 $0.04163
Opus 5 $0.00010 $0.02082
Sonnet 5 $0.00004 $0.00833
Haiku 4.5 $0.00002 $0.00416

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

Security

Grade A, and why

snowflake-synthetic 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 10d 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/snowflake-synthetic/SKILL.md · 451 lines

How it starts

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

Skill: Snowflake Synthetic Test Setup

Use this skill whenever you need to create, update, or verify synthetic test data pipelines in Snowflake for validating DSOA telemetry and dashboards.

Environment Reference (test-qa)

Validated on: test-qa (YOUR_SNOWFLAKE_TEST_ACCOUNT, AWS_US_EAST_1)

Item Value
CLI connection snow_agent_test-qa
Snowflake account YOUR_SNOWFLAKE_TEST_ACCOUNT
Region AWS_US_EAST_1
DSOA database DTAGENT_QA_DB
Owner role DTAGENT_QA_OWNER
Viewer role DTAGENT_QA_VIEWER
Default warehouse DTAGENT_WH
Synthetic warehouse DSOA_TEST_WH (XSMALL, created by setup scripts)
Synthetic database DSOA_TEST_DB (created by setup scripts)

Note: The connection's default role (YOUR_SNOWFLAKE_TEST_ROLE) cannot see DTAGENT databases. Always use USE ROLE DTAGENT_QA_OWNER explicitly when checking for agent objects.

Design Principle: DSOA-Independence

Synthetic setup scripts must be fully independent of DSOA. They create test data that DSOA will eventually observe, but they must not assume DSOA is already deployed — the whole point is that the environment can be set up before DSOA is deployed for the first time.

Concretely:

  • Never reference DTAGENT_* roles, databases, or objects in a setup script. Those objects may not exist yet.
  • Do not grant to DTAGENT_QA_VIEWER in the setup script. DSOA's own deploy (--scope=admin,config) handles grants to its viewer role as part of installation.
  • Run everything as SYSADMIN (for object creation) and ACCOUNTADMIN (for account-level grants only, e.g. EXECUTE TASK). All created objects are owned by SYSADMIN or transferred to it — no DSOA-specific roles needed.

The DSOA viewer role gains access to DSOA_TEST_DB automatically when DSOA is deployed (its admin SQL grants USAGE on all databases the agent needs to read). No manual grants to DTAGENT_* roles are needed in the setup script.

Read the full file on GitHub · 451 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. 10d ago First seen · 451 lines · 19 tokens per session scan A 641b19f7aeaa

Subscribe to this mod's changes

snowflake-synthetic is a skill published in the GitHub repository dynatrace-oss/dynatrace-snowflake-observability-agent (10 stars, last pushed 8d ago), licensed MIT. It adds 19 tokens to every session and 4,163 once invoked, about $0.0001 per session on Opus 5. 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

review-prs

Review a GitHub pull request in the googleapis/mcp-toolbox repo against the team's reviewer checklist: PR title/description conventions, linked issue, logic errors and unhandled edge cases, breaking changes, test coverage, docs updates, security (input handling), and new dependencies. Use whenever a maintainer asks…

googleapis/mcp-toolbox · 162 tokens

reproduce-bug

Reproduce a reported bug in googleapis/mcp-toolbox and decide whether it is real, delivering an evidence-backed verdict: confirmed, already fixed, misconfiguration, client-side, works as intended, not reproducible, or blocked. Use whenever a maintainer asks you to reproduce, verify, confirm, or investigate a bug…

googleapis/mcp-toolbox · 130 tokens

fix-failing-tests

Diagnose a failing test in the googleapis/mcp-toolbox repo and land a fix by reasoning from the actual error: read the failure, reproduce it, shrink it until the cause is forced into the open, then fix the cause. Use this whenever a test or CI job is red, a build breaks after a change, many packages fail at once, or a…

googleapis/mcp-toolbox · 87 tokens

azure-cosmos-db-py

Build Azure Cosmos DB NoSQL services with Python/FastAPI following production-grade patterns. Use when implementing database client setup with dual auth (DefaultAzureCredential + emulator), service layer classes with CRUD operations, partition key strategies, parameterized queries, or TDD patterns for Cosmos. Triggers…

microsoft/skills · 96 tokens

gh-issue

Size-audit, write, and split BanyanDB issues that somebody else or an automated TDD workflow can implement. Use whenever the user asks to file or revise an issue, decide whether an issue is too large, make an issue TDD-ready, turn a design into tickets, or split an umbrella into executable leaves. Do not draft or file…

apache/skywalking-banyandb · 91 tokens

review

Enter the Review phase of CocoBrew. Aggregates findings from Code Quality Advisor, CocoCupper intelligence, spec compliance check, and decision coverage gate. Produces review.md with decision points. Requires developer approval before $ship can proceed.

Snowflake-Labs/cocoplus · 50 tokens