@tdsoft-tech/aikit 0.1.17 → 0.1.19
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/CHANGELOG.md +9 -0
- package/dist/cli.js +2801 -358
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +1446 -109
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +1446 -109
- package/dist/mcp-server.js.map +1 -1
- package/package.json +5 -1
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
|
|
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
|
/**
|