Install stackql
Claude Code plugin for querying cloud infrastructure and SaaS APIs using SQL with StackQL
npx -y skills add stackql/stackql-skills --skill install-stackqlAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 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.
What its author says it does
Copied from the file, not written here
Install or update the StackQL CLI. Detects the platform and uses the appropriate package manager or installer. Pass --update to check for and apply updates.
SKILL.md
1.9 KB, as published. Nobody here has run it
Arguments: $@
Step 1 - Check if StackQL is already installed
STACKQL=$(command -v stackql)
If found, get the current version:
"$STACKQL" --version
Step 2 - Determine mode
- If
--updateis in$@-> update mode - Otherwise -> install mode
Step 3 - Install or update
Install mode
If StackQL is already installed, report the version and stop.
If not installed, detect the platform and install:
macOS (brew available):
brew install stackql
macOS (no brew):
curl -L https://bit.ly/stackql-zip -O && unzip stackql-zip
Linux:
curl -L https://bit.ly/stackql-zip -O && unzip stackql-zip
sudo mv stackql /usr/local/bin/
Windows (choco available):
choco install stackql
Windows (no choco):
Tell the user to download the MSI installer from the StackQL releases or use winget if available.
After install, verify:
stackql --version
Update mode
Check the currently installed version:
CURRENT=$(stackql --version 2>&1)
Attempt the update using the same platform-appropriate method:
- macOS (
brewavailable):brew upgrade stackql - Linux: re-download and replace the binary
- Windows (
chocoavailable):choco upgrade stackql
After update, verify and report the new version:
stackql --version
Step 4 - Report
Report success or failure. If the install succeeded, suggest next steps:
StackQL is installed. To get started:
- Pull a provider:
/stackql-skills:pull-provider google- Set up auth:
/stackql-skills:auth-setup google- Explore resources:
/stackql-skills:explore google