agentsclimarketplace

Dbconnect

Skill fuseraft/skills/dbconnect

Use dbconnect.exe to validate connectivity, inspect schema, run SQL files including migration scripts, and export results. Keep invocation specifics in references/ and execute through scripts/ wrappers.From its SKILL.md

Install
npx -y skills add fuseraft/skills --skill dbconnect

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.9 KB, 384 tokens by cl100k_base, as published. Nobody here has run it

dbconnect

When to use

  • Need to test SQL Server or Oracle connectivity.
  • Need to list named connections from a .connections file.
  • Need to inspect schema or run ad hoc SQL.
  • Need to execute SQL files such as migrations.
  • Need query output written to CSV.

Inputs to gather

  • Target DB type: mssql or oracle
  • Either --conn string or named connection for --use
  • SQL text or path to .sql file
  • Optional CSV output path

Procedure

  1. Read references/dbconnect-usage.md and references/dbconnect-examples.md.
  2. Confirm dbconnect\bin\dbconnect.exe exists.
  3. If the user wants saved connections, run scripts\dbconnect-list.bat.
  4. For a connectivity check, run a trivial query like SELECT 1 using the right wrapper.
  5. For schema inspection, use the schema query pattern in references/dbconnect-examples.md.
  6. For migrations or other file-based SQL, execute the .sql file path through the wrapper.
  7. If results must be preserved, pass an output CSV path.
  8. Return the exact command run, summarize results, and call out any prerequisite failures.

Rules

  • Prefer wrapper scripts in scripts/; do not invoke the exe manually unless troubleshooting.
  • Do not invent connection strings, named connections, or schema names.
  • Treat destructive SQL as dangerous; require explicit user intent before running it.
  • If authentication or network access fails, report the exact stderr and stop.
  • Keep secrets out of logs and responses when echoing commands.

References

  • references/dbconnect-usage.md
  • references/dbconnect-examples.md
  • scripts/dbconnect-run.ps1
  • scripts/dbconnect-run.bat
  • scripts/dbconnect-list.bat

What ships with it: 9 files

18.0 KB alongside SKILL.md, 4 of them executable

dbconnect/

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.