gcs-calculation
Extract and calculate Glasgow Coma Scale (GCS) for ICU patients in MIMIC-IV. Use for neurological assessment, consciousness monitoring, or trauma severity scoring.
npx skills add majiayu000/claude-skill-registry --skill gcs-calculation --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Glasgow Coma Scale (GCS) Calculation The Glasgow Coma Scale assesses level of consciousness through three components: Eye opening, Verbal response, and Motor response. This concept extracts and calculates GCS with special handling for intubated patients. ## When to Use This Skill - Neurological status assessment - Trauma severity scoring - Sedation monitoring - Severity scores (SOFA CNS, APACHE, SAPS) - Consciousness trajectory analysis ## GCS Components and Scoring | Response | Score 1 | Score 2 | Score 3 | Score 4 | Score 5 | Score 6 | |----------|---------|---------|---------|---------|---------|---------| | **Eye** | None | To pain | To speech | Spontaneous | - | - | | **Verbal** | None | Incomprehensible | Inappropriate | Confused | Oriented | - | | **Motor** | None | Extension | Flexion | Withdraws | Localizes | Obeys | **Total GCS Range**: 3-15 (lower = worse) ## Pre-computed Table ```sql SELECT subject_id, stay_id, charttime, gcs, -- Total GCS score gcs_motor, -- Motor component (1-6) gcs_verbal, -- Verbal component (1-5) gcs_eyes, -- Eye component (1-4) gcs_unable -- 1 if unable to assess (intubated/sedated) FROM mimiciv_derived.gcs; ``` ## MetaVision Item IDs | Componen
- When to Use This Skill
- GCS Components and Scoring
- Pre-computed Table
- MetaVision Item IDs
- Critical Implementation Notes
- Example: Worst GCS Per ICU Stay
- Example: GCS Categories
- Example: First Day Minimum GCS
- Example: GCS Trajectory
- Example: Handle Intubated Patients
- References
What does the gcs-calculation skill do?
Extract and calculate Glasgow Coma Scale (GCS) for ICU patients in MIMIC-IV. Use for neurological assessment, consciousness monitoring, or trauma severity scoring.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill gcs-calculation --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.
