@truenine/memory-sync-cli 2026.10120.117 → 2026.10125.0
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/globals/index.d.mts +5 -0
- package/dist/globals/index.mjs +1 -1
- package/dist/index.mjs +56 -56
- package/package.json +1 -1
package/dist/globals/index.d.mts
CHANGED
|
@@ -30,6 +30,8 @@ interface ToolReferences {
|
|
|
30
30
|
todolistWrite?: string;
|
|
31
31
|
/** Grep/search tool name */
|
|
32
32
|
grep?: string;
|
|
33
|
+
/** List directory tool name */
|
|
34
|
+
listDirectory?: string;
|
|
33
35
|
/** Allow custom tool references */
|
|
34
36
|
[key: string]: string | undefined;
|
|
35
37
|
}
|
|
@@ -46,12 +48,14 @@ declare const ToolPresets: {
|
|
|
46
48
|
readonly executeCommand: "execute_command";
|
|
47
49
|
readonly todolistWrite: "todolist_write";
|
|
48
50
|
readonly grep: "grep";
|
|
51
|
+
readonly listDirectory: "list_directory";
|
|
49
52
|
}; /** Claude Code CLI tool names (PascalCase) */
|
|
50
53
|
readonly claudeCode: {
|
|
51
54
|
readonly readFile: "Read";
|
|
52
55
|
readonly writeFile: "Write";
|
|
53
56
|
readonly executeCommand: "Execute";
|
|
54
57
|
readonly todolistWrite: "TodoWrite";
|
|
58
|
+
readonly listDirectory: "List";
|
|
55
59
|
}; /** Kiro tool names */
|
|
56
60
|
readonly kiro: {
|
|
57
61
|
readonly websearch: "remote_web_search";
|
|
@@ -61,6 +65,7 @@ declare const ToolPresets: {
|
|
|
61
65
|
readonly executeCommand: "executeBash";
|
|
62
66
|
readonly todolistWrite: "todolistWrite";
|
|
63
67
|
readonly grep: "grepSearch";
|
|
68
|
+
readonly listDirectory: "listDir";
|
|
64
69
|
};
|
|
65
70
|
};
|
|
66
71
|
/**
|
package/dist/globals/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e={default:{websearch:`web_search`,webfetch:`web_fetch`,readFile:`read_file`,writeFile:`write_file`,executeCommand:`execute_command`,todolistWrite:`todolist_write`,grep:`grep`},claudeCode:{readFile:`Read`,writeFile:`Write`,executeCommand:`Execute`,todolistWrite:`TodoWrite`},kiro:{websearch:`remote_web_search`,webfetch:`webFetch`,readFile:`readFile`,writeFile:`fsWrite`,executeCommand:`executeBash`,todolistWrite:`todolistWrite`,grep:`grepSearch`}};let t=function(e){return e.Bash=`bash`,e.Zsh=`zsh`,e.Fish=`fish`,e.Sh=`sh`,e.PowerShell=`powershell`,e.Pwsh=`pwsh`,e.Cmd=`cmd`,e.Unknown=`unknown`,e}({}),n=function(e){return e.Win=`win`,e.Mac=`mac`,e.Linux=`linux`,e.Unknown=`unknown`,e}({});export{n as OsKind,t as ShellKind,e as ToolPresets};
|
|
1
|
+
const e={default:{websearch:`web_search`,webfetch:`web_fetch`,readFile:`read_file`,writeFile:`write_file`,executeCommand:`execute_command`,todolistWrite:`todolist_write`,grep:`grep`,listDirectory:`list_directory`},claudeCode:{readFile:`Read`,writeFile:`Write`,executeCommand:`Execute`,todolistWrite:`TodoWrite`,listDirectory:`List`},kiro:{websearch:`remote_web_search`,webfetch:`webFetch`,readFile:`readFile`,writeFile:`fsWrite`,executeCommand:`executeBash`,todolistWrite:`todolistWrite`,grep:`grepSearch`,listDirectory:`listDir`}};let t=function(e){return e.Bash=`bash`,e.Zsh=`zsh`,e.Fish=`fish`,e.Sh=`sh`,e.PowerShell=`powershell`,e.Pwsh=`pwsh`,e.Cmd=`cmd`,e.Unknown=`unknown`,e}({}),n=function(e){return e.Win=`win`,e.Mac=`mac`,e.Linux=`linux`,e.Unknown=`unknown`,e}({});export{n as OsKind,t as ShellKind,e as ToolPresets};
|