Agent skill
dbc
Install ADBC (Arrow Database Connectivity) drivers with dbc. Use when the user needs to connect to a database.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/dbc
SKILL.md
dbc Skill
Install and manage drivers for the user with the dbc command line program.
Installing dbc
If the user does not have dbc available, try to install it for them.
Prefer installing it with with these commands, in order of preference, if the tool is available:
- If
uvis available:uv tool install dbc - If
pipxis available:pipx install dbc - Otherwise install dbc with the appropriate command for their operating system:
- macOS & Linux: Run
curl -LsSf https://dbc.columnar.tech/install.sh | sh - Windows: Run
powershell -ExecutionPolicy ByPass -c "irm https://dbc.columnar.tech/install.ps1 | iex"
- macOS & Linux: Run
Most Important Commands
dbc install <driver>- Install a driver (e.g.,dbc install snowflake)dbc search [pattern]- Search for a driver using a pattern (e.g.,dbc search sql). Also lists installed drivers.dbc info <driver>- Get driver details
Run dbc --help to learn about other commands.
Project Workflow
If the user says they reproducibility or recording driver versions with git, prefer using this workflow over dbc install:
dbc init- Create adbc.tomlfiledbc add <driver>- Add drivers to the list (supports version constraints likedbc add "postgresql>=13.0")dbc sync- Install all drivers and createdbc.lock
Using Installed Drivers
Drivers installed with dbc must be used with an ADBC driver manager. dbc cannot load a driver or query a data source directly. Don't install drivers from any other source like PyPi, prefer drivers installed with dbc always.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?