blacktop

ipsw-skill

35
3
# Install this skill:
npx skills add blacktop/ipsw-skill

Or install specific skill: npx add-skill https://github.com/blacktop/ipsw-skill

# Description

A SKILL.md for ipsw

# README.md

ipsw-skill

An AI agent skill for Apple firmware and binary reverse engineering using the ipsw CLI tool.

Supports Claude Code, Codex CLI, and Gemini CLI.

What This Skill Provides

This skill empowers AI agents to assist with:

  • Downloading/extracting firmware - IPSWs, OTAs, kernelcaches, dyld_shared_cache
  • Userspace reverse engineering - DSC disassembly, symbol lookup, xrefs, string search
  • Dumping Objective-C headers from private frameworks
  • Kernel & KEXT analysis - extraction, syscalls, diffing between versions
  • Entitlements research - database queries, capability discovery
  • Mach-O binary analysis - signatures, entitlements, disassembly

Installation

Prerequisites

Install the ipsw CLI tool:

brew install blacktop/tap/ipsw

Claude Code

Install from marketplace:

claude plugin marketplace add blacktop/ipsw-skill
claude plugin install ipsw

Or install manually:

git clone https://github.com/blacktop/ipsw-skill /tmp/ipsw-skill

# User-wide (available in all projects)
mv /tmp/ipsw-skill/skill ~/.claude/skills/ipsw

# Project-specific (check into your repo)
mv /tmp/ipsw-skill/skill .claude/skills/ipsw

Codex CLI

Use the built-in installer:

$skill-installer https://github.com/blacktop/ipsw-skill --path skill

Or install manually:

git clone https://github.com/blacktop/ipsw-skill /tmp/ipsw-skill

# User-wide
mv /tmp/ipsw-skill/skill ~/.codex/skills/ipsw

# Project-specific
mv /tmp/ipsw-skill/skill .codex/skills/ipsw

Note: Run Codex with --enable skills if skills aren't loading automatically.

Gemini CLI

Install the extension directly:

gemini extensions install https://github.com/blacktop/ipsw-skill

Usage Examples

Once installed, the agent will automatically use this skill for Apple RE tasks:

"Download the latest IPSW for iPhone 15 Pro and extract the kernel"

"Disassemble the _malloc function from the system dyld_shared_cache"

"Dump the Objective-C headers for SpringBoardServices"

"Find all binaries with the platform-application entitlement in iOS 18"

"What address is -[NSObject init] at in the DSC?"

"Find all xrefs to this function address"

Contents

ipsw-skill/
β”œβ”€β”€ skill/                      # Claude Code / Codex skill
β”‚   β”œβ”€β”€ SKILL.md                # Main skill instructions
β”‚   └── references/
β”‚       β”œβ”€β”€ dyld.md             # DSC analysis (a2s, xref, dump, str)
β”‚       β”œβ”€β”€ download.md         # Firmware download & extraction
β”‚       β”œβ”€β”€ kernel.md           # Kernel & KEXT analysis
β”‚       β”œβ”€β”€ macho.md            # Mach-O binary analysis
β”‚       β”œβ”€β”€ class-dump.md       # ObjC header dumping
β”‚       └── entitlements.md     # Entitlements database & queries
β”œβ”€β”€ extension/                  # Gemini CLI extension resources
β”‚   └── references/             # (same reference files)
β”œβ”€β”€ GEMINI.md                   # Gemini extension instructions
β”œβ”€β”€ gemini-extension.json       # Gemini extension config
└── .claude-plugin/
    └── marketplace.json        # Claude marketplace config

Resources

License

MIT

# Supported AI Coding Agents

This skill is compatible with the SKILL.md standard and works with all major AI coding agents:

Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.