chore: include pre-built dist for github install

This commit is contained in:
Robin Mordasiewicz
2026-03-14 04:56:50 +00:00
parent a7f0a4cf46
commit bce8ff3a75
1011 changed files with 150081 additions and 0 deletions
+19
View File
@@ -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
View File
@@ -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";
}
+3
View File
@@ -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;
+3
View File
@@ -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;
+2
View File
@@ -0,0 +1,2 @@
export { createHephaestusAgent, getHephaestusPrompt, getHephaestusPromptSource, hephaestusPromptMetadata, } from "./agent";
export type { HephaestusContext, HephaestusPromptSource } from "./agent";