- Created skills/ directory - Moved 272 skills to skills/ subfolder - Kept agents/ at root level - Kept installation scripts and docs at root level Repository structure: - skills/ - All 272 skills from skills.sh - agents/ - Agent definitions - *.sh, *.ps1 - Installation scripts - README.md, etc. - Documentation Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
620 B
TypeScript
13 lines
620 B
TypeScript
import { type Config, type ValidationResult } from '../types.ts';
|
|
export interface LoadConfigOptions {
|
|
/** Override user config directory (for testing) */
|
|
userConfigDir?: string;
|
|
}
|
|
export declare function loadConfig(cwd?: string, options?: LoadConfigOptions): Config;
|
|
/** @internal Exported for testing */
|
|
export declare function validateConfig(config: unknown): ValidationResult;
|
|
export declare function validateConfigFile(path: string): ValidationResult;
|
|
export declare function getUserConfigPath(): string;
|
|
export declare function getProjectConfigPath(cwd?: string): string;
|
|
export type { ValidationResult };
|