Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ArieGoldkin/claude-forge --skill coaching-conversation-patternsgit clone --depth 1 https://github.com/ArieGoldkin/claude-forgeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/ariegoldkin/claude-forge/coaching-conversation-patterns)<a href="https://agentmods.dev/skills/ariegoldkin/claude-forge/coaching-conversation-patterns"><img src="https://agentmods.dev/badge/skills/ariegoldkin/claude-forge/coaching-conversation-patterns.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00041 | $0.01916 |
| Opus 5 | $0.00020 | $0.00958 |
| Sonnet 5 | $0.00008 | $0.00383 |
| Haiku 4.5 | $0.00004 | $0.00192 |
Grade A, and why
coaching-conversation-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Coaching & Conversational AI Patterns
Overview
Patterns for building AI-powered conversational experiences that are empathetic, safe, and grounded in user context. Applicable to coaching (health, fitness, education, career), therapy adjuncts, customer support, and any user-facing AI where safety and empathy matter.
Sensitive-domain note: If your application handles health data, therapy content, or vulnerable users, pair this skill with hipaa-compliance-checker for safeguards around PHI and crisis escalation.
Core Safety Principles (Non-Negotiable)
The Three Nevers
- Never provide advice outside the system's scope - No medical/legal/financial advice unless explicitly licensed
- Never dismiss safety concerns - Always escalate crisis indicators to a human
- Never promise outcomes - Avoid guarantees about results
Safety Detection Pattern
class SafetyCheck(BaseModel):
passed: bool
flags: list[str]
severity: Literal["low", "medium", "high", "critical"]
action: Literal["proceed", "rephrase", "escalate", "block"]
SAFETY_RULES = {
"medical_advice": {"severity": "high", "action": "block"},
"crisis_indicator": {"severity": "critical", "action": "escalate"},
"harmful_suggestion": {"severity": "high", "action": "block"},
"dismissive_language": {"severity": "medium", "action": "rephrase"}
}
For complete safety implementation: See references/safety-guardrails.md
Empathetic Response Framework
The EARS Pattern
- Empathize - Acknowledge the feeling
- Affirm - Validate their experience
- Reflect - Mirror understanding
- Support - Offer gentle next step
EARS_TEMPLATE = """
{empathize} # "I hear that you're feeling frustrated..."
{affirm} # "It makes sense to feel this way when..."
{reflect} # "It sounds like what matters most to you is..."
{support} # "One small step that might help is..."
"""
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- capabilities.json 4.1 KB
- checklists/coaching-implementation-checklist.md 8.5 KB
- examples/coaching-rag-example.py 11 KB runs code
- references/coaching-methodologies.md 13 KB
- references/conversation-state.md 17 KB
- references/empathetic-responses.md 12 KB
- references/safety-guardrails.md 14 KB
- templates/coaching-system-prompt.md 6.9 KB
- templates/conversation-state-schema.json 8.9 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 232 lines · 41 tokens per session scan A 8b0774933494
coaching-conversation-patterns is a skill published in the GitHub repository ArieGoldkin/claude-forge (6 stars, last pushed 1mo ago), licensed MIT. It adds 41 tokens to every session and 1,916 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
stride-analysis-patterns
Apply STRIDE methodology to systematically identify threats. Use when analyzing system security, conducting threat modeling sessions, or creating security documentation.
blind-spot-pass
Use before starting work in a domain you don't know well, to surface the "unknown unknowns" — the things you don't even know to ask about — and learn just enough to prompt and decide well. Implements the "blind spot pass" pattern from Anthropic's Fable "finding your unknowns" field guide. Triggers when you say "I'm…
prompts-chat
Use when searching, installing, or improving AI skills and prompts via prompts.chat or skills.sh. Triggers on skill search, prompt lookup, install skill, improve prompt, prompts.chat.
career-path-planner
Career goal mapping with skill gap analysis, actionable development plans, and milestone tracking. Use when planning career transitions, identifying skill gaps, setting professional development goals, or evaluating career options.
case-interview-practice
Interactive consulting case interview practice with structured frameworks, feedback mechanisms, and progressive difficulty. Use when preparing for management consulting interviews, case competitions, or business problem-solving exercises.
course-material-creator
Create custom educational materials including syllabi, lesson plans, assessments, reading lists, and learning objectives. Use when building course curricula, training programs, workshops, or educational content.