🗄️
DataRust

Arrow CLI

by sundy-li

Arrow CLI is a Data skill for Claude Code, published by sundy-li in arrow_cli.

13 stars3 forkson sundy-li/arrow_cliAdded 2026/07/16Repository updated 2026/06/11
arrowcliflightflight-sql
Install in seconds
Install Arrow CLI
Copy Arrow CLI into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/sundy-li/arrow_cli ~/.claude/skills/arrow_cli

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/sundy-li/arrow_cli.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
SKILL.md in sundy-li/arrow_cli
Installs to
~/.claude/skills/arrow_cli
Collection
The only skill cataloged from this repository
Category
Data812 skills

What Arrow CLI does

Connect to a Flight SQL server, execute SQL queries, and retrieve results in table, JSON, CSV, TSV, or PSV formats. Ideal for querying databases that support the Arrow Flight SQL protocol.

Arrow CLI is cataloged under Data on DirSkills. Arrow CLI comes from a repository tagged arrow, cli, flight and flight-sql.

Documentation

README

arrow_cli

arrow_cli is a command-line client for connecting to a Flight SQL server and executing SQL queries.

Install

cargo install arrow_cli

After installation, confirm that the binary is available:

arrow_cli --version

Usage

Execute one SQL statement and exit

arrow_cli --host localhost --port 8900 --user admin --password abc --command "select 1"

Output:

+----------+
| Int64(1) |
+----------+
| 1        |
+----------+

1 rows in set (tickets received in 0.008 sec, rows received in 0.012 sec)

Pipe SQL through standard input

echo "select 1" | arrow_cli --host localhost --port 8900 --user admin --password abc

Option: print the result schema

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Arrow CLI

  • How does Arrow CLI compare to other Data skills?

    Arrow CLI ranks #806 by stars among the 812 Data skills in this catalog. The most-starred ones next to it are Benchmark Methodology, Jupyter Notebook and Solana. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Arrow CLI against them. Open each page to compare what they document and how they install.