Agent skill · Design & Presentation

conversational-ai-flow

Эксперт conversational AI. Используй для chatbot flows, dialog design, NLU intents и conversational UX.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/conversational-ai-flow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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's inside
Steps it walks through
  1. Основные принципы дизайна
  2. Управление состоянием
  3. Паттерны архитектуры потоков
  4. Маршрутизация на основе намерений
  5. Паттерн заполнения слотов
  6. Обработка ошибок и восстановление
  7. Прогрессивное раскрытие
  8. Генерация ответов
  9. Контекстуальные шаблоны
  10. Мультимодальные ответы
  11. Аналитика и оптимизация
  12. Лучшие практики
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going