@skj1724/oh-my-opencode 3.18.13 → 3.18.14
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/dist/cli/index.js
CHANGED
|
@@ -6703,7 +6703,7 @@ function stripAgentListSortPrefix(agentName) {
|
|
|
6703
6703
|
}
|
|
6704
6704
|
function getAgentRuntimeName(configKey) {
|
|
6705
6705
|
const displayName = getAgentDisplayName(configKey);
|
|
6706
|
-
const prefix =
|
|
6706
|
+
const prefix = AGENT_LIST_SORT_PREFIXES[configKey.toLowerCase()];
|
|
6707
6707
|
return prefix ? `${prefix}${displayName}` : displayName;
|
|
6708
6708
|
}
|
|
6709
6709
|
function getAgentDisplayName(configKey) {
|
|
@@ -6733,7 +6733,7 @@ function getAgentConfigKey(agentName) {
|
|
|
6733
6733
|
const lower = stripAgentListSortPrefix(agentName).trim().toLowerCase();
|
|
6734
6734
|
return resolveKnownAgentConfigKey(agentName) ?? lower;
|
|
6735
6735
|
}
|
|
6736
|
-
var AGENT_DISPLAY_NAMES, INVISIBLE_AGENT_CHARACTERS_REGEX, REVERSE_DISPLAY_NAMES, LEGACY_DISPLAY_NAMES;
|
|
6736
|
+
var AGENT_DISPLAY_NAMES, AGENT_LIST_SORT_PREFIXES, INVISIBLE_AGENT_CHARACTERS_REGEX, REVERSE_DISPLAY_NAMES, LEGACY_DISPLAY_NAMES;
|
|
6737
6737
|
var init_agent_display_names = __esm(() => {
|
|
6738
6738
|
AGENT_DISPLAY_NAMES = {
|
|
6739
6739
|
sisyphus: "Sis-worker",
|
|
@@ -6751,6 +6751,12 @@ var init_agent_display_names = __esm(() => {
|
|
|
6751
6751
|
"multimodal-looker": "multimodal-looker",
|
|
6752
6752
|
"council-member": "council-member"
|
|
6753
6753
|
};
|
|
6754
|
+
AGENT_LIST_SORT_PREFIXES = {
|
|
6755
|
+
sisyphus: "\u200B",
|
|
6756
|
+
hephaestus: "\u200B\u200B",
|
|
6757
|
+
prometheus: "\u200B\u200B\u200B",
|
|
6758
|
+
atlas: "\u200B\u200B\u200B\u200B"
|
|
6759
|
+
};
|
|
6754
6760
|
INVISIBLE_AGENT_CHARACTERS_REGEX = /[\u200B\u200C\u200D\uFEFF]/g;
|
|
6755
6761
|
REVERSE_DISPLAY_NAMES = Object.fromEntries(Object.entries(AGENT_DISPLAY_NAMES).map(([key, displayName]) => [displayName.toLowerCase(), key]));
|
|
6756
6762
|
LEGACY_DISPLAY_NAMES = {
|
|
@@ -53764,7 +53770,7 @@ var {
|
|
|
53764
53770
|
// package.json
|
|
53765
53771
|
var package_default = {
|
|
53766
53772
|
name: "@skj1724/oh-my-opencode",
|
|
53767
|
-
version: "3.18.
|
|
53773
|
+
version: "3.18.14",
|
|
53768
53774
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
53769
53775
|
main: "./dist/index.js",
|
|
53770
53776
|
types: "dist/index.d.ts",
|
|
@@ -53853,7 +53859,7 @@ var package_default = {
|
|
|
53853
53859
|
"oh-my-opencode-linux-x64-baseline": "3.17.4",
|
|
53854
53860
|
"oh-my-opencode-linux-x64-musl": "3.17.4",
|
|
53855
53861
|
"oh-my-opencode-linux-x64-musl-baseline": "3.17.4",
|
|
53856
|
-
"
|
|
53862
|
+
"oh-my-opencode-windows-x64": "3.17.4",
|
|
53857
53863
|
"oh-my-opencode-windows-x64-baseline": "3.17.4"
|
|
53858
53864
|
},
|
|
53859
53865
|
overrides: {},
|
|
@@ -74088,7 +74094,9 @@ var BuiltinCommandNameSchema = exports_external.enum([
|
|
|
74088
74094
|
"refactor",
|
|
74089
74095
|
"start-work",
|
|
74090
74096
|
"stop-continuation",
|
|
74091
|
-
"
|
|
74097
|
+
"handoff",
|
|
74098
|
+
"remove-ai-slops",
|
|
74099
|
+
"open-plan"
|
|
74092
74100
|
]);
|
|
74093
74101
|
// src/config/schema/dynamic-context-pruning.ts
|
|
74094
74102
|
var DynamicContextPruningConfigSchema = exports_external.object({
|
|
@@ -7,6 +7,8 @@ export declare const BuiltinCommandNameSchema: z.ZodEnum<{
|
|
|
7
7
|
refactor: "refactor";
|
|
8
8
|
"start-work": "start-work";
|
|
9
9
|
"stop-continuation": "stop-continuation";
|
|
10
|
+
handoff: "handoff";
|
|
10
11
|
"remove-ai-slops": "remove-ai-slops";
|
|
12
|
+
"open-plan": "open-plan";
|
|
11
13
|
}>;
|
|
12
14
|
export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>;
|
|
@@ -24,7 +24,9 @@ export declare const OhMyOpenCodeConfigSchema: z.ZodObject<{
|
|
|
24
24
|
refactor: "refactor";
|
|
25
25
|
"start-work": "start-work";
|
|
26
26
|
"stop-continuation": "stop-continuation";
|
|
27
|
+
handoff: "handoff";
|
|
27
28
|
"remove-ai-slops": "remove-ai-slops";
|
|
29
|
+
"open-plan": "open-plan";
|
|
28
30
|
}>>>;
|
|
29
31
|
disabled_tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30
32
|
mcp_env_allowlist: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import type { BuiltinCommandName } from "../../config/schema/commands";
|
|
2
|
+
export type { BuiltinCommandName };
|
|
1
3
|
import type { CommandDefinition } from "../claude-code-command-loader";
|
|
2
|
-
export type BuiltinCommandName = "init-deep" | "ralph-loop" | "cancel-ralph" | "ulw-loop" | "refactor" | "start-work" | "stop-continuation" | "handoff" | "remove-ai-slops" | "open-plan";
|
|
3
4
|
export interface BuiltinCommandConfig {
|
|
4
5
|
disabled_commands?: BuiltinCommandName[];
|
|
5
6
|
}
|
package/dist/index.js
CHANGED
|
@@ -2779,7 +2779,7 @@ function stripAgentListSortPrefix(agentName) {
|
|
|
2779
2779
|
}
|
|
2780
2780
|
function getAgentRuntimeName(configKey) {
|
|
2781
2781
|
const displayName = getAgentDisplayName(configKey);
|
|
2782
|
-
const prefix =
|
|
2782
|
+
const prefix = AGENT_LIST_SORT_PREFIXES[configKey.toLowerCase()];
|
|
2783
2783
|
return prefix ? `${prefix}${displayName}` : displayName;
|
|
2784
2784
|
}
|
|
2785
2785
|
function getAgentDisplayName(configKey) {
|
|
@@ -2822,7 +2822,7 @@ function normalizeAgentForPromptKey(agentName) {
|
|
|
2822
2822
|
}
|
|
2823
2823
|
return resolveKnownAgentConfigKey(trimmed) ?? trimmed;
|
|
2824
2824
|
}
|
|
2825
|
-
var AGENT_DISPLAY_NAMES, INVISIBLE_AGENT_CHARACTERS_REGEX, REVERSE_DISPLAY_NAMES, LEGACY_DISPLAY_NAMES;
|
|
2825
|
+
var AGENT_DISPLAY_NAMES, AGENT_LIST_SORT_PREFIXES, INVISIBLE_AGENT_CHARACTERS_REGEX, REVERSE_DISPLAY_NAMES, LEGACY_DISPLAY_NAMES;
|
|
2826
2826
|
var init_agent_display_names = __esm(() => {
|
|
2827
2827
|
AGENT_DISPLAY_NAMES = {
|
|
2828
2828
|
sisyphus: "Sis-worker",
|
|
@@ -2840,6 +2840,12 @@ var init_agent_display_names = __esm(() => {
|
|
|
2840
2840
|
"multimodal-looker": "multimodal-looker",
|
|
2841
2841
|
"council-member": "council-member"
|
|
2842
2842
|
};
|
|
2843
|
+
AGENT_LIST_SORT_PREFIXES = {
|
|
2844
|
+
sisyphus: "\u200B",
|
|
2845
|
+
hephaestus: "\u200B\u200B",
|
|
2846
|
+
prometheus: "\u200B\u200B\u200B",
|
|
2847
|
+
atlas: "\u200B\u200B\u200B\u200B"
|
|
2848
|
+
};
|
|
2843
2849
|
INVISIBLE_AGENT_CHARACTERS_REGEX = /[\u200B\u200C\u200D\uFEFF]/g;
|
|
2844
2850
|
REVERSE_DISPLAY_NAMES = Object.fromEntries(Object.entries(AGENT_DISPLAY_NAMES).map(([key, displayName]) => [displayName.toLowerCase(), key]));
|
|
2845
2851
|
LEGACY_DISPLAY_NAMES = {
|
|
@@ -82010,7 +82016,9 @@ var BuiltinCommandNameSchema = z12.enum([
|
|
|
82010
82016
|
"refactor",
|
|
82011
82017
|
"start-work",
|
|
82012
82018
|
"stop-continuation",
|
|
82013
|
-
"
|
|
82019
|
+
"handoff",
|
|
82020
|
+
"remove-ai-slops",
|
|
82021
|
+
"open-plan"
|
|
82014
82022
|
]);
|
|
82015
82023
|
// src/config/schema/dynamic-context-pruning.ts
|
|
82016
82024
|
import { z as z13 } from "zod";
|
|
@@ -130996,7 +131004,7 @@ class PostHog extends PostHogBackendClient {
|
|
|
130996
131004
|
// package.json
|
|
130997
131005
|
var package_default = {
|
|
130998
131006
|
name: "@skj1724/oh-my-opencode",
|
|
130999
|
-
version: "3.18.
|
|
131007
|
+
version: "3.18.14",
|
|
131000
131008
|
description: "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
131001
131009
|
main: "./dist/index.js",
|
|
131002
131010
|
types: "dist/index.d.ts",
|
|
@@ -131085,7 +131093,7 @@ var package_default = {
|
|
|
131085
131093
|
"oh-my-opencode-linux-x64-baseline": "3.17.4",
|
|
131086
131094
|
"oh-my-opencode-linux-x64-musl": "3.17.4",
|
|
131087
131095
|
"oh-my-opencode-linux-x64-musl-baseline": "3.17.4",
|
|
131088
|
-
"
|
|
131096
|
+
"oh-my-opencode-windows-x64": "3.17.4",
|
|
131089
131097
|
"oh-my-opencode-windows-x64-baseline": "3.17.4"
|
|
131090
131098
|
},
|
|
131091
131099
|
overrides: {},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skj1724/oh-my-opencode",
|
|
3
|
-
"version": "3.18.
|
|
3
|
+
"version": "3.18.14",
|
|
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",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"oh-my-opencode-linux-x64-baseline": "3.17.4",
|
|
90
90
|
"oh-my-opencode-linux-x64-musl": "3.17.4",
|
|
91
91
|
"oh-my-opencode-linux-x64-musl-baseline": "3.17.4",
|
|
92
|
-
"
|
|
92
|
+
"oh-my-opencode-windows-x64": "3.17.4",
|
|
93
93
|
"oh-my-opencode-windows-x64-baseline": "3.17.4"
|
|
94
94
|
},
|
|
95
95
|
"overrides": {},
|