# Aymenfurter Octoclaw Gh Incidents

> GitHub Incidents Skill

- Skill: `tomevault-io/aymenfurter-octoclaw-gh-incidents` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/aymenfurter-octoclaw-gh-incidents`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/aymenfurter-octoclaw-gh-incidents/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/aymenfurter-octoclaw-gh-incidents

---


# GitHub Incidents Skill

Retrieve recent and active incidents from the GitHub Status API.

## Steps

### 1. Fetch Unresolved Incidents

```bash
curl -s https://www.githubstatus.com/api/v2/incidents/unresolved.json
```

For each unresolved incident, extract:
- `name` -- incident title
- `status` -- `investigating`, `identified`, `monitoring`, `resolved`
- `impact` -- `none`, `minor`, `major`, `critical`
- `incident_updates` -- array of status updates with `body` and `updated_at`
- `components` -- affected services

### 2. Fetch Recent Resolved Incidents

```bash
curl -s https://www.githubstatus.com/api/v2/incidents.json
```

This returns the 50 most recent incidents. Filter to the last 7 days for relevance.

For each recent incident, extract:
- `name`
- `impact`
- `created_at` and `resolved_at` (to calculate duration)
- `components` affected
- Final update message

### 3. Present Active Incidents (if any)

```markdown
## Active GitHub Incidents

### <incident name>
- **Status**: <investigating/identified/monitoring>
- **Impact**: <minor/major/critical>
- **Affected**: <component list>
- **Started**: <created_at>
- **Duration so far**: <calculated>

**Timeline**:
- <timestamp>: <update body>
- <timestamp>: <update body>
```

### 4. Present Recent Incident History

```markdown
## Recent Incidents (last 7 days)

| Date | Incident | Impact | Duration | Services |
|------|----------|--------|----------|----------|
| <date> | <name> | minor | 23 min | Actions |
| <date> | <name> | major | 2h 15m | API, Git | 
```

If no incidents in the last 7 days, report that GitHub has been stable.

### 5. Summary

Tell the user:
- Number of active incidents (if any) and their severity
- How many incidents in the past 7 days
- Which services have been most affected recently
- Overall reliability assessment for the week

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/aymenfurter) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-11 -->

