Stats
Links
Categories
Skills for working with the Spice.ai runtime
npx claudepluginhub spiceai/skillsSkills for working with the Spice.ai runtime — data federation, acceleration, search, AI/LLM, and cloud management
A Claude Code plugin with skills for working with the Spice.ai OSS runtime — data federation, acceleration, search, AI/LLM, and cloud management.
| Skill | Description |
|---|---|
| spice-setup | Install Spice, initialize a project, and run the runtime |
| spicepod-config | Create and configure spicepod.yaml manifests |
| spice-connect-data | Connect to data sources and query across them with federated SQL |
| spice-data-connector | Configure individual data source connectors (PostgreSQL, S3, Snowflake, etc.) |
| spice-acceleration | Accelerate data locally for sub-second query performance |
| spice-accelerators | Choose and configure acceleration engines (Arrow, DuckDB, SQLite, etc.) |
| spice-search | Search with vector similarity, full-text keywords, or hybrid RRF |
| spice-ai | Add AI capabilities — tools, NSQL, memory, model routing, evals |
| spice-models | Configure LLM providers (OpenAI, Anthropic, Azure, local GGUF, etc.) |
| spice-text-to-sql | Generate SQL for Spice's DataFusion engine and build text-to-SQL workflows |
| spice-caching | Cache query and search results with TTL and stale-while-revalidate |
| spice-secrets | Manage credentials with secret stores |
| spice-cloud-management | Manage Spice.ai Cloud resources via the Management API |
| spice-terraform | Manage Spice.ai Cloud infrastructure as code with Terraform |
Add the marketplace and install the plugin:
/plugin marketplace add spiceai/skills
/plugin install skills@spiceai
Skills are then available as /skills:spice-setup, /skills:spice-ai, /skills:spicepod-config, etc.
To auto-suggest the plugin for all contributors, add this to your project's .claude/settings.json:
{
"extraKnownMarketplaces": {
"spiceai": {
"source": {
"source": "github",
"repo": "spiceai/skills"
}
}
},
"enabledPlugins": {
"skills@spiceai": true
}
}
MIT