@reinamaccredy/oh-my-opencode 3.0.0-beta.13 → 3.0.0-beta.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 +3 -2
- package/dist/features/background-agent/index.d.ts +1 -1
- package/dist/features/background-agent/manager.d.ts +10 -0
- package/dist/features/background-agent/types.d.ts +4 -0
- package/dist/features/maestro/hooks/index.d.ts +16 -0
- package/dist/features/maestro/index.d.ts +4 -0
- package/dist/features/maestro/skills/index.d.ts +4 -0
- package/dist/features/maestro/types.d.ts +42 -0
- package/dist/features/maestro/utils/index.d.ts +4 -0
- package/dist/hooks/background-notification/index.d.ts +10 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/index.js +248 -1190
- package/dist/shared/migration.d.ts +4 -0
- package/dist/tools/skill/tools.d.ts +1 -7
- package/dist/tools/slashcommand/tools.d.ts +1 -7
- package/package.json +2 -1
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export declare const AGENT_NAME_MAP: Record<string, string>;
|
|
2
2
|
export declare const HOOK_NAME_MAP: Record<string, string>;
|
|
3
3
|
export declare const GOOGLE_TO_PROXYPAL_MODEL_MAP: Record<string, string>;
|
|
4
|
+
/**
|
|
5
|
+
* LEGACY model to category mapping - only for deprecated models needing migration.
|
|
6
|
+
* WARNING: Do NOT add installer-generated models (proxypal/*) - causes backup loop.
|
|
7
|
+
*/
|
|
4
8
|
export declare const MODEL_TO_CATEGORY_MAP: Record<string, string>;
|
|
5
9
|
export declare function migrateGoogleToProxypalModel(model: string): {
|
|
6
10
|
migrated: string;
|
|
@@ -1,10 +1,4 @@
|
|
|
1
1
|
import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
2
2
|
import type { SkillLoadOptions } from "./types";
|
|
3
3
|
export declare function createSkillTool(options?: SkillLoadOptions): ToolDefinition;
|
|
4
|
-
export declare const skill:
|
|
5
|
-
description: string;
|
|
6
|
-
args: Readonly<{
|
|
7
|
-
[k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
|
|
8
|
-
}>;
|
|
9
|
-
execute(args: Record<string, unknown>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
10
|
-
};
|
|
4
|
+
export declare const skill: ToolDefinition;
|
|
@@ -2,10 +2,4 @@ import { type ToolDefinition } from "@opencode-ai/plugin";
|
|
|
2
2
|
import type { CommandInfo, SlashcommandToolOptions } from "./types";
|
|
3
3
|
export declare function discoverCommandsSync(): CommandInfo[];
|
|
4
4
|
export declare function createSlashcommandTool(options?: SlashcommandToolOptions): ToolDefinition;
|
|
5
|
-
export declare const slashcommand:
|
|
6
|
-
description: string;
|
|
7
|
-
args: Readonly<{
|
|
8
|
-
[k: string]: import("zod/v4/core").$ZodType<unknown, unknown, import("zod/v4/core").$ZodTypeInternals<unknown, unknown>>;
|
|
9
|
-
}>;
|
|
10
|
-
execute(args: Record<string, unknown>, context: import("@opencode-ai/plugin").ToolContext): Promise<string>;
|
|
11
|
-
};
|
|
5
|
+
export declare const slashcommand: ToolDefinition;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reinamaccredy/oh-my-opencode",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.15",
|
|
4
4
|
"description": "Fork of oh-my-opencode with Maestro workflow integration - Multi-Model Orchestration, Parallel Background Agents, Design Phases, and TDD Methodology",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"@openauthjs/openauth": "^0.4.3",
|
|
69
69
|
"@opencode-ai/plugin": "^1.1.1",
|
|
70
70
|
"@opencode-ai/sdk": "^1.1.1",
|
|
71
|
+
"@reinamaccredy/oh-my-opencode": "^3.0.0-beta.13",
|
|
71
72
|
"commander": "^14.0.2",
|
|
72
73
|
"hono": "^4.10.4",
|
|
73
74
|
"js-yaml": "^4.1.1",
|