Pull provider
Claude Code plugin for querying cloud infrastructure and SaaS APIs using SQL with StackQL
npx -y skills add stackql/stackql-skills --skill pull-providerAssembled 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
Pull one or more StackQL providers from the registry. Supports version pinning with name@version syntax. Lists available providers when called with --list.
SKILL.md
1.6 KB, as published. Nobody here has run it
Arguments: $@
Step 1 - Check StackQL is installed
command -v stackql
If not found, delegate to /stackql-skills:install-stackql and then continue.
Step 2 - Handle --list flag
If --list is in $@, list all available providers:
stackql exec "REGISTRY LIST;" --output json
Present the results as a table showing provider name and version, then stop.
Step 3 - Show currently installed providers
stackql exec "SHOW PROVIDERS;" --output json
Note which providers are already installed so you can report additions vs updates.
Step 4 - Pull each provider
For each argument in $@:
name->REGISTRY PULL name;name@version->REGISTRY PULL name v<version>;
Run each pull command:
stackql exec "REGISTRY PULL <provider>;"
Or with a version:
stackql exec "REGISTRY PULL <provider> v<version>;"
Step 5 - Verify
After pulling, verify the providers are available:
stackql exec "SHOW PROVIDERS;" --output json
Step 6 - Report
For each provider pulled, report success or failure. If successful, suggest next steps:
Provider
<name>is ready. Next steps:
- Set up auth:
/stackql-skills:auth-setup <name>- Explore services:
/stackql-skills:explore <name>- Run a query:
/stackql-skills:query "SELECT ... FROM <name>.<service>.<resource> WHERE ..."