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:
tools
Building resilient distributed systems with circuit breakers, retries with full-jitter exponential backoff, retry budgets (per-request 3-attempt + per-client 10% ratio per Google SRE), deadline propagation, and the cascading-failure math (4 layers × 3 retries = 64x amplification). Grounded in Resilience4j, Microsoft Cloud Patterns, AWS Architecture Blog (Marc Brooker), and Google SRE Book.
testing
Designing HTTP cache headers that work correctly across browsers, CDNs, and shared proxies — `Cache-Control` directives per RFC 9111, `stale-while-revalidate` and `stale-if-error` per RFC 5861, the Vary header for varying responses, and surrogate keys for tag-based purging. Grounded in IETF RFCs and Cloudflare/Fastly docs.
development
Use when designing or fixing a Content Security Policy on a real site, choosing between nonce-based and hash-based CSP, adding strict-dynamic, debugging "Refused to execute inline script" errors, deploying CSP in report-only mode first, configuring report-to / report-uri, or auditing an existing policy for unsafe-inline / unsafe-eval / wildcards. Triggers: "CSP blocks legitimate inline script", strict-dynamic, nonce-{RANDOM}, sha256-{HASH}, object-src none, base-uri none, frame-ancestors, Trusted Types, X-Content-Security-Policy obsolete, report-only vs enforced. NOT for general HTTP security headers (HSTS, COOP/COEP), Trusted Types deep dive, CORS configuration, or building a WAF.
tools
Choosing and operating an HTTP API versioning strategy that doesn't break clients — Stripe's date-based pinned versions, the Deprecation/Sunset header pair (RFC 9745 + RFC 8594), URI vs header vs media-type approaches, and the version-transformer pattern. Grounded in Stripe's published architecture and IETF RFCs.