chore: include pre-built dist for github install
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
import type { AgentConfig } from "@opencode-ai/sdk";
|
||||
import type { AgentPromptMetadata } from "../types";
|
||||
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
||||
export type HephaestusPromptSource = "gpt-5-4" | "gpt-5-3-codex" | "gpt";
|
||||
export declare function getHephaestusPromptSource(model?: string): HephaestusPromptSource;
|
||||
export interface HephaestusContext {
|
||||
model?: string;
|
||||
availableAgents?: AvailableAgent[];
|
||||
availableTools?: AvailableTool[];
|
||||
availableSkills?: AvailableSkill[];
|
||||
availableCategories?: AvailableCategory[];
|
||||
useTaskSystem?: boolean;
|
||||
}
|
||||
export declare function getHephaestusPrompt(model?: string, useTaskSystem?: boolean): string;
|
||||
export declare function createHephaestusAgent(model: string, availableAgents?: AvailableAgent[], availableToolNames?: string[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): AgentConfig;
|
||||
export declare namespace createHephaestusAgent {
|
||||
var mode: "all";
|
||||
}
|
||||
export declare const hephaestusPromptMetadata: AgentPromptMetadata;
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/** GPT-5.3 Codex optimized Hephaestus prompt */
|
||||
import type { AgentConfig } from "@opencode-ai/sdk";
|
||||
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
||||
/**
|
||||
* Hephaestus - The Autonomous Deep Worker
|
||||
*
|
||||
* Named after the Greek god of forge, fire, metalworking, and craftsmanship.
|
||||
* Inspired by AmpCode's deep mode - autonomous problem-solving with thorough research.
|
||||
*
|
||||
* Powered by GPT Codex models.
|
||||
* Optimized for:
|
||||
* - Goal-oriented autonomous execution (not step-by-step instructions)
|
||||
* - Deep exploration before decisive action
|
||||
* - Active use of explore/librarian agents for comprehensive context
|
||||
* - End-to-end task completion without premature stopping
|
||||
*/
|
||||
export declare function buildHephaestusPrompt(availableAgents?: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
|
||||
export declare function createHephaestusAgent(model: string, availableAgents?: AvailableAgent[], availableToolNames?: string[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): AgentConfig;
|
||||
export declare namespace createHephaestusAgent {
|
||||
var mode: "all";
|
||||
}
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
/** GPT-5.4 optimized Hephaestus prompt */
|
||||
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
||||
export declare function buildHephaestusPrompt(availableAgents?: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
/** Generic GPT Hephaestus prompt — fallback for GPT models without a model-specific variant */
|
||||
import type { AvailableAgent, AvailableTool, AvailableSkill, AvailableCategory } from "../dynamic-agent-prompt-builder";
|
||||
export declare function buildHephaestusPrompt(availableAgents?: AvailableAgent[], availableTools?: AvailableTool[], availableSkills?: AvailableSkill[], availableCategories?: AvailableCategory[], useTaskSystem?: boolean): string;
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
export { createHephaestusAgent, getHephaestusPrompt, getHephaestusPromptSource, hephaestusPromptMetadata, } from "./agent";
|
||||
export type { HephaestusContext, HephaestusPromptSource } from "./agent";
|
||||
Reference in New Issue
Block a user