run-openorbit

run-openorbit is a skill for Claude Code, Codex from maneja81/OpenOrbit. It costs 48 tokens per session (3,698 once invoked), scanned C, original, MIT.

A workflow for building and testing OpenOrbit, an Electron desktop app. Electron is a technology for making desktop applications with web technologies; the workflow also drives the app through its user interface.

In plain words
What is it for?
Use it to launch OpenOrbit, reset its test data, interact with its interface, take screenshots, and confirm that changes work in the real app.
Why use it?
It lets you verify changes in the running application while keeping test data and saved settings in a separate temporary user-data directory.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/maneja81/openorbit/run-openorbit
Any agent
npx skills add maneja81/OpenOrbit --skill run-openorbit
Clone the repo
git clone --depth 1 https://github.com/maneja81/OpenOrbit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for run-openorbit

README.md
[![agentmods](https://agentmods.dev/badge/skills/maneja81/openorbit/run-openorbit.svg)](https://agentmods.dev/skills/maneja81/openorbit/run-openorbit)
Your own site
<a href="https://agentmods.dev/skills/maneja81/openorbit/run-openorbit"><img src="https://agentmods.dev/badge/skills/maneja81/openorbit/run-openorbit.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,698 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00048 $0.03698
Opus 5 $0.00024 $0.01849
Sonnet 5 $0.00010 $0.00740
Haiku 4.5 $0.00005 $0.00370

Measured 4d ago against content hash 7b9b9467b088, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

run-openorbit scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (driver.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf node_modules/electron/dist node_modules/electron/path.txt && node node_modules/electron/install.js
.claude/skills/run-openorbit/SKILL.md · 281 lines

How it starts

The opening of the file, as written. The whole thing — 281 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenOrbit is an Electron desktop app. Drive it through the Playwright REPL at .claude/skills/run-openorbit/driver.mjs. Launch takes ~5s, so the REPL beats relaunching per interaction.

Paths below are relative to the repo root. On macOS no xvfb is needed; on headless Linux prefix with xvfb-run -a.

Read this first — the sandbox is not optional

app.getPath("userData") resolves to ~/Library/Application Support/OpenOrbit from every checkout and every git worktree. There is no per-branch data directory. Launching the app to try something out therefore writes into the developer's real database: settings, chat history, agents, and encrypted API keys.

The driver always passes --user-data-dir and aborts the launch if app.getPath("userData") doesn't land inside the sandbox. Don't remove that check, and don't launch the app by hand from a worktree to "just have a look".

Sandbox defaults to /tmp/orbit-run/userdata — override with ORBIT_USER_DATA. Because it starts empty, the first launch is a genuine fresh install: onboarding, empty database. That is usually what you want for testing defaults; reset gets you back to it.

Build

npm install          # once per worktree — node_modules is not shared
npm run build        # main is dist-electron/main/index.js; the driver checks it exists

Check the Electron binary after installing — the install lies. npm ci / npm install in a fresh worktree regularly exits 0 having left no usable Electron. Two variants seen: the binary missing entirely (dist and path.txt both absent), and a half-extracted app (failed to create directory …/Electron.app/Contents/Resources/kn.lproj: File exists). The driver then can't launch, and vitest quietly loses electron/main/ai/agents.test.ts — 45 tests.

ls node_modules/electron/path.txt node_modules/electron/dist    # both must exist
# repair:
rm -rf node_modules/electron/dist node_modules/electron/path.txt && node node_modules/electron/install.js

Read the full file on GitHub · 281 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 281 lines · 48 tokens per session scan C 7b9b9467b088

Subscribe to this mod's changes

run-openorbit is a skill published in the GitHub repository maneja81/OpenOrbit (10 stars, last pushed 12d ago), licensed MIT. It adds 48 tokens to every session and 3,698 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

dogfood-as-user

How to dogfood and verify a Gini behavior change by driving a real chat turn as a real user would. Use when verifying that the agent reaches for a tool or path on its own — a behavioral steer, a new tool, an INSTRUCTIONS.md change, or a dispatch/provider/memory/skill change — or before claiming a steer "works".…

Open-Curiosity/gini-agent · 96 tokens

Abu-Browser

操作阿布应用内置的可见浏览器:打开网页、点击、填写、截图和提取数据。用户要求在阿布内预览或操作网页时使用;无需安装浏览器扩展。.

PM-Shawn/Abu-Cowork · 51 tokens

browser-qa

QA de navegador y regresión visual con Playwright: navegación, capturas (viewport/página/elemento), comparación contra baseline, snapshots de accesibilidad e inspección de red/consola/DOM, cross-browser.

contactandrewchl-wq/turtle-mcp · 49 tokens

mnemosyne-memory

Give your agent a sovereign, governed long-term memory backed by Mnemosyne OS. Use whenever the user has Mnemosyne OS installed and you need to recall past decisions, project history, or notes across sessions — or to persist something worth remembering. Teaches the vault governance rules every agent must honor before…

Mnemosyne-OS/Mnemosyne-Neural-OS · 72 tokens

connect-agent

Connect the codebase's AI agent to LangWatch agent simulations, so test suites run against the real agent process. Adds a small connect function beside the service startup that calls the agent already in the codebase, which opens an outbound connection and registers the agent with its environment and its run…

langwatch/langwatch · 102 tokens

writing-e2e-flows

Use when a feature or fix in future-agi needs an end-to-end Playwright flow under e2e/ — a new flow for user-visible behaviour, an update to a flow whose pinned endpoint, route, table or selector changed, or when a review flagged missing E2E coverage. Also use to check whether an existing flow already pins an…

future-agi/future-agi · 174 tokens