@gotza02/sequential-thinking 2026.2.30 → 2026.2.32
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/README.md +1 -0
- package/SYSTEM_INSTRUCTION.md +8 -1
- package/dist/codestore.d.ts +102 -2
- package/dist/codestore.js +499 -17
- package/dist/graph.d.ts +10 -1
- package/dist/graph.js +471 -93
- package/dist/http-server.d.ts +15 -0
- package/dist/http-server.js +732 -70
- package/dist/lib.js +84 -28
- package/dist/notes.d.ts +39 -2
- package/dist/notes.js +233 -24
- package/dist/system_test.js +1 -1
- package/dist/tools/codestore.js +1 -1
- package/dist/tools/filesystem.js +359 -40
- package/dist/tools/thinking.js +7 -1
- package/package.json +1 -1
package/dist/graph.d.ts
CHANGED
|
@@ -9,10 +9,12 @@ export declare class ProjectKnowledgeGraph {
|
|
|
9
9
|
private rootDir;
|
|
10
10
|
private cache;
|
|
11
11
|
private cachePath;
|
|
12
|
+
private configResolver;
|
|
13
|
+
private configHash;
|
|
14
|
+
private getConcurrencyLimit;
|
|
12
15
|
constructor();
|
|
13
16
|
/**
|
|
14
17
|
* Force rebuild the graph by clearing cache first.
|
|
15
|
-
* Use this when cache seems stale or files are not detected properly.
|
|
16
18
|
*/
|
|
17
19
|
forceRebuild(rootDir: string): Promise<{
|
|
18
20
|
nodeCount: number;
|
|
@@ -29,8 +31,13 @@ export declare class ProjectKnowledgeGraph {
|
|
|
29
31
|
private loadCache;
|
|
30
32
|
private saveCache;
|
|
31
33
|
private getAllFiles;
|
|
34
|
+
private isMonorepoRoot;
|
|
32
35
|
private parseFile;
|
|
33
36
|
private parseTypeScript;
|
|
37
|
+
private parsePython;
|
|
38
|
+
private parseGo;
|
|
39
|
+
private parseRust;
|
|
40
|
+
private parseJavaLike;
|
|
34
41
|
private parseGeneric;
|
|
35
42
|
private linkFileNodes;
|
|
36
43
|
private resolvePath;
|
|
@@ -51,6 +58,8 @@ export declare class ProjectKnowledgeGraph {
|
|
|
51
58
|
getSummary(): {
|
|
52
59
|
root: string;
|
|
53
60
|
fileCount: number;
|
|
61
|
+
configHash: string;
|
|
62
|
+
aliasCount: number;
|
|
54
63
|
mostReferencedFiles: {
|
|
55
64
|
file: string;
|
|
56
65
|
referencedBy: number;
|