Agent skill

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill gcs-calculation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0
Declared author: m4-clinical-extraction
Path: skills/analysis/gcs-calculation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use This Skill
  2. GCS Components and Scoring
  3. Pre-computed Table
  4. MetaVision Item IDs
  5. Critical Implementation Notes
  6. Example: Worst GCS Per ICU Stay
  7. Example: GCS Categories
  8. Example: First Day Minimum GCS
  9. Example: GCS Trajectory
  10. Example: Handle Intubated Patients
  11. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going