oh-my-opencode 4.9.0 → 4.9.2
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/opencode-qa/SKILL.md +1 -0
- package/.agents/skills/opencode-qa/scripts/lib/fake-openai-branches.mjs +39 -0
- package/.agents/skills/opencode-qa/scripts/lib/fake-openai-events.mjs +106 -0
- package/.agents/skills/opencode-qa/scripts/lib/fake-openai-server.mjs +117 -0
- package/.agents/skills/opencode-qa/scripts/serve-wake-split-probe.sh +716 -0
- package/dist/cli/doctor/checks/dependencies.d.ts +2 -2
- package/dist/cli/index.js +31742 -31476
- package/dist/cli-node/index.js +31742 -31476
- package/dist/config/schema/experimental.d.ts +1 -0
- package/dist/config/schema/oh-my-opencode-config.d.ts +1 -0
- package/dist/index.js +3067 -1344
- package/dist/oh-my-opencode.schema.json +3 -0
- package/dist/shared/internal-initiator-marker.d.ts +7 -0
- package/dist/shared/live-server-route.d.ts +24 -0
- package/dist/shared/module-resolution-failure.d.ts +7 -0
- package/dist/shared/prompt-async-gate/prompt-message-state.d.ts +1 -0
- package/dist/testing/create-plugin-module.d.ts +4 -0
- package/package.json +12 -12
- package/packages/omo-codex/plugin/.codex-plugin/plugin.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/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/start-work-continuation/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/start-work-continuation/package.json +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/hooks/hooks.json +1 -1
- package/packages/omo-codex/plugin/components/ultrawork/package.json +1 -1
- package/packages/omo-codex/plugin/components/ulw-loop/hooks/hooks.json +2 -2
- package/packages/omo-codex/plugin/components/ulw-loop/package.json +1 -1
- package/packages/omo-codex/plugin/hooks/hooks.json +16 -16
- package/packages/omo-codex/plugin/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare const OMO_INTERNAL_INITIATOR_MARKER = "<!-- OMO_INTERNAL_INITIATOR -->";
|
|
2
|
+
export declare const OMO_INTERNAL_NOREPLY_MARKER = "<!-- OMO_INTERNAL_NOREPLY -->";
|
|
2
3
|
export type InternalInitiatorTextPartLike = {
|
|
3
4
|
type?: string;
|
|
4
5
|
text?: string;
|
|
@@ -12,6 +13,7 @@ export type InternalInitiatorMessageLike = {
|
|
|
12
13
|
parts?: readonly InternalInitiatorTextPartLike[];
|
|
13
14
|
};
|
|
14
15
|
export declare function hasInternalInitiatorMarker(text: string): boolean;
|
|
16
|
+
export declare function hasInternalNoReplyMarker(text: string): boolean;
|
|
15
17
|
export declare function isTextPartLike(part: InternalInitiatorTextPartLike): part is InternalInitiatorTextPartLike & {
|
|
16
18
|
type: "text";
|
|
17
19
|
text: string;
|
|
@@ -23,6 +25,7 @@ export declare function isRealUserTextPart(part: InternalInitiatorTextPartLike):
|
|
|
23
25
|
};
|
|
24
26
|
export declare function isSyntheticOrInternalOnlyTextParts(parts: readonly InternalInitiatorTextPartLike[] | undefined): boolean;
|
|
25
27
|
export declare function isSyntheticOrInternalUserMessage(message: InternalInitiatorMessageLike): boolean;
|
|
28
|
+
export declare function isTerminalNoReplyUserMessage(message: InternalInitiatorMessageLike): boolean;
|
|
26
29
|
export declare function isRealUserMessage(message: InternalInitiatorMessageLike): boolean;
|
|
27
30
|
export declare function stripInternalInitiatorMarkers(text: string): string;
|
|
28
31
|
export declare function createInternalAgentTextPart(text: string): {
|
|
@@ -37,3 +40,7 @@ export declare function createInternalAgentContinuationTextPart(text: string): {
|
|
|
37
40
|
compaction_continue: true;
|
|
38
41
|
};
|
|
39
42
|
};
|
|
43
|
+
export declare function withInternalNoReplyMarker<T extends {
|
|
44
|
+
type: "text";
|
|
45
|
+
text: string;
|
|
46
|
+
}>(part: T): T;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const LIVE_ROUTE_DISPATCH_LOG = "[live-server-route] dispatch via live listener";
|
|
2
|
+
export declare const LIVE_ROUTE_UNAVAILABLE_LOG = "[live-server-route] route unavailable; using in-process client";
|
|
3
|
+
type RouteResult = {
|
|
4
|
+
client: unknown;
|
|
5
|
+
route: "live" | "in-process";
|
|
6
|
+
reason: "identity" | "flag" | "child" | "unavailable" | "live";
|
|
7
|
+
};
|
|
8
|
+
type FetchImpl = typeof fetch;
|
|
9
|
+
export declare function _setFetchImplementationForTesting(impl: FetchImpl | undefined): void;
|
|
10
|
+
export declare function _setLiveClientForTesting(client: unknown): void;
|
|
11
|
+
export declare function setLiveParentWakeRoutingDisabled(disabled: boolean): void;
|
|
12
|
+
export declare function isLiveParentWakeRoutingDisabled(): boolean;
|
|
13
|
+
export declare function initLiveServerRoute(opts: {
|
|
14
|
+
serverUrl: URL | undefined;
|
|
15
|
+
directory: string;
|
|
16
|
+
inProcessClient: unknown;
|
|
17
|
+
}): void;
|
|
18
|
+
export declare function warmLiveServerProbe(): void;
|
|
19
|
+
export declare function tryResolveDispatchClientSync(client: unknown, sessionID: string): RouteResult | undefined;
|
|
20
|
+
export declare function resolveDispatchClient(client: unknown, sessionID: string): Promise<RouteResult>;
|
|
21
|
+
export declare function isPreSendConnectionFailure(error: unknown): boolean;
|
|
22
|
+
export declare function markLiveRouteUnavailable(reason: string): void;
|
|
23
|
+
export declare function resetLiveServerRouteForTesting(): void;
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bun reports failed module resolution (dynamic `import()` and
|
|
3
|
+
* `createRequire().resolve()`) by throwing a `ResolveMessage`, which is NOT an
|
|
4
|
+
* `instanceof Error`. Catch blocks that rethrow non-Error values therefore
|
|
5
|
+
* escalate a routine "optional dependency is absent" probe into a crash.
|
|
6
|
+
*/
|
|
7
|
+
export declare function isModuleResolutionFailure(error: unknown): boolean;
|
|
@@ -2,6 +2,7 @@ export declare function messageRole(message: unknown): string | undefined;
|
|
|
2
2
|
export declare function messageFinish(message: unknown): string | true | undefined;
|
|
3
3
|
export declare function messageCompleted(message: unknown): boolean;
|
|
4
4
|
export declare function messageIsSyntheticOrInternalUser(message: unknown): boolean;
|
|
5
|
+
export declare function messageIsTerminalNoReplyUser(message: unknown): boolean;
|
|
5
6
|
export declare function messageHasQuestionTool(message: unknown): boolean;
|
|
6
7
|
export declare function messageHasWaitingTool(message: unknown): boolean;
|
|
7
8
|
export declare function messageHasUnresolvedTool(message: unknown): boolean;
|
|
@@ -17,6 +17,7 @@ import { log } from "../shared/logger";
|
|
|
17
17
|
import { logLegacyPluginStartupWarning } from "../shared/log-legacy-plugin-startup-warning";
|
|
18
18
|
import { migrateLegacyWorkspaceDirectory } from "../shared/legacy-workspace-migration";
|
|
19
19
|
import { injectServerAuthIntoClient } from "../shared/opencode-server-auth";
|
|
20
|
+
import { initLiveServerRoute, setLiveParentWakeRoutingDisabled, warmLiveServerProbe } from "../shared/live-server-route";
|
|
20
21
|
import { startBackgroundCheck as startTmuxCheck } from "../tools/interactive-bash";
|
|
21
22
|
export type PluginModuleDeps = {
|
|
22
23
|
initConfigContext: typeof initConfigContext;
|
|
@@ -30,6 +31,9 @@ export type PluginModuleDeps = {
|
|
|
30
31
|
detectExternalSkillPlugin: typeof detectExternalSkillPlugin;
|
|
31
32
|
getSkillPluginConflictWarning: typeof getSkillPluginConflictWarning;
|
|
32
33
|
injectServerAuthIntoClient: typeof injectServerAuthIntoClient;
|
|
34
|
+
initLiveServerRoute: typeof initLiveServerRoute;
|
|
35
|
+
setLiveParentWakeRoutingDisabled: typeof setLiveParentWakeRoutingDisabled;
|
|
36
|
+
warmLiveServerProbe: typeof warmLiveServerProbe;
|
|
33
37
|
loadPluginConfig: typeof loadPluginConfig;
|
|
34
38
|
initI18n: typeof initI18n;
|
|
35
39
|
initializeOpenClaw: typeof initializeOpenClaw;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.2",
|
|
4
4
|
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -144,17 +144,17 @@
|
|
|
144
144
|
"zod": "^4.4.3"
|
|
145
145
|
},
|
|
146
146
|
"optionalDependencies": {
|
|
147
|
-
"oh-my-opencode-darwin-arm64": "4.9.
|
|
148
|
-
"oh-my-opencode-darwin-x64": "4.9.
|
|
149
|
-
"oh-my-opencode-darwin-x64-baseline": "4.9.
|
|
150
|
-
"oh-my-opencode-linux-arm64": "4.9.
|
|
151
|
-
"oh-my-opencode-linux-arm64-musl": "4.9.
|
|
152
|
-
"oh-my-opencode-linux-x64": "4.9.
|
|
153
|
-
"oh-my-opencode-linux-x64-baseline": "4.9.
|
|
154
|
-
"oh-my-opencode-linux-x64-musl": "4.9.
|
|
155
|
-
"oh-my-opencode-linux-x64-musl-baseline": "4.9.
|
|
156
|
-
"oh-my-opencode-windows-x64": "4.9.
|
|
157
|
-
"oh-my-opencode-windows-x64-baseline": "4.9.
|
|
147
|
+
"oh-my-opencode-darwin-arm64": "4.9.2",
|
|
148
|
+
"oh-my-opencode-darwin-x64": "4.9.2",
|
|
149
|
+
"oh-my-opencode-darwin-x64-baseline": "4.9.2",
|
|
150
|
+
"oh-my-opencode-linux-arm64": "4.9.2",
|
|
151
|
+
"oh-my-opencode-linux-arm64-musl": "4.9.2",
|
|
152
|
+
"oh-my-opencode-linux-x64": "4.9.2",
|
|
153
|
+
"oh-my-opencode-linux-x64-baseline": "4.9.2",
|
|
154
|
+
"oh-my-opencode-linux-x64-musl": "4.9.2",
|
|
155
|
+
"oh-my-opencode-linux-x64-musl-baseline": "4.9.2",
|
|
156
|
+
"oh-my-opencode-windows-x64": "4.9.2",
|
|
157
|
+
"oh-my-opencode-windows-x64-baseline": "4.9.2"
|
|
158
158
|
},
|
|
159
159
|
"overrides": {
|
|
160
160
|
"hono": "^4.12.18",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"type": "command",
|
|
9
9
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook pre-tool-use",
|
|
10
10
|
"timeout": 5,
|
|
11
|
-
"statusMessage": "LazyCodex(4.9.
|
|
11
|
+
"statusMessage": "LazyCodex(4.9.2): Recommending Git Bash Mcp"
|
|
12
12
|
}
|
|
13
13
|
]
|
|
14
14
|
}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"type": "command",
|
|
21
21
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-compact",
|
|
22
22
|
"timeout": 5,
|
|
23
|
-
"statusMessage": "LazyCodex(4.9.
|
|
23
|
+
"statusMessage": "LazyCodex(4.9.2): Resetting Git Bash Mcp Reminder"
|
|
24
24
|
}
|
|
25
25
|
]
|
|
26
26
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"type": "command",
|
|
9
9
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-tool-use",
|
|
10
10
|
"timeout": 60,
|
|
11
|
-
"statusMessage": "LazyCodex(4.9.
|
|
11
|
+
"statusMessage": "LazyCodex(4.9.2): Checking LSP Diagnostics"
|
|
12
12
|
}
|
|
13
13
|
]
|
|
14
14
|
}
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type": "command",
|
|
22
22
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-compact",
|
|
23
23
|
"timeout": 5,
|
|
24
|
-
"statusMessage": "LazyCodex(4.9.
|
|
24
|
+
"statusMessage": "LazyCodex(4.9.2): Resetting LSP Diagnostics Cache"
|
|
25
25
|
}
|
|
26
26
|
]
|
|
27
27
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"type": "command",
|
|
8
8
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook session-start",
|
|
9
9
|
"timeout": 10,
|
|
10
|
-
"statusMessage": "LazyCodex(4.9.
|
|
10
|
+
"statusMessage": "LazyCodex(4.9.2): Loading Project Rules"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"type": "command",
|
|
20
20
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook user-prompt-submit",
|
|
21
21
|
"timeout": 10,
|
|
22
|
-
"statusMessage": "LazyCodex(4.9.
|
|
22
|
+
"statusMessage": "LazyCodex(4.9.2): Loading Project Rules"
|
|
23
23
|
}
|
|
24
24
|
]
|
|
25
25
|
}
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"type": "command",
|
|
33
33
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-tool-use",
|
|
34
34
|
"timeout": 10,
|
|
35
|
-
"statusMessage": "LazyCodex(4.9.
|
|
35
|
+
"statusMessage": "LazyCodex(4.9.2): Matching Project Rules"
|
|
36
36
|
}
|
|
37
37
|
]
|
|
38
38
|
}
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"type": "command",
|
|
46
46
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook post-compact",
|
|
47
47
|
"timeout": 10,
|
|
48
|
-
"statusMessage": "LazyCodex(4.9.
|
|
48
|
+
"statusMessage": "LazyCodex(4.9.2): Resetting Project Rule Cache"
|
|
49
49
|
}
|
|
50
50
|
]
|
|
51
51
|
}
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"type": "command",
|
|
8
8
|
"command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook stop",
|
|
9
9
|
"timeout": 10,
|
|
10
|
-
"statusMessage": "LazyCodex(4.9.
|
|
10
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Start-Work Continuation"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"type": "command",
|
|
20
20
|
"command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook subagent-stop",
|
|
21
21
|
"timeout": 10,
|
|
22
|
-
"statusMessage": "LazyCodex(4.9.
|
|
22
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Start-Work Continuation"
|
|
23
23
|
}
|
|
24
24
|
]
|
|
25
25
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-yeongyu/codex-ultrawork",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.2",
|
|
4
4
|
"description": "Codex plugin that injects the ultrawork orchestration directive and syncs the ultrawork reviewer agent role.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "npm@11.12.1",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"type": "command",
|
|
8
8
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook user-prompt-submit",
|
|
9
9
|
"timeout": 10,
|
|
10
|
-
"statusMessage": "LazyCodex(4.9.
|
|
10
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Ulw-Loop Steering"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
}
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"type": "command",
|
|
21
21
|
"command": "node \"${PLUGIN_ROOT}/dist/cli.js\" hook pre-tool-use",
|
|
22
22
|
"timeout": 5,
|
|
23
|
-
"statusMessage": "LazyCodex(4.9.
|
|
23
|
+
"statusMessage": "LazyCodex(4.9.2): Enforcing Unlimited Ulw-Loop Budget"
|
|
24
24
|
}
|
|
25
25
|
]
|
|
26
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-yeongyu/codex-ulw-loop",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.2",
|
|
4
4
|
"description": "Codex plugin: durable repo-native multi-goal orchestration with embedded success criteria and observable evidence audit.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "npm@11.12.1",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"type": "command",
|
|
8
8
|
"command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook session-start",
|
|
9
9
|
"timeout": 10,
|
|
10
|
-
"statusMessage": "LazyCodex(4.9.
|
|
10
|
+
"statusMessage": "LazyCodex(4.9.2): Loading Project Rules"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
},
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"type": "command",
|
|
18
18
|
"command": "node \"${PLUGIN_ROOT}/components/telemetry/dist/cli.js\" hook session-start",
|
|
19
19
|
"timeout": 5,
|
|
20
|
-
"statusMessage": "LazyCodex(4.9.
|
|
20
|
+
"statusMessage": "LazyCodex(4.9.2): Recording Session Telemetry"
|
|
21
21
|
}
|
|
22
22
|
]
|
|
23
23
|
},
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"type": "command",
|
|
29
29
|
"command": "node \"${PLUGIN_ROOT}/scripts/auto-update.mjs\" hook session-start",
|
|
30
30
|
"timeout": 5,
|
|
31
|
-
"statusMessage": "LazyCodex(4.9.
|
|
31
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Auto Update"
|
|
32
32
|
}
|
|
33
33
|
]
|
|
34
34
|
}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"type": "command",
|
|
41
41
|
"command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook user-prompt-submit",
|
|
42
42
|
"timeout": 10,
|
|
43
|
-
"statusMessage": "LazyCodex(4.9.
|
|
43
|
+
"statusMessage": "LazyCodex(4.9.2): Loading Project Rules"
|
|
44
44
|
}
|
|
45
45
|
]
|
|
46
46
|
},
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"type": "command",
|
|
51
51
|
"command": "node \"${PLUGIN_ROOT}/components/ultrawork/dist/cli.js\" hook user-prompt-submit",
|
|
52
52
|
"timeout": 5,
|
|
53
|
-
"statusMessage": "LazyCodex(4.9.
|
|
53
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Ultrawork Trigger"
|
|
54
54
|
}
|
|
55
55
|
]
|
|
56
56
|
},
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"type": "command",
|
|
61
61
|
"command": "node \"${PLUGIN_ROOT}/components/ulw-loop/dist/cli.js\" hook user-prompt-submit",
|
|
62
62
|
"timeout": 10,
|
|
63
|
-
"statusMessage": "LazyCodex(4.9.
|
|
63
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Ulw-Loop Steering"
|
|
64
64
|
}
|
|
65
65
|
]
|
|
66
66
|
}
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"type": "command",
|
|
74
74
|
"command": "node \"${PLUGIN_ROOT}/components/git-bash/dist/cli.js\" hook pre-tool-use",
|
|
75
75
|
"timeout": 5,
|
|
76
|
-
"statusMessage": "LazyCodex(4.9.
|
|
76
|
+
"statusMessage": "LazyCodex(4.9.2): Recommending Git Bash Mcp"
|
|
77
77
|
}
|
|
78
78
|
]
|
|
79
79
|
},
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"type": "command",
|
|
85
85
|
"command": "node \"${PLUGIN_ROOT}/components/ulw-loop/dist/cli.js\" hook pre-tool-use",
|
|
86
86
|
"timeout": 5,
|
|
87
|
-
"statusMessage": "LazyCodex(4.9.
|
|
87
|
+
"statusMessage": "LazyCodex(4.9.2): Enforcing Unlimited Goal Budget"
|
|
88
88
|
}
|
|
89
89
|
]
|
|
90
90
|
}
|
|
@@ -97,13 +97,13 @@
|
|
|
97
97
|
"type": "command",
|
|
98
98
|
"command": "node \"${PLUGIN_ROOT}/components/comment-checker/dist/cli.js\" hook post-tool-use",
|
|
99
99
|
"timeout": 30,
|
|
100
|
-
"statusMessage": "LazyCodex(4.9.
|
|
100
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Comments"
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
103
|
"type": "command",
|
|
104
104
|
"command": "node \"${PLUGIN_ROOT}/components/lsp/dist/cli.js\" hook post-tool-use",
|
|
105
105
|
"timeout": 60,
|
|
106
|
-
"statusMessage": "LazyCodex(4.9.
|
|
106
|
+
"statusMessage": "LazyCodex(4.9.2): Checking LSP Diagnostics"
|
|
107
107
|
}
|
|
108
108
|
]
|
|
109
109
|
},
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"type": "command",
|
|
115
115
|
"command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook post-tool-use",
|
|
116
116
|
"timeout": 10,
|
|
117
|
-
"statusMessage": "LazyCodex(4.9.
|
|
117
|
+
"statusMessage": "LazyCodex(4.9.2): Matching Project Rules"
|
|
118
118
|
}
|
|
119
119
|
]
|
|
120
120
|
}
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"type": "command",
|
|
128
128
|
"command": "node \"${PLUGIN_ROOT}/components/git-bash/dist/cli.js\" hook post-compact",
|
|
129
129
|
"timeout": 5,
|
|
130
|
-
"statusMessage": "LazyCodex(4.9.
|
|
130
|
+
"statusMessage": "LazyCodex(4.9.2): Resetting Git Bash Mcp Reminder"
|
|
131
131
|
}
|
|
132
132
|
]
|
|
133
133
|
},
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"type": "command",
|
|
139
139
|
"command": "node \"${PLUGIN_ROOT}/components/rules/dist/cli.js\" hook post-compact",
|
|
140
140
|
"timeout": 10,
|
|
141
|
-
"statusMessage": "LazyCodex(4.9.
|
|
141
|
+
"statusMessage": "LazyCodex(4.9.2): Resetting Project Rule Cache"
|
|
142
142
|
}
|
|
143
143
|
]
|
|
144
144
|
},
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"type": "command",
|
|
150
150
|
"command": "node \"${PLUGIN_ROOT}/components/lsp/dist/cli.js\" hook post-compact",
|
|
151
151
|
"timeout": 5,
|
|
152
|
-
"statusMessage": "LazyCodex(4.9.
|
|
152
|
+
"statusMessage": "LazyCodex(4.9.2): Resetting LSP Diagnostics Cache"
|
|
153
153
|
}
|
|
154
154
|
]
|
|
155
155
|
}
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"type": "command",
|
|
162
162
|
"command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook stop",
|
|
163
163
|
"timeout": 10,
|
|
164
|
-
"statusMessage": "LazyCodex(4.9.
|
|
164
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Start-Work Continuation"
|
|
165
165
|
}
|
|
166
166
|
]
|
|
167
167
|
}
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
"type": "command",
|
|
174
174
|
"command": "node \"${PLUGIN_ROOT}/components/start-work-continuation/dist/cli.js\" hook subagent-stop",
|
|
175
175
|
"timeout": 10,
|
|
176
|
-
"statusMessage": "LazyCodex(4.9.
|
|
176
|
+
"statusMessage": "LazyCodex(4.9.2): Checking Start-Work Continuation"
|
|
177
177
|
}
|
|
178
178
|
]
|
|
179
179
|
}
|