Use this file to discover all available pages before exploring further.
Defines a set of instructions for the Omni Agent that users can trigger with a button click. Skills can be defined at the topic level (in topic files) or at the model level (in model files).When triggered, the AI follows those instructions — querying data, summarizing results, interacting with the user, or walking through a multi-step process — all without the user needing to write a prompt. Each defined skill will display as a button in the Omni Agent.See the Agent Skills guide for more information about this feature, including use cases and best practices.
The instructions sent to the AI when the skill is triggered. This can range from a single sentence to a detailed, multi-step prompt with specific output formats, decision logic, and references to topics.Write this as if you’re instructing an analyst: be specific about which data to query, how to structure the output, and what steps to follow.
Controls skill visibility based on user access grants. Skills with this parameter will only appear to users who hold the required access grants.Values must match access_grants defined in the model file. Supports conditional grant expressions using | for OR and & for AND conditions.Note: This controls visibility only. Actual data access at execution time is still enforced by access grants on the underlying topics, fields, and views the skill touches.
skills: top_customers_in_region: label: Top Customers description: > Find the top 20 customers by total lifetime revenue in this region. Include customer name, total revenue, order count, and date of most recent order. Sort by revenue descending.
Skill with required access grants
skills: finance_summary: label: Finance Summary description: > Generate a financial summary including revenue, costs, and margins. required_access_grants: [ finance ]
Skill with conditional access grants
skills: regional_analysis: label: Regional Analysis description: > Analyze performance metrics for the user's assigned region. required_access_grants: [ northwest_region|southwest_region ]