Auto-discovered marketplace from stackql/stackql-skills
npx claudepluginhub stackql/stackql-skillsStackQL-powered skills for Claude Code: query cloud infrastructure and SaaS APIs using SQL, explore provider schemas, create notebooks with pystackql magic commands, manage deployments with stackql-deploy, search docs, and recover session context.
A Claude Code plugin that adds StackQL-powered skills for querying cloud infrastructure, exploring provider schemas, managing deployments, and more.
Add the repository as a plugin source and install:
/plugin marketplace add stackql/stackql-skills
/plugin install stackql-skills@stackql-skills
This registers the GitHub repo as a marketplace and installs the plugin. Skills will be available as /stackql-skills:<skill-name> in all future sessions.
To pull the latest version, update the marketplace first and then the plugin:
/plugin marketplace update stackql-skills
/plugin update stackql-skills@stackql-skills
install-stackqlInstall or update the StackQL CLI. Detects the platform and uses the appropriate package manager or installer.
/stackql-skills:install-stackql
/stackql-skills:install-stackql --update
pull-providerPull one or more StackQL providers from the registry. Supports version pinning with name@version syntax. Use --list to see all available providers.
/stackql-skills:pull-provider google
/stackql-skills:pull-provider aws azure github
/stackql-skills:pull-provider [email protected]
/stackql-skills:pull-provider --list
queryRun StackQL queries against cloud and SaaS providers. Accepts raw SQL or natural language questions. Supports SELECT, INSERT, UPDATE, DELETE, and EXEC operations.
/stackql-skills:query SELECT id, status FROM google.compute.instances WHERE project = 'my-project' AND zone = 'us-central1-a'
/stackql-skills:query "what EC2 instances are running in us-east-1?"
/stackql-skills:query SHOW SERVICES IN aws
exploreNavigate the StackQL provider hierarchy interactively. Discover services, resources, methods, and fields for any provider.
/stackql-skills:explore google
/stackql-skills:explore google.compute
/stackql-skills:explore google.compute.instances
/stackql-skills:explore "how do I manage S3 buckets?"
stackql-docsSearch StackQL documentation, provider registry docs, and blog posts.
/stackql-skills:stackql-docs window functions
/stackql-skills:stackql-docs "how do I authenticate with Azure?"
/stackql-skills:stackql-docs stackql-deploy manifest format
read-memoriesSearch past Claude Code session logs to recover context from previous conversations - decisions made, patterns established, open TODOs.
/stackql-skills:read-memories stackql --here
auth-setupConfigure authentication for StackQL providers. Walks through credential setup for Google, AWS, Azure, GitHub, and other providers.
/stackql-skills:auth-setup google
/stackql-skills:auth-setup aws
/stackql-skills:auth-setup azure
notebookCreate a complete StackQL Jupyter notebook using the pystackql magic commands (%stackql / %%stackql). Generates setup cells, provider pulls, parameterized queries with $variable substitution, and optional visualizations.
/stackql-skills:notebook "GitHub repo analytics for stackql org"
/stackql-skills:notebook google.compute.instances
/stackql-skills:notebook "AWS S3 bucket inventory" --server
Requires pystackql (pip install pystackql).
notebook-cellAdd StackQL query cells to an existing pystackql notebook. Creates a markdown heading cell, a %%stackql query cell, and an optional visualization cell.
/stackql-skills:notebook-cell "show all running instances by zone"
/stackql-skills:notebook-cell "SELECT name, status FROM google.compute.instances WHERE project = '$project' AND zone = '$zone'" --viz bar
scaffold-stackGenerate a stackql-deploy stack with a stackql_manifest.yml and .iql resource files for provisioning cloud infrastructure.
/stackql-skills:scaffold-stack "VPC with two subnets in Google Cloud"
/stackql-skills:scaffold-stack google.compute.networks
setup-ciGenerate CI/CD pipeline configuration for stackql-deploy stacks. Creates workflows for build, test, and teardown.
/stackql-skills:setup-ci
/stackql-skills:setup-ci --provider github-actions --stack my-network
To test skills locally from a clone of this repo:
# 1. Clone the repo
git clone https://github.com/stackql/stackql-skills.git
cd stackql-skills
# 2. Launch Claude Code with the local plugin directory
claude --plugin-dir .
This loads the plugin from disk instead of the marketplace, so any edits to skills/*/SKILL.md take effect immediately - just start a new conversation (or re-run the slash command) to pick up changes.
You can test individual skills directly:
/stackql-skills:explore google
/stackql-skills:query SHOW PROVIDERS
/stackql-skills:stackql-docs authentication
Prerequisites: StackQL CLI must be installed. If it isn't, the skills will offer to install it via /stackql-skills:install-stackql.
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
No description available.
Curated collection of 154 specialized Claude Code subagents organized into 10 focused categories