Skip to main content
Skills are Allium’s internal instructions, exposed to your agent on demand. Instead of guessing how to structure a Snowflake query against a multi-billion-row chain table, your agent fetches the rules Allium’s own Assistant follows.
Call get_skill(name="sql-optimization") before writing or running any SQL. Allium’s tables are large enough that a query missing its partition filter can scan a full chain — the skill covers the pruning rules that prevent it.

Available tools

Available skills

For “what chains does Allium support?” questions, fetch product-guide and cite its list rather than answering from the model’s memory. The list is dated and maintained.

Fetching a skill

Returns the full instructions as text. If the skill has reference files, they’re listed by title at the end of the body.

Reference files

Fetch one by passing its title exactly as listed:
This two-step shape keeps the main skill small. dashboard-design and explorer-visuals both use it: the skill body explains the approach, and each reference returns the exact JSON schema for one element or visual type.
1

Read the skill

get_skill(name="explorer-visuals") — general advice and the list of available types.
2

Read the type's reference

get_skill(name="explorer-visuals", reference_title="sankey") — the exact spec schema.
3

Build the spec

Construct spec against that schema and pass it to create_explorer_visual.

Discovering skills

Returns each accessible skill’s name and description. Individual skills can be gated, so this returns only what your organization can use — if a skill you expect is missing, contact [email protected].

Cache them locally

Skill content is stable per release. If your client supports persistent instructions, save a skill once instead of refetching it every session: Fetched skill bodies include this reminder, so an agent that reads one knows it can keep it.

SQL & queries

Where sql-optimization gets applied

Dashboards & sharing

Where dashboard-design and explorer-visuals get applied

Product comparison

The human-readable version of product-guide

Knowledge & discovery

Find the tables before you apply the rules