glooit 0.5.0 → 0.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,8 @@ export declare class ConfigLoader {
4
4
  static load(customPath?: string): Promise<Config>;
5
5
  private static findConfigFile;
6
6
  static validate(customPath?: string): Promise<boolean>;
7
+ private static validateAndApplyDefaults;
8
+ private static validateRule;
7
9
  static createInitialConfig(): string;
8
10
  static createTypedConfig(): string;
9
11
  static createPlainConfig(): string;
@@ -4,6 +4,8 @@ export declare class GitIgnoreManager {
4
4
  private gitignorePath;
5
5
  private marker;
6
6
  constructor(config: Config);
7
+ private getAgentName;
8
+ private getCustomPath;
7
9
  updateGitIgnore(): Promise<void>;
8
10
  cleanupGitIgnore(): Promise<void>;
9
11
  private collectGeneratedPaths;
@@ -4,7 +4,6 @@ export declare class AIRulesCore {
4
4
  private distributor;
5
5
  private backupManager;
6
6
  private gitIgnoreManager;
7
- private hookManager;
8
7
  constructor(config: Config);
9
8
  sync(): Promise<void>;
10
9
  createBackup(): Promise<string>;
@@ -17,5 +16,7 @@ export declare class AIRulesCore {
17
16
  validate(): Promise<boolean>;
18
17
  private distributeMcps;
19
18
  private validateMcpNames;
19
+ private getAgentName;
20
+ private getCustomPath;
20
21
  collectAllGeneratedPaths(): string[];
21
22
  }