conversational-ai-flow
Эксперт conversational AI. Используй для chatbot flows, dialog design, NLU intents и conversational UX.
npx skills add majiayu000/claude-skill-registry --skill conversational-ai-flow --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Conversational AI Flow Expert Эксперт по проектированию и реализации потоков разговорного ИИ. ## Основные принципы дизайна ### Управление состоянием ```python class ConversationState: def __init__(self): self.current_intent = None self.entities = {} self.conversation_history = [] self.flow_position = "start" self.confidence_threshold = 0.7 def update_context(self, user_input, intent, entities): self.conversation_history.append({ "user_input": user_input, "intent": intent, "entities": entities }) self.entities.update(entities) self.current_intent = intent ``` ## Паттерны архитектуры потоков ### Маршрутизация на основе намерений ```yaml flows: booking_flow: entry_conditions: - intent: "book_appointment" steps: - name: "collect_datetime" prompt: "When would you like to schedule?" validation: "datetime_validator" - name: "confirm_booking" prompt: "Confirm booking on {datetime}?" actions: ["create_booking", "send_confirmation"] fallback_flow: triggers: ["low_confidence", "unknown_intent"] strategy: "clarification_questions" ``` ### Паттерн заполнения слотов ```python def slot_filling_handler(state, required_slots): missing_slots = [s for s in required_slots if s not in state.entities]
- Основные принципы дизайна
- Управление состоянием
- Паттерны архитектуры потоков
- Маршрутизация на основе намерений
- Паттерн заполнения слотов
- Обработка ошибок и восстановление
- Прогрессивное раскрытие
- Генерация ответов
- Контекстуальные шаблоны
- Мультимодальные ответы
- Аналитика и оптимизация
- Лучшие практики
What does the conversational-ai-flow skill do?
Эксперт conversational AI. Используй для chatbot flows, dialog design, NLU intents и conversational UX.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill conversational-ai-flow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
