/** * Shared Constants / 共享常量 * Defines constants used throughout the plugin * 定义插件中使用的常量 */ export declare const PLUGIN_NAME = "opespro-opencode"; export declare const STORAGE_DIR_NAME = "opespro-opencode"; export declare const DEFAULT_BACKGROUND_TASK_TTL_MS: number; export declare const DEFAULT_BACKGROUND_STALE_TIMEOUT_MS = 180000; export declare const DEFAULT_BACKGROUND_POLL_INTERVAL_MS = 2000; export declare const DEFAULT_BACKGROUND_MAX_CONCURRENCY = 5; /** Plugin self-managed workspace directory / 插件自管工作空间目录 */ export declare const OPOP_DIR_NAME = ".opop"; /** OpenCode skills directory / OpenCode 技能目录 */ export declare const SKILLS_DIR_NAME = ".opencode/skills"; export declare const RULES_DIRS: string[]; export declare const STANDALONE_RULE_FILES: string[]; export declare const VALID_RULE_EXTENSIONS: string[]; export declare const EDIT_ERROR_PATTERNS: readonly ["oldString and newString must be different", "oldString not found", "oldString found multiple times"]; export declare const TASK_ERROR_PATTERNS: Record; export declare const TASK_TOOLS: string[]; export declare const DIRECT_EDIT_TOOLS: string[];