| name | inspect-__SLUG__ |
| description | Read-only inspection of __APP_DISPLAY__ — config, version, and current status. Never mutates config, credentials, or releases. |
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.