Use this skill when the user wants to query databases or data files using SQL from the command line.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-ae2c32f8)More formats (shields.io, HTML) on the badges page.
---
name: rsql
description: Use this skill when the user wants to query databases or data files using SQL from the command line.
---
# rsql Plugin
Command line SQL interface supporting 30+ databases and data files.
## Commands
### Query
- `rsql query run` — Execute a SQL query against a database
- `rsql file query` — Query a data file (CSV, JSON, Parquet, etc.)
## Usage Examples
- "Query a PostgreSQL database"
- "Run SQL on a CSV file"
- "Query JSON data with SQL"
- "Execute SQL against SQLite"
## Installation
```bash
cargo install rsql_cli
```
## Examples
```bash
# Query PostgreSQL
rsql postgresql://user:pass@localhost/db -e "SELECT * FROM users"
# Query a CSV file
rsql data.csv -e "SELECT name, COUNT(*) FROM data GROUP BY name"
# Query JSON file
rsql data.json -e "SELECT * FROM json_data WHERE value > 100"
# Query SQLite
rsql sqlite:./mydb.sqlite "SELECT * FROM table"
# Interactive mode
rsql postgresql://localhost/mydb
```
## Key Features
- 30+ database drivers (PostgreSQL, MySQL, SQLite, etc.)
- Query data files (CSV, JSON, Parquet, Arrow, etc.)
- Interactive and batch modes
- Output formats: table, CSV, JSON, markdown
- SQL dialects and extensions
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
MySQL development best practices for schema design, query optimization, and database administration
基于Supabase最佳实践的PostgreSQL数据库模式,用于查询优化、架构设计、索引和安全。
ClickHouse数据库模式、查询优化、分析和数据工程最佳实践,适用于高性能分析工作负载。
Spring Boot中的JPA/Hibernate实体设计、关系、查询优化、事务、审计、索引、分页和连接池模式。
Unify 6+ memory systems into AgentDB with HNSW indexing for 150x-12,500x search improvements. Implements ADR-006 (Unified Memory Service) and ADR-009 (Hybrid Memory Backend).