@truenine/memory-sync-cli 2026.10208.0 → 2026.10209.12005

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.
@@ -0,0 +1,61 @@
1
+
2
+ //#region ../packages/md-compiler/dist/globals/index.mjs
3
+ /**
4
+ * Tool name presets for different AI tools.
5
+ * Each preset provides tool name mappings specific to that AI tool.
6
+ */
7
+ const ToolPresets = {
8
+ default: {
9
+ websearch: "web_search",
10
+ webfetch: "web_fetch",
11
+ readFile: "read_file",
12
+ writeFile: "write_file",
13
+ executeCommand: "execute_command",
14
+ todolistWrite: "todolist_write",
15
+ grep: "grep",
16
+ listDirectory: "list_directory"
17
+ },
18
+ claudeCode: {
19
+ readFile: "Read",
20
+ writeFile: "Write",
21
+ executeCommand: "Execute",
22
+ todolistWrite: "TodoWrite",
23
+ listDirectory: "List"
24
+ },
25
+ kiro: {
26
+ websearch: "remote_web_search",
27
+ webfetch: "webFetch",
28
+ readFile: "readFile",
29
+ writeFile: "fsWrite",
30
+ executeCommand: "executeBash",
31
+ todolistWrite: "todolistWrite",
32
+ grep: "grepSearch",
33
+ listDirectory: "listDir"
34
+ }
35
+ };
36
+ /**
37
+ * Shell kind enumeration
38
+ */
39
+ let ShellKind = /* @__PURE__ */ function(ShellKind) {
40
+ ShellKind["Bash"] = "bash";
41
+ ShellKind["Zsh"] = "zsh";
42
+ ShellKind["Fish"] = "fish";
43
+ ShellKind["Sh"] = "sh";
44
+ ShellKind["PowerShell"] = "powershell";
45
+ ShellKind["Pwsh"] = "pwsh";
46
+ ShellKind["Cmd"] = "cmd";
47
+ ShellKind["Unknown"] = "unknown";
48
+ return ShellKind;
49
+ }({});
50
+ let OsKind = /* @__PURE__ */ function(OsKind) {
51
+ OsKind["Win"] = "win";
52
+ OsKind["Mac"] = "mac";
53
+ OsKind["Linux"] = "linux";
54
+ OsKind["Unknown"] = "unknown";
55
+ return OsKind;
56
+ }({});
57
+
58
+ //#endregion
59
+ exports.OsKind = OsKind;
60
+ exports.ShellKind = ShellKind;
61
+ exports.ToolPresets = ToolPresets;
@@ -1,3 +1,4 @@
1
+ //#region ../packages/md-compiler/dist/index-Bmuof8O6.d.mts
1
2
  //#region src/globals/index.d.ts
2
3
  /**
3
4
  * // These types are available to users when writing MDX templates. // Global type declarations for MDX expression scope. // src/globals/index.ts
@@ -153,6 +154,6 @@ declare global {
153
154
  'Md.Line': MdLineProps;
154
155
  }
155
156
  }
156
- }
157
+ } //#endregion
157
158
  //#endregion
158
159
  export { EnvironmentContext, MdComponent, MdLineProps, MdProps, MdxGlobalScope, OsInfo, OsKind, ShellKind, ToolPresets, ToolReferences, UserProfile };
@@ -1,3 +1,4 @@
1
+ //#region ../packages/md-compiler/dist/index-Bmuof8O6.d.mts
1
2
  //#region src/globals/index.d.ts
2
3
  /**
3
4
  * // These types are available to users when writing MDX templates. // Global type declarations for MDX expression scope. // src/globals/index.ts
@@ -153,6 +154,6 @@ declare global {
153
154
  'Md.Line': MdLineProps;
154
155
  }
155
156
  }
156
- }
157
+ } //#endregion
157
158
  //#endregion
158
159
  export { EnvironmentContext, MdComponent, MdLineProps, MdProps, MdxGlobalScope, OsInfo, OsKind, ShellKind, ToolPresets, ToolReferences, UserProfile };
@@ -0,0 +1,58 @@
1
+ //#region ../packages/md-compiler/dist/globals/index.mjs
2
+ /**
3
+ * Tool name presets for different AI tools.
4
+ * Each preset provides tool name mappings specific to that AI tool.
5
+ */
6
+ const ToolPresets = {
7
+ default: {
8
+ websearch: "web_search",
9
+ webfetch: "web_fetch",
10
+ readFile: "read_file",
11
+ writeFile: "write_file",
12
+ executeCommand: "execute_command",
13
+ todolistWrite: "todolist_write",
14
+ grep: "grep",
15
+ listDirectory: "list_directory"
16
+ },
17
+ claudeCode: {
18
+ readFile: "Read",
19
+ writeFile: "Write",
20
+ executeCommand: "Execute",
21
+ todolistWrite: "TodoWrite",
22
+ listDirectory: "List"
23
+ },
24
+ kiro: {
25
+ websearch: "remote_web_search",
26
+ webfetch: "webFetch",
27
+ readFile: "readFile",
28
+ writeFile: "fsWrite",
29
+ executeCommand: "executeBash",
30
+ todolistWrite: "todolistWrite",
31
+ grep: "grepSearch",
32
+ listDirectory: "listDir"
33
+ }
34
+ };
35
+ /**
36
+ * Shell kind enumeration
37
+ */
38
+ let ShellKind = /* @__PURE__ */ function(ShellKind) {
39
+ ShellKind["Bash"] = "bash";
40
+ ShellKind["Zsh"] = "zsh";
41
+ ShellKind["Fish"] = "fish";
42
+ ShellKind["Sh"] = "sh";
43
+ ShellKind["PowerShell"] = "powershell";
44
+ ShellKind["Pwsh"] = "pwsh";
45
+ ShellKind["Cmd"] = "cmd";
46
+ ShellKind["Unknown"] = "unknown";
47
+ return ShellKind;
48
+ }({});
49
+ let OsKind = /* @__PURE__ */ function(OsKind) {
50
+ OsKind["Win"] = "win";
51
+ OsKind["Mac"] = "mac";
52
+ OsKind["Linux"] = "linux";
53
+ OsKind["Unknown"] = "unknown";
54
+ return OsKind;
55
+ }({});
56
+
57
+ //#endregion
58
+ export { OsKind, ShellKind, ToolPresets };