docs(ast-grep-mcp): batch 58 (4 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:09 +09:00
parent 57ab870bb9
commit 7101c1ab86
4 changed files with 586 additions and 264 deletions
+577 -262
View File
File diff suppressed because it is too large Load Diff
+7
View File
@@ -17,6 +17,7 @@ We collect limited non-personal information needed to operate and improve the Se
When anonymous telemetry is enabled, the Application may collect a single anonymous usage event: When anonymous telemetry is enabled, the Application may collect a single anonymous usage event:
- `omo_daily_active`, sent at most once per UTC day per machine when the plugin loads or when the `run` CLI is invoked, used to estimate daily, weekly, and monthly active installations - `omo_daily_active`, sent at most once per UTC day per machine when the plugin loads or when the `run` CLI is invoked, used to estimate daily, weekly, and monthly active installations
- `omo_codex_daily_active`, sent at most once per UTC day per machine when the `omo-codex` adapter is installed (`reason: "install_completed"`) or when its Codex plugin runtime fires on a Codex `SessionStart` hook (`reason: "session_start"`), with the same opt-out posture as `omo_daily_active`
- Anonymous machine metadata bundled with that event, such as package version, plugin name, runtime, OS family, locale, and timezone - Anonymous machine metadata bundled with that event, such as package version, plugin name, runtime, OS family, locale, and timezone
- A pseudonymous installation identifier derived from a one-way hash of the local hostname - A pseudonymous installation identifier derived from a one-way hash of the local hostname
@@ -36,8 +37,14 @@ Telemetry can be disabled at any time by setting one of these environment variab
export OMO_SEND_ANONYMOUS_TELEMETRY=0 export OMO_SEND_ANONYMOUS_TELEMETRY=0
# or # or
export OMO_DISABLE_POSTHOG=1 export OMO_DISABLE_POSTHOG=1
# codex-only opt-out flags
export OMO_CODEX_DISABLE_POSTHOG=1
export OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0
``` ```
`OMO_CODEX_DISABLE_POSTHOG` and `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY` suppress only `omo-codex` telemetry.
Global flags (`OMO_DISABLE_POSTHOG`, `OMO_SEND_ANONYMOUS_TELEMETRY`) suppress telemetry for both oh-my-openagent/oh-my-opencode and omo-codex.
When telemetry is disabled, PostHog events are not sent. When telemetry is disabled, PostHog events are not sent.
## 3. Third-Party Services ## 3. Third-Party Services
+1 -1
View File
@@ -4,7 +4,7 @@
"type": "module", "type": "module",
"private": true, "private": true,
"bin": { "bin": {
"ast-grep-mcp": "dist/cli.js" "omo-ast-grep": "dist/cli.js"
}, },
"exports": { "exports": {
".": { ".": {