rasa-managing-slots

Configure slot types, mappings, and validation in Rasa CALM domain files.

5|3|Updated Mar 2, 2026
One-click install
npx skills add https://github.com/RasaHQ/rasa-agent-skills --skill rasa-managing-slots
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rasa-managing-slots
Source: https://github.com/RasaHQ/rasa-agent-skills/tree/main/skills/rasa-managing-slots
Command: npx skills add https://github.com/RasaHQ/rasa-agent-skills --skill rasa-managing-slots

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill streamlines the process of defining and managing slots in Rasa CALM assistant domain files, ensuring consistent and accurate data handling throughout conversations.

Core Features & Use Cases

  • Slot Definition: Create and edit slot definitions with appropriate types and mappings.
  • Type Selection: Choose the most restrictive slot type (text, bool, categorical, float, any, list) for better data integrity.
  • Mapping Configuration: Define how slots are filled (from_llm, controlled, from_entity, from_intent).
  • Validation: Implement format/range checks, flow-specific rejections, or external API validation.
  • Use Case: When building a banking assistant, use this skill to define slots for account_type, transfer_amount, and recipient_name, ensuring each is filled and validated correctly.

Quick Start

Use the rasa-managing-slots skill to define a new 'customer_email' slot of type 'text' in your domain file.

Frequently Asked Questions about rasa-managing-slots

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I define and manage slots in a Rasa domain file?

To define slots in a Rasa domain file, configure slot types, mappings, initial values, and validation strategies within the YAML structure to ensure accurate conversational data persistence and retrieval.

What are the available slot types and mappings in Rasa CALM?

Rasa CALM supports slot types like text, bool, categorical, float, any, and list, alongside mapping methods such as from_llm, controlled, from_entity, and from_intent for precise data integrity.

How do I validate slot filling in Rasa conversations?

You validate slot filling in Rasa by implementing format checks, range checks, flow-specific rejections, or external API validation to ensure data is accurate before persistence.

When should I use categorical vs text slot types in a Rasa assistant?

Use the most restrictive slot type possible in a Rasa assistant: categorical for fixed sets of values and text for open-ended strings, ensuring better data integrity and accurate retrieval.

Why is my Rasa slot not filling correctly from an entity?

Rasa slot filling from entities fails if the domain YAML mapping is misconfigured or the NLU extraction misses the entity, requiring validation checks to ensure correct data persistence.

Do I need to understand YAML to configure Rasa assistant slots?

Yes, configuring Rasa assistant slots requires a solid understanding of the domain YAML structure to correctly define slot types, mappings, and validation rules for accurate data handling.