AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Document Dataset

skill-dremio-cli-document-dataset · by dremio

A Claude skill from dremio/cli.

No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-dremio-cli-document-dataset

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dremio-cli-document-dataset)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Document Dataset? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About


name: document-dataset description: Generate a comprehensive markdown documentation card for a Dremio dataset user_invocable: true triggers:

  • "document dataset"
  • "describe table"
  • "dataset documentation"
  • "data dictionary"
  • "what is this table"
  • "table info"

Document Dataset

Generate a complete documentation card for a Dremio dataset including schema, lineage, sample data, and metadata.

Agent Rules

  • Use --fields to reduce output size (e.g., drs schema describe --fields columns.name,columns.type)
  • Use drs describe to check parameter schemas before calling unfamiliar commands
  • Paths must be dot-separated; quote components containing dots: "my.source".table

Step 1: Get Column Schema

drs schema describe 

This returns:

  • Column names and data types
  • Nullable flags
  • Nested/complex type structures (LIST, STRUCT, MAP)

Record every column — this forms the core of the documentation card.

Step 2: Get Lineage

drs schema lineage 

This shows:

  • Upstream dependencies — source tables and views this dataset reads from
  • Downstream dependents — views and reflections built on top of this dataset
  • Transformation chain — the path from raw sources to this dataset

Step 3: Get Sample Data

drs schema sample 

This returns a small set of representative rows. Use this to:

  • Understand actual data formats (date patterns, enum values, ID formats)
  • Identify columns that are mostly null or have unexpected values
  • Show realistic examples in the documentation

Step 4: Get Wiki and Tags

drs schema wiki 

This returns:

  • Wiki content — user-authored descriptions attached to the dataset in Dremio
  • Tags/labels — categorization tags applied in the Dremio catalog

Step 5: Check Reflections

drs reflect list 

Document any reflections:

  • Reflection type (raw vs aggregate)
  • Status (active, refreshing, failed)
  • Columns included
  • Refresh schedule

Step 6: Assemble the Documentation Card

Combine all gathered information into a markdown card with this structure:

# 

**Path:** ``
**Source:** 
**Tags:** 

## Description

## Schema

| Column | Type | Nullable | Description |
|--------|------|----------|-------------|
|  |  |  |  |
|  |  |  |  |

## Sample Data

## Lineage

**Upstream:** 
**Downstream:** 

## Reflections

| Name | Type | Status | Columns |
|------|------|--------|---------|
|  | raw/agg | active |  |

## Notes

- 

Tips

  • For nested types (STRUCT, LIST), expand sub-fields in the schema table with dot notation: address.city, address.zip.
  • For large tables (100+ columns), group columns by prefix or functional area.
  • If sample data reveals PII (emails, phone numbers, SSNs), note this in the documentation and flag for the data owner.
  • Cross-reference with drs access grants if the user wants access info included.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.