import { AgentConfig } from './types.js'; /** * Gemini CLI agent configuration. * * Per the official Gemini CLI documentation, skills are discovered from: * 1. Workspace skills: .gemini/skills/ or .agents/skills/ (project-level) * 2. User skills: ~/.gemini/skills/ or ~/.agents/skills/ (global) * 3. Extension skills: bundled within installed extensions * * For global installation, we use ~/.gemini/skills/ which is the documented * user-level skills directory. There is NO profile subdirectory in the * skill discovery path — ~/.gemini/antigravity/skills/ is NOT a valid * skill location. * * Reference: https://geminicli.com/docs/cli/skills/ */ export declare const geminiAgent: AgentConfig;