plugins marketplace
← All plugins

snap-o

v4.1.0

Inspect Android network traffic and adjust live UI tweaks with Snap-O.

Codex2 skills

by OpenAIApache-2.092updated 2 days ago

Source

git clone https://github.com/openai/snap-o

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

snap-o/
├── .codex-plugin/plugin.json
├── skills/snap-o-network-inspector/SKILL.md
└── skills/snap-o-tweaks/SKILL.md

Skills2

snap-o-network-inspectorskills/snap-o-network-inspector/SKILL.md

Fetch and inspect Android network captures for a selected device/socket using the Snap-O CLI. Use when you need raw CDP request/response data, headers, bodies, status, or websocket events.

snap-o-tweaksskills/snap-o-tweaks/SKILL.md

Inspect, stream, and explicitly adjust live Android UI tweak values or invoke app-owned actions through Snap-O. Use when a request mentions Snap-O Tweaks, tweak-enabled Android apps, runtime UI parameters, Compose tweak or action controls, tweak discovery, previously adjusted or currently inactive tweaks, applying all user-made tweak changes, typed values, defaults or resets, tweak batches, explicitly registered actions, the Tweaks REST/SSE API, or selecting between CLI, macOS inspector, in-app overlay, and custom tweak interfaces.

Manifests1

.codex-plugin/plugin.json
{
  "name": "snap-o",
  "version": "4.1.0",
  "description": "Inspect Android network traffic and adjust live UI tweaks with Snap-O.",
  "author": {
    "name": "OpenAI",
    "url": "https://openai.com"
  },
  "homepage": "https://openai.github.io/snap-o/",
  "repository": "https://github.com/openai/snap-o",
  "license": "Apache-2.0",
  "keywords": [
    "android",
    "network",
    "tweaks",
    "ui",
    "adb",
    "debugging"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Snap-O",
    "shortDescription": "Inspect Android network traffic and live UI tweaks",
    "longDescription": "Inspect live and captured Android network requests, or inspect and adjust live Android UI tweaks on macOS and Linux.",
    "developerName": "OpenAI",
    "category": "Productivity",
    "capabilities": [
      "Read",
      "Write"
    ],
    "websiteURL": "https://openai.github.io/snap-o/",
    "defaultPrompt": [
      "Inspect the latest Android network requests with Snap-O.",
      "Show failed requests from the attached Android device.",
      "Show the request and response bodies for an API call.",
      "Show the active UI tweaks in the attached Android app.",
      "Adjust a live Android UI tweak and reset it to its default."
    ]
  }
}