Skip to main content

dataproduct-builder-skills (Python)

Agent skills for designing and building Vulcan/DataOS data products — the Python port of the dataproduct-builder-skills npm scaffolder. Run it via uvx/pipx instead of npx.

Scaffolds agent skills for Cursor, Claude Code, Codex, or VS Code (Copilot) — plus the full Vulcan reference docs — into any project.

Usage

Installs the skills and the Vulcan reference docs your project needs:

# Installs examples for all engines by default
uvx dataproduct-builder-skills

# Or pass an engine to install examples for just that one
uvx dataproduct-builder-skills snowflake
uvx dataproduct-builder-skills postgres
uvx dataproduct-builder-skills databricks

Or with pipx:

pipx run dataproduct-builder-skills snowflake

This launches an interactive prompt for which IDE(s) to install into:

dataproduct-builder-skills — scaffolding skills + docs

Which IDE(s) are you using? (comma-separated for multiple, e.g. 1,2)

  1  Cursor
  2  Claude Code
  3  Codex
  4  VS Code (Copilot)
  5  All

Enter number(s) (1–5):

Engine selection is not interactive — it's all by default, or whichever engine you passed as a CLI argument.

What gets installed

.cursor/skills/              ← Cursor (created if you chose Cursor or All)
  design-data-product/
    SKILL.md
  build-data-product/
    SKILL.md
.claude/skills/               ← Claude Code (created if you chose Claude Code or All)
  design-data-product/
    SKILL.md
  build-data-product/
    SKILL.md
.codex/skills/               ← Codex (created if you chose Codex or All)
  design-data-product/
    SKILL.md
  build-data-product/
    SKILL.md
.github/skills/               ← VS Code / GitHub Copilot (created if you chose VS Code or All)
  design-data-product/
    SKILL.md
  build-data-product/
    SKILL.md
dpbs-docs/
  dataos-philosophy/  ← DataOS core concepts
  vulcan-docs/        ← Vulcan CLI & framework reference
  vulcan-examples/
    <engine>/         ← real working data product examples for your chosen engine
  vulcan-*.whl        ← Vulcan CLI wheel — install with: pip install dpbs-docs/vulcan-*.whl

What the skills do

design-data-product

Guides you from a vague idea to a validated data-product-plan.md spec through:

  • Structured question batches (business context, data sources, grain, measures, metrics)
  • Entity inference and table discovery via the Data Product MCP
  • Model-kind classification, join recommendations
  • Quality rules, AI context, and semantic behavior drafting

Trigger: ask the agent to "design a data product", "start a Vulcan design session", or "help me with data-product-plan.md".

Requires: Data Product MCP (dataproduct-mcp/api/v1) connected in Cursor Settings → MCP.

build-data-product

Turns the validated design spec into a working, deployed Vulcan data product — scaffolding models, generating SQL/YAML, running vulcan plan/evaluate, enriching metadata, applying quality checks, and deploying to dev and prod.

Trigger: ask the agent to "build the data product", "scaffold the Vulcan project", or "run vulcan plan".

Requirements

  • Python ≥ 3.9
  • Data Product MCP connected in Cursor (for the design skill)
  • Vulcan CLI (pip install vulcan-data-tool) for the build skill

Re-running

Running uvx dataproduct-builder-skills again safely updates existing files with the latest skill and docs content.

Vendoring shared content (maintainers)

Before building/testing, vendor the shared skills/ and dpbs-docs/ content from the repo root into the package's data/ directory (mirrors what bin/create.js/npm pack ships for the npm package):

python3 scripts/vendor_data.py

Building the package (maintainers)

python3 scripts/vendor_data.py
uv build   # or: python3 -m build

This produces an sdist and wheel in python/dist/.

Testing locally without publishing (maintainers)

uv build
uvx --from dist/dataproduct_builder_skills-<version>-py3-none-any.whl dataproduct-builder-skills snowflake
# or
pipx run --spec dist/dataproduct_builder_skills-<version>-py3-none-any.whl dataproduct-builder-skills snowflake

Inspect .claude/skills/, .cursor/skills/, and dpbs-docs/ in a scratch project to verify the output.

Publishing a new version (maintainers)

Follow these steps every time you want to ship an update to PyPI.

1. Make your changes

Edit skill files, docs, or the CLI as needed.

2. Bump the version

Update version in python/pyproject.toml to match the npm package's version in package.json (patch/minor/major, same semver rules as npm).

3. Vendor and build

python3 scripts/vendor_data.py
uv build

4. Publish to PyPI

uv publish   # or: python3 -m twine upload dist/*

First time only: configure your PyPI credentials (uv publish --token <token>, or ~/.pypirc for twine).

One-liner (steps 3–4 combined)

python3 scripts/vendor_data.py && uv build && uv publish

5. Verify

# confirm the new version is live on PyPI
pip index versions dataproduct-builder-skills

# test the published package end-to-end
uvx dataproduct-builder-skills@latest

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dataproduct_builder_skills-1.2.2.tar.gz (1.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dataproduct_builder_skills-1.2.2-py3-none-any.whl (1.9 MB view details)

Uploaded Python 3

File details

Details for the file dataproduct_builder_skills-1.2.2.tar.gz.

File metadata

  • Download URL: dataproduct_builder_skills-1.2.2.tar.gz
  • Upload date:
  • Size: 1.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for dataproduct_builder_skills-1.2.2.tar.gz
Algorithm Hash digest
SHA256 f90c924f867ac846fc87bd2af0c8d5b51bc4ec97da626eb31101e35f32f0510d
MD5 acd8ee698781ca621dd4622684343e1c
BLAKE2b-256 001343d70c018ce1fb77618b471e9fa923f8e66d2c70cfd1555aaa96bc4cb74f

See more details on using hashes here.

File details

Details for the file dataproduct_builder_skills-1.2.2-py3-none-any.whl.

File metadata

  • Download URL: dataproduct_builder_skills-1.2.2-py3-none-any.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for dataproduct_builder_skills-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6ab522e6b04fa1ac4f7a212ef5c80e66c0709c83e4fc46a35faf5e6eddbb41cf
MD5 bbbe6fcb3229039dbce70fce3cb50dfa
BLAKE2b-256 b96f7544ab54b7dad34d015a659970070cb60a6d0cc3a2b5d7dd46b55887e7ed

See more details on using hashes here.

Release history Release notifications | RSS feed

1.2.3

2 files

This release

1.2.2 This release

2 files

1.2.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page