22 lines
855 B
TypeScript
22 lines
855 B
TypeScript
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;
|