Reorganize: Move all skills to skills/ folder
- 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>
This commit is contained in:
12
skills/plugins/claude-code-safety-net/dist/core/config.d.ts
vendored
Normal file
12
skills/plugins/claude-code-safety-net/dist/core/config.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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 };
|
||||
Reference in New Issue
Block a user