const agentDefinition = {
  id: "gpt5-thinker",
  displayName: "GPT-5 Quick Thinker",
  publisher: "codebuff",
  version: "0.0.3",
  model: "openai/gpt-5",
  reasoningOptions: {
    effort: "low",
    enabled: true,
    exclude: false
  },
  toolNames: [],
  spawnableAgents: [],
  inputSchema: {
    prompt: {
      type: "string",
      description: "The topic or question to think about deeply and thoroughly"
    }
  },
  includeMessageHistory: true,
  outputMode: "last_message",
  spawnerPrompt: `Spawn this agent when you need quick thinking on a topic using GPT-5 with focused reasoning effort.`,
  systemPrompt: ``,
  instructionsPrompt: `You are a deep thinker using GPT-5 with focused reasoning. Think hard about the given prompt and provide insightful analysis. Dive deep into the topic, explore multiple angles, and generate meaningful insights. Your goal is to offer a perspective that contributes valuable depth to the overall analysis.`,
  stepPrompt: ``
}