Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

databricks-bundle-template

databricks-bundle-template 收录了来自 vmariiechko 的 2 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
2
Stars
5
更新
2026-06-28
Forks
1
职业覆盖
2 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

pyspark-test-runner
软件质量保证分析师与测试员

Use this skill whenever you run or debug local PySpark pytest suites from the agent shell. Invoke `scripts/run-pyspark-tests.py` instead of calling `pytest` raw, so the full output goes to a log file and only a bounded digest reaches your context. The digest carries the exit code, counts, runnable failing node ids, and failures deduplicated by signature, so a suite where many tests fail with the same error collapses to one short block instead of flooding the window. Match the run to the suspected blast radius: when one change likely broke many tests, run the wider scope without `-x` so the digest groups the failures and you fix the shared cause in one pass; add `-x` only to drill on a single suspected failure.

2026-06-28
dbx-ro-query
数据库架构师

Use this skill whenever you need to query a Databricks workspace from the agent shell — schema discovery (DESCRIBE, SHOW), row sampling, aggregations, EXPLAIN, anything that reads but must not mutate. Invoke `scripts/dbx-ro-query.py` instead of calling `databricks experimental aitools tools query` raw, so destructive SQL cannot run by accident. The wrapper allow-lists SELECT / WITH / SHOW / DESCRIBE / DESC / EXPLAIN, blocks every destructive verb after stripping comments and quoted strings, and emits agent-friendly output (auto / scalar / lines / csv / tsv / json) with a shape-aware default that returns 1x1 results as scalars and Nx1 results as lines for token efficiency.

2026-05-13