Back to Oh My Openagent

omo

packages/omo-codex/plugin/README.md

4.7.51.6 KB
Original Source

omo

omo is the single local Codex plugin namespace for Yeongyu's Codex components.

Internally each component remains isolated under components/:

  • components/comment-checker
  • components/rules
  • components/lsp
  • components/ultrawork
  • components/ulw-loop
  • components/telemetry

The root plugin manifest exports one Codex plugin named omo, with aggregate hooks, skills, and the LSP MCP server.

Telemetry

The bundled telemetry component emits the anonymous omo_codex_daily_active event at most once per UTC day per machine when the Codex SessionStart hook runs. It uses sha256("omo-codex:" + hostname) as the distinct ID, disables PostHog person profiles, and stores daily deduplication state in $XDG_DATA_HOME/omo-codex/posthog-activity.json or ~/.local/share/omo-codex/posthog-activity.json.

Captured properties are limited to product/runtime metadata, operating-system metadata, coarse machine shape, locale/timezone, shell/terminal hints, source, reason, and day_utc. It does not send prompt contents, chat transcripts, source files, repository contents, file paths, access tokens, API keys, raw hostnames, Git remotes, usernames, email addresses, or runtime error diagnostics.

Opt out before launching Codex:

bash
export OMO_CODEX_DISABLE_POSTHOG=1
export OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0

Global opt-out flags also disable this telemetry:

bash
export OMO_DISABLE_POSTHOG=1
export OMO_SEND_ANONYMOUS_TELEMETRY=0

Detailed implementation notes live in components/telemetry/README.md; the root product disclosure lives in docs/reference/codex-telemetry.md in the source repository.