pudap/skills

puda-database

Query the puda database using SQL and the puda CLI. Use when users need to inspect schema or run SQL commands

First seen Apr 14, 2026

Installation

$ npx skills add pudap/skills --skill puda-database

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from pudap/skills · top by installs.

npx skills add pudap/skills

Browse all from pudap/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,688 B
  • docs SUMMARY.md 130 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 78 installs

SKILL.md

Database Query

Query the puda database using the puda CLI with SQL.

Purpose

This skill enables querying the puda database: understanding its schema and executing SQL statements via the puda CLI.

When to Use

Load this skill when:

  • Users want to query or inspect puda database data
  • Users need to understand table and column structure before writing SQL
  • Running ad-hoc SQL (e.g. filtering commandlog by commandname)

Required Resources

IMPORTANT: Before writing or running SQL, consult the schema:

  1. Schema: Run puda db schema to see tables, columns, and types. Use this to write correct SQL and avoid invalid column/table names.

Do not assume table or column names; confirm them with puda db schema first.

When getting data from biologic machine command: data is always in payload at payload["response"]["data"].

Commands

  • puda db schema – Print database schema (tables and columns). Use to understand structure before writing SQL.
  • puda db exec "<SQL>" – Execute a single SQL statement. Pass the SQL as a quoted string.

Example

puda db exec "SELECT * FROM command_log WHERE command_name='start'"

Instructions

  1. Consult schema: Run puda db schema to understand tables and columns before writing SQL.
  2. Execute SQL: Use puda db exec "<SQL>" with the SQL in double quotes. Escape internal quotes as needed for your shell.
  3. Parse output: Read command output to confirm success or to use result data in subsequent steps.