Design structured, engaging chatbot conversations with robust intent handling, slot filling, disambiguation, error recovery, and graceful fallback strategies.
npx skills add https://github.com/seb1n/awesome-ai-agent-skills --skill chatbot-conversation-design
This skill provides a comprehensive framework for designing chatbot conversations that feel natural, handle ambiguity gracefully, and guide users toward successful outcomes. It covers the full design lifecycle — from persona definition and intent mapping through dialog state management, error recovery, and iterative testing. The focus is on building conversations that are resilient to unexpected inputs while maintaining a consistent, helpful tone.
order.place, account.reset_password) and meta-intents (e.g., help, cancel, speak_to_human). For each intent, list the required entities (slots) the bot must collect. Map the conversation flows as directed graphs showing happy paths, branching points, and exit conditions. Ensure every path terminates in either a resolution or a graceful handoff.This skill is for developers, UX writers, and product managers designing conversational interfaces. Provide the agent with the bot's purpose, target user base, and the list of tasks it should handle.
Prompt format:
~~~
Design a chatbot conversation for [use case].
Bot persona: [personality traits]
Supported tasks: [list of tasks]
Platform: [web widget / Slack / WhatsApp / voice assistant]
~~~
Design specification:
~~~json
{
"bot_name": "HelpBot",
"persona": "Friendly, efficient, empathetic",
"intent": "order.track",
"required_entities": [
{ "name": "order_id", "type": "string", "prompt": "What's your order number?" },
{ "name": "email", "type": "email", "prompt": "What email did you use for the order?" }
],
"optional_entities": [
{ "name": "issue_type", "type": "enum", "values": ["delayed", "damaged", "wrong_item", "other"] }
]
}
~~~
Conversation flow:
~~~
User: Where's my order?
HelpBot: I'd be happy to look that up for you! Could you share your order number?
It usually starts with "ORD-" and is in your confirmation email.
User: ORD-29481
HelpBot: Got it. And what email address did you place the order with?
User: [email protected]
HelpBot: Thanks, Marcus. I found your order — here's the latest status:
Order: ORD-29481
Status: In transit
Carrier: FedEx
Tracking: 7749 2381 0042
Estimated delivery: Thursday, March 6
Is there anything else about this order I can help with?
User: It was supposed to arrive yesterday.
HelpBot: I'm sorry about the delay. It looks like there was a weather-related
shipping disruption. Based on the latest tracking update, it should
arrive by end of day Thursday.
Would you like me to:
User: Option 1 please.
HelpBot: Done! You'll receive email updates at [email protected] whenever the
tracking status changes. Is there anything else I can help with?
~~~
Scenario: The bot receives an input it cannot classify.
~~~
User: asdfghjkl
HelpBot: I didn't quite catch that. Could you rephrase what you're looking for?
I can help with things like:
User: I want to do the thing with the stuff
HelpBot: I want to make sure I help you with the right thing. Which of these
is closest to what you need?
User: 4
HelpBot: No problem — let me connect you with a team member who can help.
You'll be transferred to a live agent shortly. Your reference
number is #SUP-8842 so you won't have to repeat anything.
[Escalating to human agent...]
~~~
State management notes: After two failed classification attempts (confidence < 0.3), the bot transitions from open-ended prompts to a constrained option list. After a third failure or explicit "something else" selection, it escalates with full context attached to the handoff payload.
Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.
Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
Build and distribute Expo development clients locally or via TestFlight
Use when you have a written implementation plan to execute in a separate session with review checkpoints
Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.
Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.
Take seb1n/chatbot-conversation-design from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.