@tdsoft-tech/aikit 0.1.17 → 0.1.18

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.
package/dist/index.d.ts CHANGED
@@ -360,6 +360,7 @@ interface Command {
360
360
  content: string;
361
361
  filePath: string;
362
362
  }
363
+
363
364
  /**
364
365
  * Command Runner - Manages and executes slash commands
365
366
  */
@@ -798,7 +799,7 @@ declare class BeadsIntegration {
798
799
  */
799
800
  initLocal(): Promise<boolean>;
800
801
  /**
801
- * Setup git hooks for Beads integration
802
+ * Setup git hooks
802
803
  */
803
804
  setupGitHooks(): Promise<boolean>;
804
805
  /**
@@ -1012,6 +1013,22 @@ declare const paths: {
1012
1013
  * Get memory directory
1013
1014
  */
1014
1015
  memory(configPath: string): string;
1016
+ /**
1017
+ * Get the Claude Code CLI configuration directory
1018
+ */
1019
+ claudeConfig(scope?: "user" | "project"): string;
1020
+ /**
1021
+ * Get Claude Code CLI commands directory
1022
+ */
1023
+ claudeCommands(project?: boolean): string;
1024
+ /**
1025
+ * Get Claude Code CLI skills directory
1026
+ */
1027
+ claudeSkills(project?: boolean): string;
1028
+ /**
1029
+ * Get Claude Code CLI agents directory
1030
+ */
1031
+ claudeAgents(project?: boolean): string;
1015
1032
  };
1016
1033
 
1017
1034
  /**