@skj1724/oh-my-opencode 3.18.13 → 3.18.15
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.15",
|
|
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",
|
|
@@ -53810,14 +53816,6 @@ var package_default = {
|
|
|
53810
53816
|
],
|
|
53811
53817
|
author: "YeonGyu-Kim",
|
|
53812
53818
|
license: "SUL-1.0",
|
|
53813
|
-
repository: {
|
|
53814
|
-
type: "git",
|
|
53815
|
-
url: "git+https://github.com/code-yeongyu/oh-my-openagent.git"
|
|
53816
|
-
},
|
|
53817
|
-
bugs: {
|
|
53818
|
-
url: "https://github.com/code-yeongyu/oh-my-openagent/issues"
|
|
53819
|
-
},
|
|
53820
|
-
homepage: "https://github.com/code-yeongyu/oh-my-openagent#readme",
|
|
53821
53819
|
dependencies: {
|
|
53822
53820
|
"@ast-grep/cli": "^0.41.1",
|
|
53823
53821
|
"@ast-grep/napi": "^0.41.1",
|
|
@@ -74088,7 +74086,9 @@ var BuiltinCommandNameSchema = exports_external.enum([
|
|
|
74088
74086
|
"refactor",
|
|
74089
74087
|
"start-work",
|
|
74090
74088
|
"stop-continuation",
|
|
74091
|
-
"
|
|
74089
|
+
"handoff",
|
|
74090
|
+
"remove-ai-slops",
|
|
74091
|
+
"open-plan"
|
|
74092
74092
|
]);
|
|
74093
74093
|
// src/config/schema/dynamic-context-pruning.ts
|
|
74094
74094
|
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.15",
|
|
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",
|
|
@@ -131042,14 +131050,6 @@ var package_default = {
|
|
|
131042
131050
|
],
|
|
131043
131051
|
author: "YeonGyu-Kim",
|
|
131044
131052
|
license: "SUL-1.0",
|
|
131045
|
-
repository: {
|
|
131046
|
-
type: "git",
|
|
131047
|
-
url: "git+https://github.com/code-yeongyu/oh-my-openagent.git"
|
|
131048
|
-
},
|
|
131049
|
-
bugs: {
|
|
131050
|
-
url: "https://github.com/code-yeongyu/oh-my-openagent/issues"
|
|
131051
|
-
},
|
|
131052
|
-
homepage: "https://github.com/code-yeongyu/oh-my-openagent#readme",
|
|
131053
131053
|
dependencies: {
|
|
131054
131054
|
"@ast-grep/cli": "^0.41.1",
|
|
131055
131055
|
"@ast-grep/napi": "^0.41.1",
|
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.15",
|
|
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",
|
|
@@ -46,14 +46,6 @@
|
|
|
46
46
|
],
|
|
47
47
|
"author": "YeonGyu-Kim",
|
|
48
48
|
"license": "SUL-1.0",
|
|
49
|
-
"repository": {
|
|
50
|
-
"type": "git",
|
|
51
|
-
"url": "git+https://github.com/code-yeongyu/oh-my-openagent.git"
|
|
52
|
-
},
|
|
53
|
-
"bugs": {
|
|
54
|
-
"url": "https://github.com/code-yeongyu/oh-my-openagent/issues"
|
|
55
|
-
},
|
|
56
|
-
"homepage": "https://github.com/code-yeongyu/oh-my-openagent#readme",
|
|
57
49
|
"dependencies": {
|
|
58
50
|
"@ast-grep/cli": "^0.41.1",
|
|
59
51
|
"@ast-grep/napi": "^0.41.1",
|