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
+21
View File
@@ -0,0 +1,21 @@
import type { AgentConfig } from "@opencode-ai/sdk";
import type { AgentPromptMetadata } from "./types";
/**
* Metis - Plan Consultant Agent
*
* Named after the Greek goddess of wisdom, prudence, and deep counsel.
* Metis analyzes user requests BEFORE planning to prevent AI failures.
*
* Core responsibilities:
* - Identify hidden intentions and unstated requirements
* - Detect ambiguities that could derail implementation
* - Flag potential AI-slop patterns (over-engineering, scope creep)
* - Generate clarifying questions for the user
* - Prepare directives for the planner agent
*/
export declare const METIS_SYSTEM_PROMPT: string;
export declare function createMetisAgent(model: string): AgentConfig;
export declare namespace createMetisAgent {
var mode: "subagent";
}
export declare const metisPromptMetadata: AgentPromptMetadata;