# inspect-__SLUG__

> Read-only inspection of __APP_DISPLAY__ — config, version, and current status. Never mutates config, credentials, or releases.

- Skill: `iannuttall/inspect-slug` (Agent Skill)
- Install (CLI): `npx skillmds@latest add iannuttall/inspect-slug`
- Raw SKILL.md: https://api.skillmd.com/api/skills/iannuttall/inspect-slug/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: iannuttall (https://skillmd.com/u/iannuttall)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/iannuttall/inspect-slug

---


# Inspect __APP_DISPLAY__

Use this to answer "what is the app's current state" without changing anything.

## Rules

- **Read-only.** Never edit `app.config.json`, `version.env`, credentials, or run a release.
- Never print secrets. Signing/notary material is not in this repo; do not read `~/.config/macos/secrets`.

## What to read

- Identity & distribution: `app.config.json`.
- Version: `version.env` (`MARKETING_VERSION`, `BUILD_NUMBER`).
- Headless status (no app bundle needed): `swift run __app__cli` — prints the app's current
  `AppStatus` as JSON. This is the fastest way to see what the menu would show.
- Released versions: `appcast.xml` (each `<item>` is a shipped build).
- Compliance: `macos audit __SLUG__`.

## Don't

- Don't launch the app to inspect it — use `__app__cli`.
- Don't run `swift test`/`make check` here; that's the qa skill.

