@reinamaccredy/oh-my-opencode 3.0.0-beta.9 → 3.0.1-beta.0
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/agents/types.d.ts +2 -0
- package/dist/cli/config-manager.d.ts +3 -17
- package/dist/cli/index.js +384 -357
- package/dist/cli/types.d.ts +3 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/config/schema.d.ts +215 -181
- 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/boulder-state/index.d.ts +1 -0
- package/dist/features/boulder-state/unified-state.d.ts +86 -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/features/workflow-engine/contracts/v1/types.d.ts +9 -0
- package/dist/hooks/background-notification/index.d.ts +10 -0
- package/dist/hooks/index.d.ts +3 -0
- package/dist/hooks/maestro-sisyphus-bridge/constants.d.ts +9 -0
- package/dist/hooks/maestro-sisyphus-bridge/index.d.ts +53 -0
- package/dist/hooks/tdd-enforcement/constants.d.ts +16 -0
- package/dist/hooks/tdd-enforcement/index.d.ts +54 -0
- package/dist/index.js +1952 -6032
- package/dist/shared/migration.d.ts +13 -0
- package/dist/tools/skill/tools.d.ts +1 -7
- package/dist/tools/slashcommand/tools.d.ts +1 -7
- package/package.json +3 -6
- package/dist/auth/antigravity/accounts.d.ts +0 -40
- package/dist/auth/antigravity/accounts.test.d.ts +0 -1
- package/dist/auth/antigravity/browser.d.ts +0 -27
- package/dist/auth/antigravity/browser.test.d.ts +0 -1
- package/dist/auth/antigravity/cli.d.ts +0 -2
- package/dist/auth/antigravity/cli.test.d.ts +0 -1
- package/dist/auth/antigravity/constants.d.ts +0 -98
- package/dist/auth/antigravity/constants.test.d.ts +0 -1
- package/dist/auth/antigravity/fetch.d.ts +0 -69
- package/dist/auth/antigravity/index.d.ts +0 -13
- package/dist/auth/antigravity/integration.test.d.ts +0 -10
- package/dist/auth/antigravity/message-converter.d.ts +0 -54
- package/dist/auth/antigravity/oauth.d.ts +0 -51
- package/dist/auth/antigravity/oauth.test.d.ts +0 -1
- package/dist/auth/antigravity/plugin.d.ts +0 -54
- package/dist/auth/antigravity/project.d.ts +0 -10
- package/dist/auth/antigravity/request.d.ts +0 -116
- package/dist/auth/antigravity/request.test.d.ts +0 -1
- package/dist/auth/antigravity/response.d.ts +0 -137
- package/dist/auth/antigravity/storage.d.ts +0 -5
- package/dist/auth/antigravity/storage.test.d.ts +0 -1
- package/dist/auth/antigravity/thinking.d.ts +0 -278
- package/dist/auth/antigravity/thinking.test.d.ts +0 -10
- package/dist/auth/antigravity/thought-signature-store.d.ts +0 -52
- package/dist/auth/antigravity/token.d.ts +0 -38
- package/dist/auth/antigravity/token.test.d.ts +0 -1
- package/dist/auth/antigravity/tools.d.ts +0 -119
- package/dist/auth/antigravity/types.d.ts +0 -229
- package/dist/cli/commands/auth.d.ts +0 -2
- package/dist/cli/config-manager.test.d.ts +0 -1
- package/dist/google-auth.d.ts +0 -3
- package/dist/google-auth.js +0 -3871
package/dist/agents/types.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ export interface AgentPromptMetadata {
|
|
|
40
40
|
keyTrigger?: string;
|
|
41
41
|
}
|
|
42
42
|
export declare function isGptModel(model: string): boolean;
|
|
43
|
+
export declare function isProxyPalGptModel(model: string): boolean;
|
|
44
|
+
export declare function getGptReasoningEffort(model: string): "medium" | "xhigh";
|
|
43
45
|
export type BuiltinAgentName = "Sisyphus" | "oracle" | "librarian" | "explore" | "frontend-ui-ux-engineer" | "document-writer" | "multimodal-looker" | "Metis (Plan Consultant)" | "Momus (Plan Reviewer)" | "orchestrator-sisyphus";
|
|
44
46
|
export type OverridableAgentName = "build" | BuiltinAgentName;
|
|
45
47
|
export type AgentName = BuiltinAgentName;
|
|
@@ -27,25 +27,11 @@ export interface BunInstallResult {
|
|
|
27
27
|
}
|
|
28
28
|
export declare function runBunInstall(): Promise<boolean>;
|
|
29
29
|
export declare function runBunInstallWithDetails(): Promise<BunInstallResult>;
|
|
30
|
-
/**
|
|
31
|
-
* Antigravity Provider Configuration
|
|
32
|
-
*
|
|
33
|
-
* IMPORTANT: Model names MUST use `antigravity-` prefix for stability.
|
|
34
|
-
*
|
|
35
|
-
* The opencode-antigravity-auth plugin supports two naming conventions:
|
|
36
|
-
* - `antigravity-gemini-3-pro-high` (RECOMMENDED, explicit Antigravity quota routing)
|
|
37
|
-
* - `gemini-3-pro-high` (LEGACY, backward compatible but may break in future)
|
|
38
|
-
*
|
|
39
|
-
* Legacy names rely on Gemini CLI using `-preview` suffix for disambiguation.
|
|
40
|
-
* If Google removes `-preview`, legacy names may route to wrong quota.
|
|
41
|
-
*
|
|
42
|
-
* @see https://github.com/NoeFabris/opencode-antigravity-auth#migration-guide-v127
|
|
43
|
-
*/
|
|
44
30
|
export declare const ANTIGRAVITY_PROVIDER_CONFIG: {
|
|
45
31
|
google: {
|
|
46
32
|
name: string;
|
|
47
33
|
models: {
|
|
48
|
-
"
|
|
34
|
+
"gemini-3-pro-high": {
|
|
49
35
|
name: string;
|
|
50
36
|
thinking: boolean;
|
|
51
37
|
attachment: boolean;
|
|
@@ -58,7 +44,7 @@ export declare const ANTIGRAVITY_PROVIDER_CONFIG: {
|
|
|
58
44
|
output: string[];
|
|
59
45
|
};
|
|
60
46
|
};
|
|
61
|
-
"
|
|
47
|
+
"gemini-3-pro-low": {
|
|
62
48
|
name: string;
|
|
63
49
|
thinking: boolean;
|
|
64
50
|
attachment: boolean;
|
|
@@ -71,7 +57,7 @@ export declare const ANTIGRAVITY_PROVIDER_CONFIG: {
|
|
|
71
57
|
output: string[];
|
|
72
58
|
};
|
|
73
59
|
};
|
|
74
|
-
"
|
|
60
|
+
"gemini-3-flash": {
|
|
75
61
|
name: string;
|
|
76
62
|
attachment: boolean;
|
|
77
63
|
limit: {
|