@truenine/memory-sync-cli 2026.10319.10359 → 2026.10322.104
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.d.mts +5 -5
- package/dist/index.d.mts +11 -10
- package/dist/index.mjs +73 -73
- package/dist/plugin-runtime.mjs +57 -57
- package/package.json +17 -17
package/dist/globals.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region ../libraries/md-compiler/dist/index-
|
|
1
|
+
//#region ../libraries/md-compiler/dist/index-CnpERWWo.d.mts
|
|
2
2
|
//#region src/globals/index.d.ts
|
|
3
3
|
/**
|
|
4
4
|
* // These types are available to users when writing MDX templates. // Global type declarations for MDX expression scope. // src/globals/index.ts
|
|
@@ -6,17 +6,19 @@
|
|
|
6
6
|
* @example {profile.name}, {profile.username}
|
|
7
7
|
*/
|
|
8
8
|
interface UserProfile {
|
|
9
|
+
[key: string]: unknown;
|
|
9
10
|
name?: string;
|
|
10
11
|
username?: string;
|
|
11
12
|
gender?: string;
|
|
12
13
|
birthday?: string;
|
|
13
|
-
[key: string]: unknown;
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* Tool references for AI assistants
|
|
17
17
|
* @example {tool.websearch}, {tool.webfetch}, {tool.readFile}
|
|
18
18
|
*/
|
|
19
19
|
interface ToolReferences {
|
|
20
|
+
/** Allow custom tool references */
|
|
21
|
+
[key: string]: string | undefined;
|
|
20
22
|
/** Web search tool name */
|
|
21
23
|
websearch?: string;
|
|
22
24
|
/** Web fetch tool name */
|
|
@@ -33,8 +35,6 @@ interface ToolReferences {
|
|
|
33
35
|
grep?: string;
|
|
34
36
|
/** List directory tool name */
|
|
35
37
|
listDirectory?: string;
|
|
36
|
-
/** Allow custom tool references */
|
|
37
|
-
[key: string]: string | undefined;
|
|
38
38
|
}
|
|
39
39
|
/**
|
|
40
40
|
* Tool name presets for different AI tools.
|
|
@@ -100,6 +100,7 @@ declare enum OsKind {
|
|
|
100
100
|
* @example {os.platform}, {os.arch}, {os.shellKind}, {os.kind}
|
|
101
101
|
*/
|
|
102
102
|
interface OsInfo {
|
|
103
|
+
[key: string]: string | ShellKind | OsKind | undefined;
|
|
103
104
|
platform?: string;
|
|
104
105
|
arch?: string;
|
|
105
106
|
hostname?: string;
|
|
@@ -109,7 +110,6 @@ interface OsInfo {
|
|
|
109
110
|
release?: string;
|
|
110
111
|
shellKind?: ShellKind;
|
|
111
112
|
kind?: OsKind;
|
|
112
|
-
[key: string]: string | ShellKind | OsKind | undefined;
|
|
113
113
|
}
|
|
114
114
|
interface MdProps {
|
|
115
115
|
/** Condition for rendering content. If omitted, content always renders. */
|
package/dist/index.d.mts
CHANGED
|
@@ -29,7 +29,7 @@ interface ILogger {
|
|
|
29
29
|
* Set the global log level for all loggers.
|
|
30
30
|
*/
|
|
31
31
|
//#endregion
|
|
32
|
-
//#region ../libraries/md-compiler/dist/index-
|
|
32
|
+
//#region ../libraries/md-compiler/dist/index-CY2104SI.d.mts
|
|
33
33
|
//#region ../../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts
|
|
34
34
|
// ## Interfaces
|
|
35
35
|
/**
|
|
@@ -1056,7 +1056,7 @@ interface Yaml extends Literal$2 {
|
|
|
1056
1056
|
*/
|
|
1057
1057
|
interface YamlData extends Data$2 {} //#endregion
|
|
1058
1058
|
//#endregion
|
|
1059
|
-
//#region ../libraries/md-compiler/dist/index-
|
|
1059
|
+
//#region ../libraries/md-compiler/dist/index-CnpERWWo.d.mts
|
|
1060
1060
|
//#region src/globals/index.d.ts
|
|
1061
1061
|
/**
|
|
1062
1062
|
* // These types are available to users when writing MDX templates. // Global type declarations for MDX expression scope. // src/globals/index.ts
|
|
@@ -1064,17 +1064,19 @@ interface YamlData extends Data$2 {} //#endregion
|
|
|
1064
1064
|
* @example {profile.name}, {profile.username}
|
|
1065
1065
|
*/
|
|
1066
1066
|
interface UserProfile {
|
|
1067
|
+
[key: string]: unknown;
|
|
1067
1068
|
name?: string;
|
|
1068
1069
|
username?: string;
|
|
1069
1070
|
gender?: string;
|
|
1070
1071
|
birthday?: string;
|
|
1071
|
-
[key: string]: unknown;
|
|
1072
1072
|
}
|
|
1073
1073
|
/**
|
|
1074
1074
|
* Tool references for AI assistants
|
|
1075
1075
|
* @example {tool.websearch}, {tool.webfetch}, {tool.readFile}
|
|
1076
1076
|
*/
|
|
1077
1077
|
interface ToolReferences {
|
|
1078
|
+
/** Allow custom tool references */
|
|
1079
|
+
[key: string]: string | undefined;
|
|
1078
1080
|
/** Web search tool name */
|
|
1079
1081
|
websearch?: string;
|
|
1080
1082
|
/** Web fetch tool name */
|
|
@@ -1091,8 +1093,6 @@ interface ToolReferences {
|
|
|
1091
1093
|
grep?: string;
|
|
1092
1094
|
/** List directory tool name */
|
|
1093
1095
|
listDirectory?: string;
|
|
1094
|
-
/** Allow custom tool references */
|
|
1095
|
-
[key: string]: string | undefined;
|
|
1096
1096
|
}
|
|
1097
1097
|
/**
|
|
1098
1098
|
* Tool name presets for different AI tools.
|
|
@@ -1129,6 +1129,7 @@ declare enum OsKind {
|
|
|
1129
1129
|
* @example {os.platform}, {os.arch}, {os.shellKind}, {os.kind}
|
|
1130
1130
|
*/
|
|
1131
1131
|
interface OsInfo {
|
|
1132
|
+
[key: string]: string | ShellKind | OsKind | undefined;
|
|
1132
1133
|
platform?: string;
|
|
1133
1134
|
arch?: string;
|
|
1134
1135
|
hostname?: string;
|
|
@@ -1138,7 +1139,6 @@ interface OsInfo {
|
|
|
1138
1139
|
release?: string;
|
|
1139
1140
|
shellKind?: ShellKind;
|
|
1140
1141
|
kind?: OsKind;
|
|
1141
|
-
[key: string]: string | ShellKind | OsKind | undefined;
|
|
1142
1142
|
}
|
|
1143
1143
|
interface MdProps {
|
|
1144
1144
|
/** Condition for rendering content. If omitted, content always renders. */
|
|
@@ -4377,6 +4377,7 @@ interface SubAgentPrompt extends Prompt<PromptKind.SubAgent, SubAgentYAMLFrontMa
|
|
|
4377
4377
|
readonly type: PromptKind.SubAgent;
|
|
4378
4378
|
readonly agentPrefix?: string;
|
|
4379
4379
|
readonly agentName: string;
|
|
4380
|
+
readonly canonicalName: string;
|
|
4380
4381
|
readonly seriName?: SeriName;
|
|
4381
4382
|
readonly rawMdxContent?: string;
|
|
4382
4383
|
}
|
|
@@ -4439,6 +4440,7 @@ interface SkillMcpConfig {
|
|
|
4439
4440
|
interface SkillPrompt extends Prompt<PromptKind.Skill, SkillYAMLFrontMatter> {
|
|
4440
4441
|
readonly type: PromptKind.Skill;
|
|
4441
4442
|
readonly dir: RelativePath;
|
|
4443
|
+
readonly skillName: string;
|
|
4442
4444
|
readonly yamlFrontMatter: SkillYAMLFrontMatter;
|
|
4443
4445
|
readonly mcpConfig?: SkillMcpConfig;
|
|
4444
4446
|
readonly childDocs?: SkillChildDoc[];
|
|
@@ -4544,7 +4546,6 @@ interface ProjectChildrenMemoryPrompt extends Prompt<PromptKind.ProjectChildrenM
|
|
|
4544
4546
|
readonly workingChildDirectoryPath: RelativePath;
|
|
4545
4547
|
}
|
|
4546
4548
|
interface SubAgentYAMLFrontMatter extends ToolAwareYAMLFrontMatter {
|
|
4547
|
-
readonly name: string;
|
|
4548
4549
|
readonly model?: string;
|
|
4549
4550
|
readonly color?: ClaudeCodeCLISubAgentColors | string;
|
|
4550
4551
|
readonly seriName?: SeriName;
|
|
@@ -4558,7 +4559,7 @@ interface CommandYAMLFrontMatter extends ToolAwareYAMLFrontMatter {
|
|
|
4558
4559
|
* Base YAML front matter for all skill types
|
|
4559
4560
|
*/
|
|
4560
4561
|
interface SkillsYAMLFrontMatter extends CommonYAMLFrontMatter {
|
|
4561
|
-
readonly name
|
|
4562
|
+
readonly name?: string;
|
|
4562
4563
|
}
|
|
4563
4564
|
interface SkillYAMLFrontMatter extends SkillsYAMLFrontMatter {
|
|
4564
4565
|
readonly allowTools?: (CodingAgentTools | string)[];
|
|
@@ -5127,8 +5128,8 @@ interface GlobalConfigValidationResult {
|
|
|
5127
5128
|
*/
|
|
5128
5129
|
declare class ConfigLoader {
|
|
5129
5130
|
private readonly logger;
|
|
5130
|
-
constructor(
|
|
5131
|
-
getSearchPaths(
|
|
5131
|
+
constructor(options?: ConfigLoaderOptions);
|
|
5132
|
+
getSearchPaths(cwd?: string): string[];
|
|
5132
5133
|
loadFromFile(filePath: string): ConfigLoadResult;
|
|
5133
5134
|
load(cwd?: string): MergedConfigResult;
|
|
5134
5135
|
private parseConfig;
|