From fluent
Runs interactive typed speaking practice sessions for language learners, triggered by /speaking. Loads profile/DB via Python/Bash, asks target-language questions one at a time, evaluates communication/grammar, updates databases.
npx claudepluginhub m98/fluent --plugin fluentThis skill is limited to using the following tools:
Conversational practice through typed dialogue. Unlike `/writing`, prioritize **communication and naturalness** — grammar errors that don't block meaning are downplayed. Goal: build the learner's confidence to produce target-language output without over-analyzing.
Executes Speak SDK workflow for AI conversation practice with real-time pronunciation, grammar, and vocabulary feedback in language learning apps.
Runs main adaptive language-learning session mixing writing, speaking, vocabulary, and reading exercises based on learner level, weaknesses, and due reviews. Triggered only by /learn; routes to sub-skills or interleaves.
Tutors any language via conversation, vocab drills, grammar lessons, flashcards, and immersive practice. Activates for language learning, vocab practice, grammar study, translation, or conversation prep.
Share bugs, ideas, or general feedback.
Conversational practice through typed dialogue. Unlike /writing, prioritize communication and naturalness — grammar errors that don't block meaning are downplayed. Goal: build the learner's confidence to produce target-language output without over-analyzing.
Trigger this skill only when the learner types /speaking. The skill is gated with disable-model-invocation: true — 15-20 min interactive session with DB writes should never start from an ambiguous prompt.
Skip this skill below A1 mastery 2 — the learner needs a basic word bank and verb conjugations first (run /vocab a few times).
python3 .claude/hooks/read-db.py
Need: learner-profile (level, target language), mastery-db.skills_mastery.speaking.
# 🗣️ {target_language} Speaking Practice
Hallo {name}!
Today we're practicing **speaking** through typed conversation. I'll ask you questions or give scenarios, you respond naturally in {target_language} — just like a real conversation.
**Focus:** natural expression, fluency, pronunciation (typed)
**Level:** {CEFR}
**Duration:** 15-20 min
**Tips:**
- Think in {target_language}, not {native_language}
- Don't chase perfect grammar — focus on getting your message across
- Use complete sentences
- Be natural and conversational
**Ready? Let's chat!** 💬
A2 topics:
B1+: opinions, comparisons, hypotheticals, complaints, narratives.
## Question {N}: {Topic}
{Question in target language}
**Type your answer in {target_language}:**
Build the conversation naturally — after 3-4 Qs on one topic, transition: Interessant! Let's talk about something else....
Check in this order:
Feedback template (variant of feedback-formatter):
{✅ or 🟡} {one-line encouragement}
**What you said:**
"{their_answer}"
**Communication:** {Clear / Mostly clear / Unclear} ✅
**Grammar notes:** (secondary — don't over-focus)
- {major error → correction, only if communication-blocking}
**Natural alternative:**
You could also say: "{more_natural_phrasing}"
**Score: {X}/10**
- Communication: {Y}/5
- Grammar: {Z}/3
- Vocabulary: {W}/2
{encouragement}
---
For B1+ or when the learner is warmed up:
## 🎭 Role-Play
**Scenario:** {description in native language}
**Your role:** {what the learner plays}
**I'll be:** {what Claude plays}
Ready? I'll start...
---
{first line in target language}
**Your turn:**
## 🎉 Speaking Session Complete!
**Duration:** {X} min
**Questions Answered:** {N}
**Topics Covered:** {list}
### Communication Scores
**Overall:** {percent}%
- Clear messages: {count}
- Natural expression: {rating}/5
- Confidence: Growing! 💪
### Vocabulary Used Well
- {words}
### For Next Time
- Try using: {new phrase}
- Practice: {weak area}
**{target-language well done}!** 🌟
Use the db-updater skill:
command_used: "/speaking", skills_practiced: ["speaking"]skill_scores.speaking: {exercises: N, correct: count_of_clear_answers, time_minutes}errors[] — only communication-blocking ones (don't flood mistakes-db with minor speaking slips)focus_next_session[] — one topic + one patternSave exchange to /results/speaking-session-{NNN}.md.
Question 1: Introductions
Vertel me over jezelf. Waar kom je vandaan? (Tell me about yourself. Where are you from?)
Learner: "Ik ben Mohammad. Ik kom van Iran maar ik woon nu in Nederland."
✅ Clear and natural!
What you said: "Ik ben Mohammad. Ik kom van Iran maar ik woon nu in Nederland."
Communication: Clear ✅
Grammar notes:
- 🟢 "van Iran" → "uit Iran" (prepositions — origin uses
uit, notvan). Small slip; message still crystal clear.Natural alternative: "Ik kom uit Iran, maar ik woon al een paar jaar in Nederland."
Score: 9/10
- Communication: 5/5
- Grammar: 2/3
- Vocabulary: 2/2
Great start — you packed two ideas into one sentence, which is exactly what fluency looks like.
🎭 Role-Play
Scenario: You're at a café in Amsterdam. You want coffee and a vegetarian option for lunch. Your role: Customer I'll be: The server
"Goedemiddag! Wat wilt u drinken?"
Your turn:
/speaking.Add equivalents for other target languages as needed.