@tdsoft-tech/aikit 0.1.13 → 0.1.14
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/cli.js +1166 -835
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +11 -2
- package/dist/index.js +1176 -852
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.js +1047 -376
- package/dist/mcp-server.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -498,7 +498,10 @@ interface Tool {
|
|
|
498
498
|
name: string;
|
|
499
499
|
description: string;
|
|
500
500
|
args: Record<string, ToolArg>;
|
|
501
|
-
execute: (args: Record<string, unknown
|
|
501
|
+
execute: (args: Record<string, unknown>, context?: {
|
|
502
|
+
config?: Config;
|
|
503
|
+
toolConfigManager?: any;
|
|
504
|
+
}) => Promise<string>;
|
|
502
505
|
filePath?: string;
|
|
503
506
|
}
|
|
504
507
|
/**
|
|
@@ -747,6 +750,7 @@ interface Bead {
|
|
|
747
750
|
title: string;
|
|
748
751
|
description: string;
|
|
749
752
|
status: 'todo' | 'in-progress' | 'completed' | 'blocked';
|
|
753
|
+
type?: 'feature' | 'pattern' | 'decision' | 'knowledge';
|
|
750
754
|
createdAt: Date;
|
|
751
755
|
updatedAt: Date;
|
|
752
756
|
notes: string[];
|
|
@@ -798,7 +802,7 @@ declare class BeadsIntegration {
|
|
|
798
802
|
*/
|
|
799
803
|
getStatus(): Promise<BeadsStatus>;
|
|
800
804
|
/**
|
|
801
|
-
* List all beads in
|
|
805
|
+
* List all beads in project
|
|
802
806
|
*/
|
|
803
807
|
listBeads(): Promise<Bead[]>;
|
|
804
808
|
/**
|
|
@@ -817,6 +821,10 @@ declare class BeadsIntegration {
|
|
|
817
821
|
* Add note to bead
|
|
818
822
|
*/
|
|
819
823
|
addNote(id: string, note: string): Promise<boolean>;
|
|
824
|
+
/**
|
|
825
|
+
* Update bead type
|
|
826
|
+
*/
|
|
827
|
+
updateBeadType(id: string, type: Bead['type']): Promise<boolean>;
|
|
820
828
|
/**
|
|
821
829
|
* Complete a bead with quality gates
|
|
822
830
|
*/
|
|
@@ -827,6 +835,7 @@ declare class BeadsIntegration {
|
|
|
827
835
|
passed: boolean;
|
|
828
836
|
error?: string;
|
|
829
837
|
}[];
|
|
838
|
+
handoffCreated: boolean;
|
|
830
839
|
}>;
|
|
831
840
|
/**
|
|
832
841
|
* Get current active bead
|