oh-my-opencode 3.2.3 → 3.2.4
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/atlas/utils.d.ts +1 -1
- package/dist/agents/dynamic-agent-prompt-builder.d.ts +6 -0
- package/dist/cli/doctor/checks/model-resolution.d.ts +2 -0
- package/dist/cli/index.js +2381 -3495
- package/dist/config/schema.d.ts +80 -55
- package/dist/features/background-agent/manager.d.ts +2 -0
- package/dist/features/boulder-state/storage.d.ts +1 -1
- package/dist/features/boulder-state/types.d.ts +2 -0
- package/dist/features/claude-tasks/storage.d.ts +2 -0
- package/dist/hooks/auto-update-checker/constants.d.ts +1 -1
- package/dist/hooks/category-skill-reminder/index.d.ts +2 -1
- package/dist/hooks/compaction-context-injector/index.d.ts +1 -8
- package/dist/hooks/index.d.ts +2 -1
- package/dist/hooks/write-existing-file-guard/index.d.ts +2 -0
- package/dist/index.js +2660 -15706
- package/dist/plugin-state.d.ts +0 -1
- package/dist/shared/connected-providers-cache.d.ts +8 -1
- package/dist/shared/disabled-tools.d.ts +2 -0
- package/dist/shared/index.d.ts +1 -0
- package/dist/shared/migration.d.ts +12 -0
- package/dist/shared/model-availability.d.ts +2 -1
- package/dist/shared/model-requirements.d.ts +1 -0
- package/dist/shared/port-utils.d.ts +9 -0
- package/dist/tools/delegate-task/constants.d.ts +5 -1
- package/dist/tools/delegate-task/types.d.ts +5 -0
- package/dist/tools/look-at/types.d.ts +2 -1
- package/dist/tools/lsp/client.d.ts +4 -0
- package/package.json +8 -8
- package/dist/shared/ollama-ndjson-parser.d.ts +0 -108
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* default (Claude-optimized) and GPT-optimized prompts.
|
|
6
6
|
*/
|
|
7
7
|
import type { CategoryConfig } from "../../config/schema";
|
|
8
|
-
import type
|
|
8
|
+
import { type AvailableAgent, type AvailableSkill } from "../dynamic-agent-prompt-builder";
|
|
9
9
|
export declare const getCategoryDescription: (name: string, userCategories?: Record<string, CategoryConfig>) => string;
|
|
10
10
|
export declare function buildAgentSelectionSection(agents: AvailableAgent[]): string;
|
|
11
11
|
export declare function buildCategorySection(userCategories?: Record<string, CategoryConfig>): string;
|
|
@@ -16,6 +16,7 @@ export interface AvailableSkill {
|
|
|
16
16
|
export interface AvailableCategory {
|
|
17
17
|
name: string;
|
|
18
18
|
description: string;
|
|
19
|
+
model?: string;
|
|
19
20
|
}
|
|
20
21
|
export declare function categorizeTools(toolNames: string[]): AvailableTool[];
|
|
21
22
|
export declare function buildKeyTriggersSection(agents: AvailableAgent[], _skills?: AvailableSkill[]): string;
|
|
@@ -23,6 +24,11 @@ export declare function buildToolSelectionTable(agents: AvailableAgent[], tools?
|
|
|
23
24
|
export declare function buildExploreSection(agents: AvailableAgent[]): string;
|
|
24
25
|
export declare function buildLibrarianSection(agents: AvailableAgent[]): string;
|
|
25
26
|
export declare function buildDelegationTable(agents: AvailableAgent[]): string;
|
|
27
|
+
/**
|
|
28
|
+
* Renders the "User-Installed Skills (HIGH PRIORITY)" block used across multiple agent prompts.
|
|
29
|
+
* Extracted to avoid duplication between buildCategorySkillsDelegationGuide, buildSkillsSection, etc.
|
|
30
|
+
*/
|
|
31
|
+
export declare function formatCustomSkillsBlock(customRows: string[], customSkills: AvailableSkill[], headerLevel?: "####" | "**"): string;
|
|
26
32
|
export declare function buildCategorySkillsDelegationGuide(categories: AvailableCategory[], skills: AvailableSkill[]): string;
|
|
27
33
|
export declare function buildOracleSection(agents: AvailableAgent[]): string;
|
|
28
34
|
export declare function buildHardBlocksSection(): string;
|
|
@@ -4,6 +4,7 @@ export interface AgentResolutionInfo {
|
|
|
4
4
|
name: string;
|
|
5
5
|
requirement: ModelRequirement;
|
|
6
6
|
userOverride?: string;
|
|
7
|
+
userVariant?: string;
|
|
7
8
|
effectiveModel: string;
|
|
8
9
|
effectiveResolution: string;
|
|
9
10
|
}
|
|
@@ -11,6 +12,7 @@ export interface CategoryResolutionInfo {
|
|
|
11
12
|
name: string;
|
|
12
13
|
requirement: ModelRequirement;
|
|
13
14
|
userOverride?: string;
|
|
15
|
+
userVariant?: string;
|
|
14
16
|
effectiveModel: string;
|
|
15
17
|
effectiveResolution: string;
|
|
16
18
|
}
|