skills/cluttering-speech-disorder/SKILL.md
Expert in cluttering -- the lesser-known fluency disorder characterized by rapid/irregular speech rate, excessive disfluencies, and frequent ADHD comorbidity. Covers differential diagnosis from stuttering, assessment protocols, therapy approaches (rate control, self-monitoring, pragmatic awareness), technology-assisted intervention, and AI tools for people who clutter. Activate on 'cluttering', 'rapid speech disorder', 'speech rate too fast', 'speech disfluency not stuttering', 'disorganized speech', 'ADHD speech problems', 'cluttering vs stuttering', 'speech intelligibility', 'mazed speech', 'telescoping words'. NOT for stuttering-only treatment (overlap is common but they are distinct), hearing disorders, or voice disorders (pitch, resonance).
npx skillsauth add curiositech/windags-skills cluttering-speech-disorderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Expert in the fluency disorder characterized by rapid/irregular speech rate, excessive normal disfluencies, and frequent ADHD comorbidity. Covers assessment, differential diagnosis from stuttering, therapy approaches, and AI-assisted intervention tools.
RAPID UNCLEAR SPEECH COMPLAINT
├── Is speaker aware of the problem?
│ ├── HIGH awareness + physical struggle → STUTTERING pathway
│ └── LOW awareness + effortless but unclear → Continue cluttering assessment
├── What improves clarity?
│ ├── Slower rate improves significantly → CLUTTERING likely
│ ├── Easier words/sounds improve → STUTTERING likely
│ └── Neither helps much → Consider apraxia/dysarthria
└── Disfluency pattern analysis
├── Primarily blocks, part-word reps, prolongations → STUTTERING
├── Primarily revisions, interjections, phrase reps → CLUTTERING
└── Mixed pattern → CO-OCCURRING (treat cluttering first)
MILD CLUTTERING (3-5 disfluencies per 100 syllables)
├── Intelligibility >90% → Self-monitoring training focus
└── Rate variability present but manageable → Technology-assisted practice
MODERATE CLUTTERING (6-12 disfluencies per 100 syllables)
├── Intelligibility 70-90% → Rate control + articulation precision
├── ADHD present → Coordinate medical treatment first
└── Workplace/academic impact → Intensive therapy 2x/week minimum
SEVERE CLUTTERING (>12 disfluencies per 100 syllables)
├── Intelligibility <70% → Medical speech pathology referral
├── Narrative completely disorganized → Language formulation priority
└── Complete lack of awareness → Awareness building before rate work
ADHD SCREENING POSITIVE
├── Hyperactive/Impulsive type
│ ├── Speech bursts with normal pauses → Rate regulation focus
│ └── Constant rapid rate → Medical consultation for stimulants
├── Inattentive type
│ ├── Frequent mazing and topic drift → Language organization priority
│ └── Word retrieval delays creating disfluencies → Vocabulary access work
└── Combined type → Address executive function deficits first, then speech
ASSESSMENT CONTEXT
├── Clinical diagnostic → Full speech sample analysis with transcription
├── Therapy practice → Real-time rate feedback with visual display
├── Daily self-monitoring → Passive logging with weekly summaries
└── Professional situations → Discrete haptic feedback only
USER TECH COMFORT
├── High → Multi-feature app with data visualization
├── Moderate → Simple rate monitor with color coding
└── Low → Single-button recording with basic feedback
Symptoms: Applying easy onset, cancellations, or acceptance therapy to someone whose primary issue is rate and awareness Detection rule: If therapy focuses on reducing struggle but the person shows no struggle behaviors, you've missed cluttering Fix: Re-assess disfluency types. If excessive normal disfluencies predominate, switch to cluttering-focused rate control and self-monitoring
Symptoms: Giving rate feedback without first building the person's ability to perceive their own rate problems Detection rule: If the person consistently reports their speech was "fine" after clearly rapid/unclear samples, awareness is the primary target Fix: Start with audio playback exercises. Record → immediate playback → "What did you notice?" → build self-perception before rate modification
Symptoms: Therapy progress in sessions but no carryover to daily life, or tools that work briefly then are abandoned Detection rule: If structured practice works but natural conversation shows no improvement after 4+ weeks, consider unaddressed ADHD Fix: Screen for ADHD, coordinate with medical provider, redesign therapy for shorter sessions with immediate reinforcement
Symptoms: Excellent speech with pacing board/metronome but inability to self-regulate without external support Detection rule: If person cannot maintain target rate for 2+ minutes in conversation without tools after 8+ weeks of practice, fading has failed Fix: Systematic tool removal: external device → visual cues → covert hand tapping → internal rhythm → automatic regulation
Symptoms: Person avoiding practice, defensive about feedback, or reporting feeling "stupid" about their speech Detection rule: If engagement decreases week-over-week despite improving objective measures, the feedback system is punitive Fix: Reframe all feedback positively ("target rate achieved 67% of the time" vs "too fast 33%"), celebrate small gains, remove red error highlighting
Initial Assessment:
Decision Point Navigation:
Intervention Plan:
Technology Integration:
Outcome Markers: Awareness improved to 85% accuracy by week 6, conversational rate stabilized at 4.5 syl/sec by week 10, classroom participation increased significantly
Presentation:
Decision Process:
Targeted Approach:
AI Tool Application: Custom meeting practice app: records presentation run-throughs, provides rate analysis with timestamps, suggests optimal pause locations based on content structure, tracks improvement over multiple practice sessions.
Success Indicators: Meeting feedback improved within 3 weeks, promotion to senior role citing improved communication as key factor
Assessment Completeness:
Differential Diagnosis Confidence:
Treatment Readiness:
Do NOT use this skill for:
When to delegate:
Overlap areas requiring coordination:
data-ai
license: Apache-2.0 NOT for unrelated tasks outside this domain.
development
Use when designing caching strategies (cache-aside, write-through, write-behind), implementing distributed locks, building rate limiters, leaderboards, real-time streams (XADD/consumer groups), pub/sub, or tuning eviction policies. Triggers: thundering-herd on cache miss, dogpile on key expiry, Redlock vs SET-NX-PX choice, sliding-window rate limiter, hot-key on a single cluster slot, big-key blowup, MULTI/EXEC across slots, KEYS in production. NOT for Redis Cluster operations/admin (different domain), embedded KV (SQLite, leveldb), in-process LRU caches, or Memcached.
tools
Drawing the `'use client'` boundary correctly in React Server Components apps (Next.js App Router, RSC frameworks) — leaf-pushing, slot composition, serialization rules, and environment poisoning prevention. Grounded in react.dev and Next.js 16 docs.
development
Use when designing rate limiting for an API, choosing between token bucket / sliding window / leaky bucket / fixed window, implementing it in Redis, deciding edge (Cloudflare/Upstash) vs origin enforcement, sizing per-user vs per-IP vs per-endpoint quotas, returning the right 429 response with Retry-After, or fixing the boundary-burst bug in fixed-window limiters. Triggers: 429 too many requests, INCR + EXPIRE, ZADD + ZREMRANGEBYSCORE + ZCARD, X-RateLimit-Remaining header, Cloudflare WAF rate limiting rules, Upstash @upstash/ratelimit, leaky bucket shaping vs policing, distributed rate limiter consistency. NOT for DDoS mitigation specifically (different scale), CAPTCHA / bot management, full WAF design, or per-user quota billing.