@truenine/memory-sync-cli 2026.10325.12228 → 2026.10328.106
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/index.d.mts +11 -4
- package/dist/index.mjs +105 -105
- package/dist/plugin-runtime.mjs +126 -126
- package/package.json +18 -16
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import * as node_fs0 from "node:fs";
|
|
3
|
-
import * as node_path0 from "node:path";
|
|
2
|
+
import * as _$node_fs0 from "node:fs";
|
|
3
|
+
import * as _$node_path0 from "node:path";
|
|
4
4
|
import * as fs from "fs";
|
|
5
5
|
import { Buffer } from "node:buffer";
|
|
6
6
|
import { z } from "zod/v3";
|
|
@@ -3379,6 +3379,10 @@ declare module 'hast' {
|
|
|
3379
3379
|
* Metadata source type
|
|
3380
3380
|
*/
|
|
3381
3381
|
//#endregion
|
|
3382
|
+
//#region src/plugins/plugin-core/AindexTypes.d.ts
|
|
3383
|
+
declare const AINDEX_PROJECT_SERIES_NAMES: readonly ["app", "ext", "arch"];
|
|
3384
|
+
type AindexProjectSeriesName = (typeof AINDEX_PROJECT_SERIES_NAMES)[number];
|
|
3385
|
+
//#endregion
|
|
3382
3386
|
//#region src/plugins/plugin-core/ConfigTypes.schema.d.ts
|
|
3383
3387
|
/**
|
|
3384
3388
|
* Zod schema for the aindex configuration.
|
|
@@ -4312,6 +4316,7 @@ declare enum FilePathKind {
|
|
|
4312
4316
|
}
|
|
4313
4317
|
declare enum IDEKind {
|
|
4314
4318
|
VSCode = "vscode",
|
|
4319
|
+
Zed = "zed",
|
|
4315
4320
|
IntellijIDEA = "intellijIdea",
|
|
4316
4321
|
Git = "git",
|
|
4317
4322
|
EditorConfig = "editorconfig",
|
|
@@ -4342,6 +4347,7 @@ interface Project {
|
|
|
4342
4347
|
readonly isPromptSourceProject?: boolean;
|
|
4343
4348
|
readonly isWorkspaceRootProject?: boolean;
|
|
4344
4349
|
readonly projectConfig?: ProjectConfig;
|
|
4350
|
+
readonly promptSeries?: AindexProjectSeriesName;
|
|
4345
4351
|
}
|
|
4346
4352
|
interface Workspace {
|
|
4347
4353
|
readonly directory: Path;
|
|
@@ -4375,6 +4381,7 @@ interface CollectedContextData {
|
|
|
4375
4381
|
readonly globalMemory?: GlobalMemoryPrompt;
|
|
4376
4382
|
/** Other non-prompt fields */
|
|
4377
4383
|
readonly vscodeConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.VSCode>[];
|
|
4384
|
+
readonly zedConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.Zed>[];
|
|
4378
4385
|
readonly jetbrainsConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.IntellijIDEA>[];
|
|
4379
4386
|
readonly editorConfigFiles?: readonly ProjectIDEConfigFile<IDEKind.EditorConfig>[];
|
|
4380
4387
|
readonly aiAgentIgnoreConfigFiles?: readonly AIAgentIgnoreConfigFile[];
|
|
@@ -4890,8 +4897,8 @@ interface Plugin<T extends PluginKind = PluginKind> extends DependencyNode {
|
|
|
4890
4897
|
}
|
|
4891
4898
|
interface PluginContext {
|
|
4892
4899
|
logger: ILogger;
|
|
4893
|
-
fs: typeof node_fs0;
|
|
4894
|
-
path: typeof node_path0;
|
|
4900
|
+
fs: typeof _$node_fs0;
|
|
4901
|
+
path: typeof _$node_path0;
|
|
4895
4902
|
glob: FastGlobType;
|
|
4896
4903
|
}
|
|
4897
4904
|
interface InputCapabilityContext extends PluginContext {
|