oh-my-opencode 5.0.0-beta.33 → 5.0.0-beta.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/skills/codex-qa/scripts/lsp-e2e.sh +1 -3
- package/.agents/skills/opencode-qa/scripts/lsp-e2e.sh +1 -1
- package/.agents/skills/tech-debt-audit/SKILL.md +6 -76
- package/README.ja.md +1 -1
- package/README.ko.md +1 -1
- package/README.md +1 -1
- package/README.ru.md +1 -1
- package/README.zh-cn.md +1 -1
- package/THIRD-PARTY-NOTICES.md +27 -99
- package/dist/cli/index.js +48350 -48559
- package/dist/cli-node/index.js +48480 -48689
- package/dist/config/index.d.ts +1 -1
- package/dist/config/schema/hooks.d.ts +0 -1
- package/dist/config/schema/oh-my-opencode-config.d.ts +0 -10
- package/dist/config/schema.d.ts +0 -1
- package/dist/create-hooks.d.ts +0 -1
- package/dist/hooks/index.d.ts +0 -1
- package/dist/index.js +11675 -13742
- package/dist/mcp/index.d.ts +0 -4
- package/dist/mcp/types.d.ts +0 -1
- package/dist/oh-my-opencode.schema.json +1 -45
- package/dist/plugin/hooks/create-core-hooks.d.ts +0 -1
- package/dist/plugin/hooks/create-session-hooks.d.ts +1 -2
- package/dist/shared/omo-process-sweep.d.ts +2 -4
- package/dist/skills/init-deep/SKILL.md +13 -13
- package/dist/skills/ulw-plan/SKILL.md +0 -1
- package/dist/tui.js +44809 -44910
- package/package.json +16 -18
- package/packages/omo-codex/THIRD-PARTY-NOTICES.md +0 -17
- package/packages/omo-codex/plugin/.codex-plugin/plugin.json +1 -3
- package/packages/omo-codex/plugin/.mcp.json +0 -6
- package/packages/omo-codex/plugin/AGENTS.md +5 -5
- package/packages/omo-codex/plugin/README.md +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/dist/cli.js +1 -15
- package/packages/omo-codex/plugin/components/bootstrap/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/bootstrap/package.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/comment-checker/package.json +1 -1
- package/packages/omo-codex/plugin/components/git-bash/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/git-bash/package.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/lazycodex-executor-verify/package.json +1 -1
- package/packages/omo-codex/plugin/components/lcx/skills/lcx-doctor/SKILL.md +1 -1
- package/packages/omo-codex/plugin/components/lsp/dist/.omo-runtime-manifest.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/lsp/package.json +1 -1
- package/packages/omo-codex/plugin/components/rules/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/rules/package.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/package.json +1 -1
- package/packages/omo-codex/plugin/components/teammode/test/thread-title-hook.test.ts +1 -1
- package/packages/omo-codex/plugin/components/telemetry/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/telemetry/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/dist/cli.js +2 -2
- package/packages/omo-codex/plugin/components/ultrawork/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/skills/ulw-plan/SKILL.md +0 -1
- package/packages/omo-codex/plugin/components/ultrawork/src/directive-content.ts +1 -1
- package/packages/omo-codex/plugin/components/ulw-execute-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/ulw-execute-continuation/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/README.md +11 -1
- package/packages/omo-codex/plugin/components/ulw-loop/directive.md +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-codex-validation.d.ts +12 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-codex-validation.js +45 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.d.ts +1 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-reconciliation.js +5 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint-template.js +10 -3
- package/packages/omo-codex/plugin/components/ulw-loop/dist/checkpoint.js +35 -38
- package/packages/omo-codex/plugin/components/ulw-loop/dist/cli.js +278 -193
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.d.ts +5 -0
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-aggregate.js +7 -51
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-artifacts.js +39 -22
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.d.ts +13 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-fields.js +64 -8
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate-verdicts.js +5 -1
- package/packages/omo-codex/plugin/components/ulw-loop/dist/quality-gate.js +37 -18
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +4 -4
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/skills/ulw-loop/references/full-workflow.md +2 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-codex-validation.ts +81 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-reconciliation.ts +6 -0
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint-template.ts +10 -3
- package/packages/omo-codex/plugin/components/ulw-loop/src/checkpoint.ts +32 -63
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-aggregate.ts +7 -53
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-artifacts.ts +50 -31
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-fields.ts +67 -14
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate-verdicts.ts +6 -1
- package/packages/omo-codex/plugin/components/ulw-loop/src/quality-gate.ts +36 -17
- package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-final.test.ts +26 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/checkpoint-template.test.ts +47 -2
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-aggregate-basics.test.ts +258 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-cap-and-dedupe.test.ts +22 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-poisoning-cascades.test.ts +97 -0
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-single-report.test.ts +241 -0
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-git-bash-mcp-reminder.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-lsp-diagnostics-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-compact-resetting-project-rule-cache.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-comments.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-lsp-diagnostics.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-thread-title-hygiene.json +1 -1
- package/packages/omo-codex/plugin/hooks/post-tool-use-matching-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-enforcing-unlimited-goal-budget.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-guarding-ulw-loop-spawns.json +1 -1
- package/packages/omo-codex/plugin/hooks/pre-tool-use-recommending-git-bash-mcp.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-auto-update.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-checking-bootstrap-provisioning.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/hooks/session-start-recording-session-telemetry.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-execute-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/stop-checking-ulw-loop-resume.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-checking-ulw-execute-continuation.json +1 -1
- package/packages/omo-codex/plugin/hooks/subagent-stop-verifying-lazycodex-executor-evidence.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ultrawork-trigger.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-checking-ulw-loop-steering.json +1 -1
- package/packages/omo-codex/plugin/hooks/user-prompt-submit-loading-project-rules.json +1 -1
- package/packages/omo-codex/plugin/package-lock.json +12 -146
- package/packages/omo-codex/plugin/package.json +1 -2
- package/packages/omo-codex/plugin/scripts/AGENTS.md +0 -1
- package/packages/omo-codex/plugin/scripts/auto-update-plan.mjs +0 -1
- package/packages/omo-codex/plugin/scripts/auto-update.mjs +0 -9
- package/packages/omo-codex/plugin/scripts/canonical-ultrawork-directive.mjs +17 -0
- package/packages/omo-codex/plugin/scripts/hook-status-message.mjs +0 -1
- package/packages/omo-codex/plugin/scripts/sync-skills.mjs +2 -8
- package/packages/omo-codex/plugin/shared/src/config-loader.ts +2 -102
- package/packages/omo-codex/plugin/shared/src/config-migration.ts +0 -1
- package/packages/omo-codex/plugin/shared/test/config-loader.test.ts +41 -130
- package/packages/omo-codex/plugin/skills/init-deep/SKILL.md +13 -13
- package/packages/omo-codex/plugin/skills/lcx-doctor/SKILL.md +1 -1
- package/packages/omo-codex/plugin/skills/ultrawork/SKILL.md +2 -2
- package/packages/omo-codex/plugin/skills/ulw-loop/references/full-workflow.md +2 -1
- package/packages/omo-codex/plugin/skills/ulw-plan/SKILL.md +0 -1
- package/packages/omo-codex/plugin/test/AGENTS.md +2 -2
- package/packages/omo-codex/plugin/test/aggregate-hooks.test.mjs +2 -21
- package/packages/omo-codex/plugin/test/aggregate-manifest.test.mjs +1 -2
- package/packages/omo-codex/plugin/test/aggregate-mcp.test.mjs +2 -7
- package/packages/omo-codex/plugin/test/auto-update.test.mjs +0 -25
- package/packages/omo-codex/plugin/test/bootstrap-setup.test.mjs +0 -31
- package/packages/omo-codex/plugin/test/canonical-ultrawork-directive.test.mjs +53 -0
- package/packages/omo-codex/plugin/test/component-bundled-cli.test.mjs +0 -50
- package/packages/omo-codex/plugin/test/hook-status-message.test.mjs +0 -1
- package/packages/omo-codex/plugin/test/mcp-research-servers.test.mjs +1 -3
- package/packages/omo-codex/scripts/install-cache-copy.test.mjs +27 -1
- package/packages/omo-codex/scripts/install-config-git-bash.test.mjs +0 -23
- package/packages/omo-codex/scripts/install-dist/install-local.mjs +238 -431
- package/packages/omo-codex/scripts/install-git-bash-mcp-env.test.mjs +1 -25
- package/packages/omo-codex/scripts/install-mcp-runtime.test.mjs +0 -36
- package/packages/shared-skills/skills/init-deep/SKILL.md +13 -13
- package/packages/shared-skills/skills/ulw-plan/SKILL.md +0 -1
- package/dist/config/schema/codegraph.d.ts +0 -12
- package/dist/hooks/codegraph-bootstrap/command-runner.d.ts +0 -17
- package/dist/hooks/codegraph-bootstrap/hook.d.ts +0 -35
- package/dist/hooks/codegraph-bootstrap/index.d.ts +0 -1
- package/dist/hooks/codegraph-bootstrap/project-root.d.ts +0 -1
- package/dist/hooks/codegraph-bootstrap/status.d.ts +0 -11
- package/dist/mcp/codegraph.d.ts +0 -16
- package/packages/omo-codex/plugin/components/codegraph/AGENTS.md +0 -58
- package/packages/omo-codex/plugin/components/codegraph/LICENSE +0 -21
- package/packages/omo-codex/plugin/components/codegraph/NODE-RUNTIME-LICENSES.md +0 -2951
- package/packages/omo-codex/plugin/components/codegraph/NOTICE +0 -16
- package/packages/omo-codex/plugin/components/codegraph/dist/cli.js +0 -12326
- package/packages/omo-codex/plugin/components/codegraph/dist/serve.js +0 -9908
- package/packages/omo-codex/plugin/components/codegraph/package.json +0 -33
- package/packages/omo-codex/plugin/components/codegraph/src/cache-gc.ts +0 -29
- package/packages/omo-codex/plugin/components/codegraph/src/cli.ts +0 -79
- package/packages/omo-codex/plugin/components/codegraph/src/hook-input.ts +0 -33
- package/packages/omo-codex/plugin/components/codegraph/src/hook-sweep.ts +0 -25
- package/packages/omo-codex/plugin/components/codegraph/src/hook-types.ts +0 -131
- package/packages/omo-codex/plugin/components/codegraph/src/hook.ts +0 -258
- package/packages/omo-codex/plugin/components/codegraph/src/mcp-bridge.ts +0 -310
- package/packages/omo-codex/plugin/components/codegraph/src/mcp-unavailable.ts +0 -92
- package/packages/omo-codex/plugin/components/codegraph/src/post-tool-use-hook.ts +0 -34
- package/packages/omo-codex/plugin/components/codegraph/src/serve-invocation.ts +0 -29
- package/packages/omo-codex/plugin/components/codegraph/src/serve.ts +0 -263
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-command.ts +0 -106
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-cooldown.ts +0 -145
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-hook-runtime.ts +0 -22
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-lock.ts +0 -139
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-outcome.ts +0 -15
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-paths.ts +0 -32
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-project.ts +0 -109
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-worker-result.ts +0 -148
- package/packages/omo-codex/plugin/components/codegraph/src/session-start-worker.ts +0 -175
- package/packages/omo-codex/plugin/components/codegraph/src/sweep-cli.ts +0 -81
- package/packages/omo-codex/plugin/components/codegraph/test/cache-gc.test.ts +0 -34
- package/packages/omo-codex/plugin/components/codegraph/test/hook-exclusion.test.ts +0 -112
- package/packages/omo-codex/plugin/components/codegraph/test/hook-registration.test.ts +0 -26
- package/packages/omo-codex/plugin/components/codegraph/test/hook-session-start-guard.test.ts +0 -160
- package/packages/omo-codex/plugin/components/codegraph/test/hook-store-upgrade.test.ts +0 -50
- package/packages/omo-codex/plugin/components/codegraph/test/hook-sweep.test.ts +0 -29
- package/packages/omo-codex/plugin/components/codegraph/test/hook.test.ts +0 -320
- package/packages/omo-codex/plugin/components/codegraph/test/mcp-bridge-fixtures.ts +0 -172
- package/packages/omo-codex/plugin/components/codegraph/test/package-runtime.test.ts +0 -91
- package/packages/omo-codex/plugin/components/codegraph/test/provisioned-node-guard.test.ts +0 -100
- package/packages/omo-codex/plugin/components/codegraph/test/serve-built-wrapper.test.ts +0 -76
- package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge-lifecycle.test.ts +0 -133
- package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-bridge.test.ts +0 -245
- package/packages/omo-codex/plugin/components/codegraph/test/serve-mcp-facade.test.ts +0 -69
- package/packages/omo-codex/plugin/components/codegraph/test/serve-node-support.test.ts +0 -43
- package/packages/omo-codex/plugin/components/codegraph/test/serve-provision.test.ts +0 -147
- package/packages/omo-codex/plugin/components/codegraph/test/serve-unavailable-idle.test.ts +0 -47
- package/packages/omo-codex/plugin/components/codegraph/test/serve-unavailable.test.ts +0 -175
- package/packages/omo-codex/plugin/components/codegraph/test/serve.test.ts +0 -385
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-node-support.test.ts +0 -206
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-project.test.ts +0 -58
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-state.test.ts +0 -104
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-trust-boundary.test.ts +0 -65
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-availability.test.ts +0 -106
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-cooldown.test.ts +0 -116
- package/packages/omo-codex/plugin/components/codegraph/test/session-start-worker-flow.test.ts +0 -258
- package/packages/omo-codex/plugin/components/codegraph/test/sweep-cli.test.ts +0 -56
- package/packages/omo-codex/plugin/components/codegraph/tsconfig.build.json +0 -13
- package/packages/omo-codex/plugin/components/codegraph/tsconfig.json +0 -25
- package/packages/omo-codex/plugin/components/ulw-loop/test/quality-gate-aggregate.test.ts +0 -101
- package/packages/omo-codex/plugin/hooks/post-tool-use-checking-codegraph-init-guidance.json +0 -18
- package/packages/omo-codex/plugin/hooks/session-start-checking-codegraph-bootstrap.json +0 -17
- package/packages/omo-codex/plugin/scripts/migrate-omo-sot/editor.mjs +0 -125
- package/packages/omo-codex/plugin/scripts/migrate-omo-sot/jsonc.mjs +0 -43
- package/packages/omo-codex/plugin/scripts/migrate-omo-sot/scaffold.mjs +0 -29
- package/packages/omo-codex/plugin/scripts/migrate-omo-sot.mjs +0 -121
- package/packages/omo-codex/plugin/test/component-codegraph-mcp-smoke.test.mjs +0 -76
- package/packages/omo-codex/plugin/test/migrate-omo-sot.test.mjs +0 -179
|
@@ -1752,7 +1752,7 @@ rewrite_codex_mcp_config() {
|
|
|
1752
1752
|
import { readFileSync, writeFileSync } from "node:fs";
|
|
1753
1753
|
const path = process.argv[2];
|
|
1754
1754
|
let text = readFileSync(path, "utf8");
|
|
1755
|
-
for (const name of ["context7"
|
|
1755
|
+
for (const name of ["context7"]) {
|
|
1756
1756
|
const header = `[plugins."omo@sisyphuslabs".mcp_servers.${name}]`;
|
|
1757
1757
|
const start = text.indexOf(header);
|
|
1758
1758
|
if (start < 0) throw new Error(`missing ${header}`);
|
|
@@ -1790,7 +1790,6 @@ const path = process.argv[2];
|
|
|
1790
1790
|
const disabled = new Set([
|
|
1791
1791
|
"session-start-checking-auto-update.json",
|
|
1792
1792
|
"session-start-checking-bootstrap-provisioning.json",
|
|
1793
|
-
"session-start-checking-codegraph-bootstrap.json",
|
|
1794
1793
|
]);
|
|
1795
1794
|
const manifest = JSON.parse(readFileSync(path, "utf8"));
|
|
1796
1795
|
if (!Array.isArray(manifest.hooks)) throw new Error("installed plugin hook list is missing");
|
|
@@ -2635,7 +2634,6 @@ const result = {
|
|
|
2635
2634
|
disabledSideEffectHooks: [
|
|
2636
2635
|
"session-start-checking-auto-update.json",
|
|
2637
2636
|
"session-start-checking-bootstrap-provisioning.json",
|
|
2638
|
-
"session-start-checking-codegraph-bootstrap.json",
|
|
2639
2637
|
],
|
|
2640
2638
|
hookStarted: app.hookStarted === true,
|
|
2641
2639
|
hookCompleted: app.hookCompleted === true,
|
|
@@ -1485,7 +1485,7 @@ const opencode = {
|
|
|
1485
1485
|
permission: permissions,
|
|
1486
1486
|
};
|
|
1487
1487
|
const omo = {
|
|
1488
|
-
disabled_mcps: ["websearch", "context7", "grep_app"
|
|
1488
|
+
disabled_mcps: ["websearch", "context7", "grep_app"],
|
|
1489
1489
|
disabled_hooks: ["auto-update-checker"],
|
|
1490
1490
|
};
|
|
1491
1491
|
writeFileSync(opencodePath, `${JSON.stringify(opencode, null, 2)}\n`);
|
|
@@ -1,24 +1,11 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: tech-debt-audit
|
|
3
|
-
description: "Thorough, file-cited technical debt audit across 9 dimensions using AST-grep (tree-sitter), grep, language-native tooling
|
|
3
|
+
description: "Thorough, file-cited technical debt audit across 9 dimensions using AST-grep (tree-sitter), grep, LSP, and language-native tooling. Produces TECH_DEBT_AUDIT.md with severity, effort estimates, and prioritized fixes. Use when asked for codebase health check, tech debt audit, architecture review, code quality assessment, or cleanup planning. Triggers: 'tech debt', 'technical debt', 'debt audit', 'code health', 'technical debt audit', 'codebase health check', 'find tech debt', 'debt analysis', 'audit code quality'."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Tech Debt Audit Protocol
|
|
7
7
|
|
|
8
|
-
Model-agnostic technical debt audit for oh-my-openagent (OMO). Uses OMO's built-in tools (`grep`, `glob`, `bash` with `sg`, `read`, `lsp_diagnostics`, `task`)
|
|
9
|
-
|
|
10
|
-
## CodeGraph Enhancement (Optional)
|
|
11
|
-
|
|
12
|
-
If you have [CodeGraph](https://github.com/colbymchenry/codegraph) installed (check with `codegraph status`), its MCP tools (`codegraph_search`, `codegraph_callers`, `codegraph_callees`, `codegraph_impact`, `codegraph_explore`, etc.) can supersede or augment the standard tool searches in the dimensions marked below. CodeGraph gives you:
|
|
13
|
-
- **Symbol search** — instant by-name lookup via FTS5
|
|
14
|
-
- **Call graph analysis** — callers/callees for any function
|
|
15
|
-
- **Impact analysis** — blast radius before changing any symbol
|
|
16
|
-
- **Smart context building** — entry points, related symbols, and snippets in one call
|
|
17
|
-
- **Framework-aware routes** — URL patterns linked to their handlers
|
|
18
|
-
|
|
19
|
-
To use CodeGraph, ensure the `codegraph` MCP server is configured in your project's `.mcp.json` or global MCP config. The skill will auto-detect CodeGraph by checking if `codegraph` MCP tools are available. Sub-agents spawned via `task()` cannot use CodeGraph — they use the standard tool fallback.
|
|
20
|
-
|
|
21
|
-
---
|
|
8
|
+
Model-agnostic technical debt audit for oh-my-openagent (OMO). Uses OMO's built-in tools (`grep`, `glob`, `bash` with `sg`, `read`, `lsp_diagnostics`, `task`). Produces a grounded, citable `TECH_DEBT_AUDIT.md` artifact.
|
|
22
9
|
|
|
23
10
|
## Output
|
|
24
11
|
|
|
@@ -42,19 +29,6 @@ Write results to `TECH_DEBT_AUDIT.md` in the repo root with:
|
|
|
42
29
|
5. Cross-reference high-churn + large = debt hot zones
|
|
43
30
|
6. Write the mental model paragraph in your own working context
|
|
44
31
|
|
|
45
|
-
### CodeGraph Enhancement (if available)
|
|
46
|
-
Instead of guessing module boundaries, query the code graph:
|
|
47
|
-
|
|
48
|
-
```
|
|
49
|
-
codegraph_explore(query="architecture overview and main modules")
|
|
50
|
-
```
|
|
51
|
-
This returns symbol relationships and source grouped by file. Use the structure as your architectural mental model instead of hand-inferring it from directory names.
|
|
52
|
-
|
|
53
|
-
```
|
|
54
|
-
codegraph_explore(query="main entry points and execution flow")
|
|
55
|
-
```
|
|
56
|
-
This surfaces entry points and call chains. Use these to understand how the code actually flows vs how the directory layout suggests it flows.
|
|
57
|
-
|
|
58
32
|
## Phase 1: Audit Across 9 Dimensions
|
|
59
33
|
|
|
60
34
|
Use OMO tools for each dimension. Run parallel tool calls within each dimension. Every finding MUST cite `file:line:col`.
|
|
@@ -68,33 +42,12 @@ Use OMO tools for each dimension. Run parallel tool calls within each dimension.
|
|
|
68
42
|
- `grep("async|await")` on sync-looking files — misplaced async boundaries
|
|
69
43
|
- `bash("wc -l <file>")` on each large file found in Phase 0
|
|
70
44
|
|
|
71
|
-
#### CodeGraph Enhancement (if available)
|
|
72
|
-
|
|
73
|
-
**Dead code detection:**
|
|
74
|
-
```
|
|
75
|
-
codegraph_callers(symbol="<suspected-dead-function>")
|
|
76
|
-
codegraph_callers(symbol="<suspected-dead-class>")
|
|
77
|
-
```
|
|
78
|
-
Run `codegraph_callers` on suspected dead exports found via grep/glob. If the result shows zero callers (excluding test files), it's dead code.
|
|
79
|
-
|
|
80
|
-
**Circular dependency detection:**
|
|
81
|
-
```
|
|
82
|
-
codegraph_impact(target="<module-or-file>", direction="upstream")
|
|
83
|
-
```
|
|
84
|
-
Use `codegraph_impact` on key modules to trace their dependents. If A depends on B and B depends on A, that's a cycle.
|
|
85
|
-
|
|
86
|
-
**Architecture boundaries:**
|
|
87
|
-
```
|
|
88
|
-
codegraph_explore(query="module dependencies and architecture boundaries")
|
|
89
|
-
```
|
|
90
|
-
Use `codegraph_explore` to survey actual module structure.
|
|
91
|
-
|
|
92
45
|
#### What to flag
|
|
93
46
|
- Files > 500 LOC (god files)
|
|
94
47
|
- Functions > 80 LOC or > 4 nesting levels
|
|
95
48
|
- Classes with > 15 methods or > 400 LOC
|
|
96
49
|
- Import cycles (A → B → A)
|
|
97
|
-
- Dead exports: function/class defined but never imported elsewhere (
|
|
50
|
+
- Dead exports: function/class defined but never imported elsewhere (confirm with `lsp_find_references`)
|
|
98
51
|
- Commented-out code blocks (>3 consecutive consecutive lines)
|
|
99
52
|
|
|
100
53
|
### 2. Consistency Rot
|
|
@@ -148,14 +101,6 @@ Use `codegraph_explore` to survey actual module structure.
|
|
|
148
101
|
- `grep(".env|process.env|Bun.env")` — env var usage
|
|
149
102
|
- `grep("API_KEY|SECRET|PASSWORD|TOKEN")` in non-config files — hardcoded config
|
|
150
103
|
|
|
151
|
-
#### CodeGraph Enhancement (if available)
|
|
152
|
-
|
|
153
|
-
**Blast radius of core dependencies:**
|
|
154
|
-
```
|
|
155
|
-
codegraph_impact(target="<core-utility-function>", direction="upstream")
|
|
156
|
-
```
|
|
157
|
-
Run this on a few key internal modules (logger, config loader, HTTP client) to see how widely they're used. A widely-depended-on module with poor error handling or type safety is a high-priority refactor target because changes to it ripple everywhere.
|
|
158
|
-
|
|
159
104
|
#### What to flag
|
|
160
105
|
- Outdated major-version deps
|
|
161
106
|
- Dependencies that do the same thing (duplicate libraries)
|
|
@@ -184,21 +129,6 @@ Run this on a few key internal modules (logger, config loader, HTTP client) to s
|
|
|
184
129
|
- `grep("console.error|logger\\.error|log\\.error")` — actual error logging
|
|
185
130
|
- `bash("sg -p \"throw new $ERR($$$)\" -l ts .")` — error types used
|
|
186
131
|
|
|
187
|
-
#### CodeGraph Enhancement (if available)
|
|
188
|
-
|
|
189
|
-
**Trace error propagation through call chains:**
|
|
190
|
-
```
|
|
191
|
-
codegraph_callers(symbol="<key-error-handler-or-middleware>")
|
|
192
|
-
codegraph_explore(query="how errors propagate through <key-error-handler>")
|
|
193
|
-
```
|
|
194
|
-
Use `codegraph_callers` to find who calls your error handlers. If errors are caught and swallowed at multiple levels, that's a finding.
|
|
195
|
-
|
|
196
|
-
**Impact of changing error types:**
|
|
197
|
-
```
|
|
198
|
-
codegraph_impact(target="<error-class-or-interface>", direction="upstream")
|
|
199
|
-
```
|
|
200
|
-
Check the blast radius of custom error classes. If changing an error type would break 20+ consumers, the error contract is too tight.
|
|
201
|
-
|
|
202
132
|
#### What to flag
|
|
203
133
|
- Empty catch blocks (worst offense)
|
|
204
134
|
- Generic `catch (e) { console.error(e) }` without recovery
|
|
@@ -237,18 +167,18 @@ Check the blast radius of custom error classes. If changing an error type would
|
|
|
237
167
|
|
|
238
168
|
## Phase 2: Deeper Dives (Parallel Sub-Agents)
|
|
239
169
|
|
|
240
|
-
For large codebases (>50k LOC), delegate heavy dimensions to parallel sub-agents.
|
|
170
|
+
For large codebases (>50k LOC), delegate heavy dimensions to parallel sub-agents. Each sub-agent runs the standard tool passes for its dimensions:
|
|
241
171
|
|
|
242
172
|
```
|
|
243
173
|
task(category="unspecified-low", run_in_background=true, load_skills=[], prompt="[CONTEXT] Tech debt audit. [GOAL] Audit dimensions 1 (Architecture) and 2 (Consistency). [REQUEST] Run ast_grep and grep searches for dimensions 1-2 from the tech-debt-audit skill. Report every finding with file:line:col. Tag severity: Critical/High/Medium/Low.")
|
|
244
174
|
task(category="unspecified-low", run_in_background=true, load_skills=[], prompt="[CONTEXT] Tech debt audit. [GOAL] Audit dimensions 3 (Type debt) and 7 (Error handling). [REQUEST] Run searches for dimensions 3 and 7 from the tech-debt-audit skill. Report every finding with file:line:col. Tag severity.")
|
|
245
175
|
```
|
|
246
176
|
|
|
247
|
-
Spawn 2-3 sub-agents for the heaviest dimensions, collect results in parallel, then synthesize.
|
|
177
|
+
Spawn 2-3 sub-agents for the heaviest dimensions, collect results in parallel, then synthesize.
|
|
248
178
|
|
|
249
179
|
## Phase 3: Synthesize & Deliver
|
|
250
180
|
|
|
251
|
-
1. Collect all findings from direct tool calls
|
|
181
|
+
1. Collect all findings from direct tool calls and sub-agent results
|
|
252
182
|
2. Deduplicate — same issue mentioned by multiple dimensions
|
|
253
183
|
3. Classify severity:
|
|
254
184
|
- **Critical** — Causes incorrect behavior, data loss, or security vulnerability
|
package/README.ja.md
CHANGED
|
@@ -133,7 +133,7 @@ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/head
|
|
|
133
133
|
|
|
134
134
|
匿名のテレメトリは、アクティブなインストール数(DAU/WAU/MAU)の集計のためにデフォルトで有効になっています。マシン1台につきUTC日あたり最大1回イベントが送信され、ハッシュ化されたインストール識別子を使用し、生のホスト名は使用せず、PostHog person profile も作成されません。無効化するには `OMO_SEND_ANONYMOUS_TELEMETRY=0` または `OMO_DISABLE_POSTHOG=1` を設定してください。[プライバシーポリシー](docs/legal/privacy-policy.md)と[利用規約](docs/legal/terms-of-service.md)をご覧ください。
|
|
135
135
|
|
|
136
|
-
**Ultimate と Light:** oh-my-openagent は同じ製品の 2 つのエディションとして提供されます。**Ultimate エディション**(`bunx oh-my-openagent install` または `--platform=opencode`、デフォルト)は OpenCode 上のフル機能で、11 エージェント、54+ フック、Team Mode、すべての MCP、スラッシュコマンド、IntentGate モードを提供します。**Light エディション**(`npx lazycodex-ai install` または `bunx oh-my-openagent install --platform=codex`)は OpenAI Codex CLI のプラグインシステムへ綺麗に移植できるコアコンポーネント(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`ulw-execute-continuation`、`telemetry`)に加え、`teammode` と補助コンポーネント(`bootstrap`、`
|
|
136
|
+
**Ultimate と Light:** oh-my-openagent は同じ製品の 2 つのエディションとして提供されます。**Ultimate エディション**(`bunx oh-my-openagent install` または `--platform=opencode`、デフォルト)は OpenCode 上のフル機能で、11 エージェント、54+ フック、Team Mode、すべての MCP、スラッシュコマンド、IntentGate モードを提供します。**Light エディション**(`npx lazycodex-ai install` または `bunx oh-my-openagent install --platform=codex`)は OpenAI Codex CLI のプラグインシステムへ綺麗に移植できるコアコンポーネント(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`ulw-execute-continuation`、`telemetry`)に加え、`teammode` と補助コンポーネント(`bootstrap`、`lcx` など)を提供し、Codex エージェントの TOML を `~/.codex/agents/` にインストールします。両方を同時にインストールするには `--platform=both`。Codex 専用テレメトリは `OMO_CODEX_DISABLE_POSTHOG=1` または `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0` で無効化できます。
|
|
137
137
|
|
|
138
138
|
---
|
|
139
139
|
|
package/README.ko.md
CHANGED
|
@@ -134,7 +134,7 @@ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/head
|
|
|
134
134
|
|
|
135
135
|
익명 텔레메트리는 활성 설치 수(DAU/WAU/MAU) 집계를 위해 기본적으로 활성화되어 있습니다. 머신당 UTC 하루에 최대 1회만 이벤트가 전송되며, 해시된 설치 식별자를 사용하고 원시 호스트명은 절대 사용하지 않으며 PostHog person profile은 생성되지 않습니다. `OMO_SEND_ANONYMOUS_TELEMETRY=0` 또는 `OMO_DISABLE_POSTHOG=1`로 비활성화할 수 있습니다. [개인정보처리방침](docs/legal/privacy-policy.md)과 [서비스 이용약관](docs/legal/terms-of-service.md)을 참조하세요.
|
|
136
136
|
|
|
137
|
-
**Ultimate vs Light:** oh-my-openagent는 같은 제품의 두 에디션으로 출시됩니다. **Ultimate 에디션**(`bunx oh-my-openagent install` 또는 `--platform=opencode`, 기본값)은 OpenCode 위에서 풀 기능 — 11 agent, 54+ hook, Team Mode, 모든 MCP, 슬래시 명령, IntentGate 모드 — 을 제공합니다. **Light 에디션**(`npx lazycodex-ai install` 또는 `bunx oh-my-openagent install --platform=codex`)은 OpenAI Codex CLI의 플러그인 시스템에 깔끔히 포팅되는 핵심 컴포넌트(`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, `telemetry`)에 더해 `teammode`와 지원 컴포넌트(`bootstrap`, `
|
|
137
|
+
**Ultimate vs Light:** oh-my-openagent는 같은 제품의 두 에디션으로 출시됩니다. **Ultimate 에디션**(`bunx oh-my-openagent install` 또는 `--platform=opencode`, 기본값)은 OpenCode 위에서 풀 기능 — 11 agent, 54+ hook, Team Mode, 모든 MCP, 슬래시 명령, IntentGate 모드 — 을 제공합니다. **Light 에디션**(`npx lazycodex-ai install` 또는 `bunx oh-my-openagent install --platform=codex`)은 OpenAI Codex CLI의 플러그인 시스템에 깔끔히 포팅되는 핵심 컴포넌트(`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, `telemetry`)에 더해 `teammode`와 지원 컴포넌트(`bootstrap`, `lcx` 등)를 제공하고, Codex 에이전트 TOML을 `~/.codex/agents/`에 설치합니다. 둘 다 설치하려면 `--platform=both`. Codex 전용 텔레메트리는 `OMO_CODEX_DISABLE_POSTHOG=1` 또는 `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0`으로 비활성화할 수 있습니다.
|
|
138
138
|
|
|
139
139
|
---
|
|
140
140
|
|
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ Install oh-my-openagent. Type `ultrawork`. Done.
|
|
|
114
114
|
oh-my-openagent ships in three editions of the same product: two plugins that load into a host you already run, plus one standalone edition.
|
|
115
115
|
|
|
116
116
|
- **Ultimate Edition (omo for OpenCode)** — full omo. 11 agents, 54+ lifecycle hooks, 5 built-in MCPs, all slash commands, Team Mode, `/goal`, ultrawork — everything. Hashline edits are opt-in (`hashline_edit: true`).
|
|
117
|
-
- **Light Edition (omo for Codex CLI)** — the portable components that fit Codex's plugin system: `rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, and `telemetry` at the core, plus `teammode` and supporting components (`bootstrap`, `
|
|
117
|
+
- **Light Edition (omo for Codex CLI)** — the portable components that fit Codex's plugin system: `rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, and `telemetry` at the core, plus `teammode` and supporting components (`bootstrap`, `lcx`, and more), plugin-scoped MCPs for `grep_app`, `context7`, `git_bash`, and `lsp`, and the shared `ast-grep` skill. It installs Codex agent TOMLs into `~/.codex/agents/`. No OpenCode `team_*` tools — Codex CLI's own spawn/collaboration surface does that work.
|
|
118
118
|
- **Senpi Edition (standalone, beta)** — the native `omo` command with the OMO extension built in. It installs from `omo-ai@beta` rather than loading into OpenCode or Codex.
|
|
119
119
|
|
|
120
120
|
Pick the edition(s) you want.
|
package/README.ru.md
CHANGED
|
@@ -131,7 +131,7 @@ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/head
|
|
|
131
131
|
|
|
132
132
|
Анонимная телеметрия включена по умолчанию для подсчёта активных установок (DAU/WAU/MAU). Не более одного события на машину за UTC-сутки, использует хешированный идентификатор установки, никогда не использует исходное имя хоста, и не создаёт PostHog person profile. Можно отключить через `OMO_SEND_ANONYMOUS_TELEMETRY=0` или `OMO_DISABLE_POSTHOG=1`. См. [Политику конфиденциальности](docs/legal/privacy-policy.md) и [Условия обслуживания](docs/legal/terms-of-service.md).
|
|
133
133
|
|
|
134
|
-
**Ultimate и Light:** oh-my-openagent поставляется в двух редакциях одного продукта. **Ultimate** (`bunx oh-my-openagent install` или `--platform=opencode`, по умолчанию) — полнофункциональная редакция поверх OpenCode: 11 агентов, 54+ хука, Team Mode, все MCP, все слэш-команды, режимы IntentGate. **Light** (`npx lazycodex-ai install` или `bunx oh-my-openagent install --platform=codex`) — портируемые компоненты omo для системы плагинов OpenAI Codex CLI: ядро (`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, `telemetry`), а также `teammode` и вспомогательные компоненты (`bootstrap`, `
|
|
134
|
+
**Ultimate и Light:** oh-my-openagent поставляется в двух редакциях одного продукта. **Ultimate** (`bunx oh-my-openagent install` или `--platform=opencode`, по умолчанию) — полнофункциональная редакция поверх OpenCode: 11 агентов, 54+ хука, Team Mode, все MCP, все слэш-команды, режимы IntentGate. **Light** (`npx lazycodex-ai install` или `bunx oh-my-openagent install --platform=codex`) — портируемые компоненты omo для системы плагинов OpenAI Codex CLI: ядро (`rules`, `comment-checker`, `git-bash`, `lsp`, `ultrawork`, `ulw-loop`, `ulw-execute-continuation`, `telemetry`), а также `teammode` и вспомогательные компоненты (`bootstrap`, `lcx` и другие); TOML-файлы Codex-агентов устанавливаются в `~/.codex/agents/`. Чтобы установить обе редакции одной командой, используйте `--platform=both`. Телеметрию только для Codex можно отключить через `OMO_CODEX_DISABLE_POSTHOG=1` или `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0`.
|
|
135
135
|
|
|
136
136
|
------
|
|
137
137
|
|
package/README.zh-cn.md
CHANGED
|
@@ -133,7 +133,7 @@ curl -s https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/refs/head
|
|
|
133
133
|
|
|
134
134
|
匿名遥测默认开启,用于统计活跃安装数(DAU/WAU/MAU)。每台机器每个 UTC 日最多发送一次事件,使用哈希化的安装标识符,绝不会使用原始主机名,且不会创建 PostHog person profile。可通过 `OMO_SEND_ANONYMOUS_TELEMETRY=0` 或 `OMO_DISABLE_POSTHOG=1` 禁用。详见 [隐私政策](docs/legal/privacy-policy.md) 和 [服务条款](docs/legal/terms-of-service.md)。
|
|
135
135
|
|
|
136
|
-
**Ultimate 与 Light:** oh-my-openagent 以同一产品的两个版本发布。**Ultimate 版本**(`bunx oh-my-openagent install` 或 `--platform=opencode`,默认值)在 OpenCode 上提供完整功能 —— 11 个智能体、54+ 个生命周期钩子、Team Mode、所有 MCP、所有斜杠命令、IntentGate 模式。**Light 版本**(`npx lazycodex-ai install` 或 `bunx oh-my-openagent install --platform=codex`)提供能够干净地移植到 OpenAI Codex CLI 插件系统的 核心组件(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`ulw-execute-continuation`、`telemetry`),外加 `teammode` 和配套组件(`bootstrap`、`
|
|
136
|
+
**Ultimate 与 Light:** oh-my-openagent 以同一产品的两个版本发布。**Ultimate 版本**(`bunx oh-my-openagent install` 或 `--platform=opencode`,默认值)在 OpenCode 上提供完整功能 —— 11 个智能体、54+ 个生命周期钩子、Team Mode、所有 MCP、所有斜杠命令、IntentGate 模式。**Light 版本**(`npx lazycodex-ai install` 或 `bunx oh-my-openagent install --platform=codex`)提供能够干净地移植到 OpenAI Codex CLI 插件系统的 核心组件(`rules`、`comment-checker`、`git-bash`、`lsp`、`ultrawork`、`ulw-loop`、`ulw-execute-continuation`、`telemetry`),外加 `teammode` 和配套组件(`bootstrap`、`lcx` 等),并会把 Codex 智能体 TOML 安装到 `~/.codex/agents/`。要同时安装两个版本,使用 `--platform=both`。Codex 专用遥测可通过 `OMO_CODEX_DISABLE_POSTHOG=1` 或 `OMO_CODEX_SEND_ANONYMOUS_TELEMETRY=0` 禁用。
|
|
137
137
|
|
|
138
138
|
---
|
|
139
139
|
|
package/THIRD-PARTY-NOTICES.md
CHANGED
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
# Third Party Notices
|
|
2
2
|
|
|
3
|
-
This file enumerates third-party components redistributed by the root `oh-my-opencode` package surface from `package.json` `files[]`, root production dependencies, bundled MCP/runtime payloads
|
|
3
|
+
This file enumerates third-party components redistributed by the root `oh-my-opencode` package surface from `package.json` `files[]`, root production dependencies, and bundled MCP/runtime payloads.
|
|
4
4
|
|
|
5
5
|
Generator/checker note: update this file with the audited component list, then run `node scripts/check-third-party-notices.mjs`. Task 11 owns tarball ship verification.
|
|
6
6
|
|
|
7
7
|
## Components
|
|
8
8
|
|
|
9
|
-
### @clack/core@1.3.0
|
|
10
|
-
- License: MIT, from CodeGraph platform bundle `lib/node_modules/@clack/core/LICENSE`.
|
|
11
|
-
- Copyright: Copyright (c) Nate Moore.
|
|
12
|
-
- Upstream URL: https://github.com/bombshell-dev/clack
|
|
13
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency.
|
|
14
|
-
|
|
15
9
|
### @clack/prompts@1.5.0
|
|
16
10
|
- License: MIT, from `node_modules/@clack/prompts/LICENSE`.
|
|
17
11
|
- Copyright: Copyright (c) Nate Moore.
|
|
18
12
|
- Upstream URL: https://github.com/bombshell-dev/clack
|
|
19
|
-
- Where-bundled: root production dependency
|
|
13
|
+
- Where-bundled: root production dependency.
|
|
20
14
|
|
|
21
15
|
### @code-yeongyu/comment-checker@0.8.0
|
|
22
16
|
- License: MIT, from package metadata. The inspected package did not include a separate LICENSE file.
|
|
@@ -24,48 +18,6 @@ Generator/checker note: update this file with the audited component list, then r
|
|
|
24
18
|
- Upstream URL: https://github.com/code-yeongyu/go-claude-code-comment-checker
|
|
25
19
|
- Where-bundled: root production dependency and vendored checker binary payload under `vendor/<platform>/`.
|
|
26
20
|
|
|
27
|
-
### @colbymchenry/codegraph@1.5.0
|
|
28
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
29
|
-
- Copyright: CodeGraph contributors.
|
|
30
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph
|
|
31
|
-
- Where-bundled: pinned CodeGraph provisioning payload for the CodeGraph OMO integration.
|
|
32
|
-
|
|
33
|
-
### @colbymchenry/codegraph-darwin-arm64@1.5.0
|
|
34
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
35
|
-
- Copyright: CodeGraph contributors.
|
|
36
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph-darwin-arm64
|
|
37
|
-
- Where-bundled: optional CodeGraph platform bundle for darwin arm64, including CodeGraph runtime files, Node.js runtime binary, and tree-sitter WASM assets.
|
|
38
|
-
|
|
39
|
-
### @colbymchenry/codegraph-darwin-x64@1.5.0
|
|
40
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
41
|
-
- Copyright: CodeGraph contributors.
|
|
42
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph-darwin-x64
|
|
43
|
-
- Where-bundled: optional CodeGraph platform bundle for darwin x64, including CodeGraph runtime files, Node.js runtime binary, and tree-sitter WASM assets.
|
|
44
|
-
|
|
45
|
-
### @colbymchenry/codegraph-linux-arm64@1.5.0
|
|
46
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
47
|
-
- Copyright: CodeGraph contributors.
|
|
48
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph-linux-arm64
|
|
49
|
-
- Where-bundled: optional CodeGraph platform bundle for linux arm64, including CodeGraph runtime files, Node.js runtime binary, and tree-sitter WASM assets.
|
|
50
|
-
|
|
51
|
-
### @colbymchenry/codegraph-linux-x64@1.5.0
|
|
52
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
53
|
-
- Copyright: CodeGraph contributors.
|
|
54
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph-linux-x64
|
|
55
|
-
- Where-bundled: optional CodeGraph platform bundle for linux x64, including CodeGraph runtime files, Node.js runtime binary, and tree-sitter WASM assets.
|
|
56
|
-
|
|
57
|
-
### @colbymchenry/codegraph-win32-arm64@1.5.0
|
|
58
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
59
|
-
- Copyright: CodeGraph contributors.
|
|
60
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph-win32-arm64
|
|
61
|
-
- Where-bundled: optional CodeGraph platform bundle for win32 arm64, including CodeGraph runtime files, Node.js runtime binary, and tree-sitter WASM assets.
|
|
62
|
-
|
|
63
|
-
### @colbymchenry/codegraph-win32-x64@1.5.0
|
|
64
|
-
- License: MIT, from npm package metadata. The inspected tarball did not include a separate LICENSE file.
|
|
65
|
-
- Copyright: CodeGraph contributors.
|
|
66
|
-
- Upstream URL: https://www.npmjs.com/package/@colbymchenry/codegraph-win32-x64
|
|
67
|
-
- Where-bundled: optional CodeGraph platform bundle for win32 x64, including CodeGraph runtime files, Node.js runtime binary, and tree-sitter WASM assets.
|
|
68
|
-
|
|
69
21
|
### @modelcontextprotocol/sdk@1.29.0
|
|
70
22
|
- License: MIT, from `node_modules/@modelcontextprotocol/sdk/LICENSE`.
|
|
71
23
|
- Copyright: Copyright (c) 2024 Anthropic, PBC.
|
|
@@ -84,17 +36,29 @@ Generator/checker note: update this file with the audited component list, then r
|
|
|
84
36
|
- Upstream URL: https://www.npmjs.com/package/@opencode-ai/sdk
|
|
85
37
|
- Where-bundled: root production dependency for OpenCode API access.
|
|
86
38
|
|
|
87
|
-
###
|
|
88
|
-
- License:
|
|
89
|
-
- Copyright:
|
|
90
|
-
- Upstream URL: https://
|
|
91
|
-
- Where-bundled:
|
|
39
|
+
### @opentui/core@0.5.8
|
|
40
|
+
- License: MIT, from `node_modules/@opentui/core/LICENSE`.
|
|
41
|
+
- Copyright: Copyright (c) 2025 opentui.
|
|
42
|
+
- Upstream URL: https://www.npmjs.com/package/@opentui/core
|
|
43
|
+
- Where-bundled: root production dependency.
|
|
44
|
+
|
|
45
|
+
### @opentui/keymap@0.5.8
|
|
46
|
+
- License: MIT, from `node_modules/@opentui/keymap/LICENSE`.
|
|
47
|
+
- Copyright: Copyright (c) 2025 opentui.
|
|
48
|
+
- Upstream URL: https://www.npmjs.com/package/@opentui/keymap
|
|
49
|
+
- Where-bundled: root production dependency.
|
|
50
|
+
|
|
51
|
+
### @opentui/solid@0.5.8
|
|
52
|
+
- License: MIT, from `node_modules/@opentui/solid/LICENSE`.
|
|
53
|
+
- Copyright: Copyright (c) 2025 opentui.
|
|
54
|
+
- Upstream URL: https://www.npmjs.com/package/@opentui/solid
|
|
55
|
+
- Where-bundled: root production dependency.
|
|
92
56
|
|
|
93
57
|
### commander@14.0.3
|
|
94
58
|
- License: MIT, from `node_modules/commander/LICENSE`.
|
|
95
59
|
- Copyright: Copyright (c) 2011 TJ Holowaychuk.
|
|
96
60
|
- Upstream URL: https://github.com/tj/commander.js
|
|
97
|
-
- Where-bundled: root production dependency
|
|
61
|
+
- Where-bundled: root production dependency.
|
|
98
62
|
|
|
99
63
|
### detect-libc@2.1.2
|
|
100
64
|
- License: Apache-2.0, from `node_modules/detect-libc/LICENSE`.
|
|
@@ -108,30 +72,6 @@ Generator/checker note: update this file with the audited component list, then r
|
|
|
108
72
|
- Upstream URL: https://github.com/kpdecker/jsdiff
|
|
109
73
|
- Where-bundled: root production dependency used by diff rendering and patch helpers.
|
|
110
74
|
|
|
111
|
-
### fast-string-truncated-width@3.0.3
|
|
112
|
-
- License: MIT, from CodeGraph platform bundle `lib/node_modules/fast-string-truncated-width/license`.
|
|
113
|
-
- Copyright: Fabio Spampinato and contributors.
|
|
114
|
-
- Upstream URL: https://github.com/fabiospampinato/fast-string-truncated-width
|
|
115
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency.
|
|
116
|
-
|
|
117
|
-
### fast-string-width@3.0.2
|
|
118
|
-
- License: MIT, from CodeGraph platform bundle `lib/node_modules/fast-string-width/license`.
|
|
119
|
-
- Copyright: Fabio Spampinato and contributors.
|
|
120
|
-
- Upstream URL: https://github.com/fabiospampinato/fast-string-width
|
|
121
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency.
|
|
122
|
-
|
|
123
|
-
### fast-wrap-ansi@0.2.0
|
|
124
|
-
- License: MIT, from CodeGraph platform bundle `lib/node_modules/fast-wrap-ansi/LICENSE`.
|
|
125
|
-
- Copyright: James Garbutt and contributors.
|
|
126
|
-
- Upstream URL: https://github.com/43081j/fast-wrap-ansi
|
|
127
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency.
|
|
128
|
-
|
|
129
|
-
### ignore@7.0.5
|
|
130
|
-
- License: MIT, from CodeGraph platform bundle `lib/node_modules/ignore/LICENSE-MIT`.
|
|
131
|
-
- Copyright: ignore contributors.
|
|
132
|
-
- Upstream URL: https://github.com/kaelzhang/node-ignore
|
|
133
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency.
|
|
134
|
-
|
|
135
75
|
### js-yaml@4.2.0
|
|
136
76
|
- License: MIT, from `node_modules/js-yaml/LICENSE`.
|
|
137
77
|
- Copyright: Copyright (C) 2011-2015 Vitaly Puzrin.
|
|
@@ -142,7 +82,7 @@ Generator/checker note: update this file with the audited component list, then r
|
|
|
142
82
|
- License: MIT, from `node_modules/jsonc-parser/LICENSE.md`.
|
|
143
83
|
- Copyright: Copyright (c) Microsoft.
|
|
144
84
|
- Upstream URL: https://github.com/microsoft/node-jsonc-parser
|
|
145
|
-
- Where-bundled: root production dependency
|
|
85
|
+
- Where-bundled: root production dependency.
|
|
146
86
|
|
|
147
87
|
### pi-comment-checker
|
|
148
88
|
- License: MIT, from `packages/omo-codex/plugin/components/comment-checker/LICENSE` and component NOTICE.
|
|
@@ -172,7 +112,7 @@ Generator/checker note: update this file with the audited component list, then r
|
|
|
172
112
|
- License: MIT, from `node_modules/picomatch/LICENSE`.
|
|
173
113
|
- Copyright: Copyright (c) 2017-present, Jon Schlinkert.
|
|
174
114
|
- Upstream URL: https://github.com/micromatch/picomatch
|
|
175
|
-
- Where-bundled: root production dependency
|
|
115
|
+
- Where-bundled: root production dependency.
|
|
176
116
|
|
|
177
117
|
### posthog-node@5.35.12
|
|
178
118
|
- License: Apache-2.0 text in `node_modules/posthog-node/LICENSE`; package metadata declares MIT.
|
|
@@ -180,26 +120,14 @@ Generator/checker note: update this file with the audited component list, then r
|
|
|
180
120
|
- Upstream URL: https://github.com/PostHog/posthog-js
|
|
181
121
|
- Where-bundled: root production dependency for anonymous telemetry.
|
|
182
122
|
|
|
183
|
-
### sisteransi@1.0.5
|
|
184
|
-
- License: MIT, from CodeGraph platform bundle `lib/node_modules/sisteransi/license`.
|
|
185
|
-
- Copyright: Terkel Gjervig and contributors.
|
|
186
|
-
- Upstream URL: https://github.com/terkelg/sisteransi
|
|
187
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency.
|
|
188
|
-
|
|
189
|
-
### tree-sitter-wasms@0.1.13
|
|
190
|
-
- License: Unlicense, from CodeGraph platform bundle `lib/node_modules/tree-sitter-wasms/LICENSE`.
|
|
191
|
-
- Copyright: Gregor, Menci, and grammar contributors.
|
|
192
|
-
- Upstream URL: https://github.com/Gregoor/tree-sitter-wasms
|
|
193
|
-
- Where-bundled: CodeGraph platform bundle vendored dependency and bundled language grammar WASM files.
|
|
194
|
-
|
|
195
123
|
### vscode-jsonrpc@8.2.1
|
|
196
124
|
- License: MIT, from `node_modules/vscode-jsonrpc/License.txt`.
|
|
197
125
|
- Copyright: Copyright (c) Microsoft Corporation.
|
|
198
126
|
- Upstream URL: https://github.com/microsoft/vscode-languageserver-node
|
|
199
127
|
- Where-bundled: root production dependency for LSP JSON-RPC transport.
|
|
200
128
|
|
|
201
|
-
###
|
|
202
|
-
- License: MIT, from
|
|
203
|
-
- Copyright:
|
|
204
|
-
- Upstream URL: https://
|
|
205
|
-
- Where-bundled:
|
|
129
|
+
### zod@4.4.3
|
|
130
|
+
- License: MIT, from `node_modules/zod/LICENSE`.
|
|
131
|
+
- Copyright: Copyright (c) 2025 Colin McDonnell.
|
|
132
|
+
- Upstream URL: https://zod.dev
|
|
133
|
+
- Where-bundled: root production dependency.
|