@truenine/memory-sync-cli 2026.10403.117 → 2026.10404.101

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 CHANGED
@@ -4635,7 +4635,6 @@ declare const AINDEX_CONFIG_PAIR_KEYS: readonly ["skills", "commands", "subAgent
4635
4635
  type AindexConfigPairKey = (typeof AINDEX_CONFIG_PAIR_KEYS)[number];
4636
4636
  type AindexConfigDirectoryPairKey = (typeof AINDEX_CONFIG_DIRECTORY_PAIR_KEYS)[number];
4637
4637
  type AindexConfigFilePairKey = (typeof AINDEX_CONFIG_FILE_PAIR_KEYS)[number];
4638
- type AindexConfigKeyPath = `aindex.${AindexConfigPairKey}.src` | `aindex.${AindexConfigPairKey}.dist`;
4639
4638
  declare const AINDEX_PROMPT_TREE_DIRECTORY_PAIR_KEYS: readonly ["skills", "commands", "subAgents", "app", "ext", "arch", "softwares"];
4640
4639
  type AindexPromptTreeDirectoryPairKey = (typeof AINDEX_PROMPT_TREE_DIRECTORY_PAIR_KEYS)[number];
4641
4640
  interface MutableAindexDirPair {
@@ -4687,7 +4686,6 @@ declare const AINDEX_CONFIG_PAIR_DEFAULTS: {
4687
4686
  readonly dist: "dist/softwares";
4688
4687
  };
4689
4688
  };
4690
- declare const AINDEX_CONFIG_KEY_PATHS: readonly AindexConfigKeyPath[];
4691
4689
  declare function buildDefaultAindexConfig(): AindexConfigLike;
4692
4690
  declare function mergeAindexConfig<T extends AindexConfigLike>(base: T, override?: Partial<T>): T; //#endregion
4693
4691
  //#region src/plugins/plugin-core/AindexTypes.d.ts
@@ -4863,8 +4861,8 @@ declare const ZAindexDirPair: z.ZodObject<{
4863
4861
  dist: string;
4864
4862
  }>;
4865
4863
  /**
4866
- * Zod schema for the aindex configuration.
4867
- * All paths are relative to <workspaceDir>/<aindex.dir>.
4864
+ * Zod schema for the fully resolved aindex configuration.
4865
+ * All paths are relative to <workspaceDir>/aindex.
4868
4866
  */
4869
4867
  declare const ZAindexConfig: z.ZodObject<{
4870
4868
  app: z.ZodObject<{
@@ -5372,283 +5370,6 @@ declare const ZUserProfile: z.ZodObject<{
5372
5370
  declare const ZUserConfigFile: z.ZodObject<{
5373
5371
  version: z.ZodOptional<z.ZodString>;
5374
5372
  workspaceDir: z.ZodOptional<z.ZodString>;
5375
- aindex: z.ZodOptional<z.ZodObject<{
5376
- app: z.ZodObject<{
5377
- src: z.ZodString;
5378
- dist: z.ZodString;
5379
- }, "strip", z.ZodTypeAny, {
5380
- src: string;
5381
- dist: string;
5382
- }, {
5383
- src: string;
5384
- dist: string;
5385
- }> | z.ZodDefault<z.ZodObject<{
5386
- src: z.ZodString;
5387
- dist: z.ZodString;
5388
- }, "strip", z.ZodTypeAny, {
5389
- src: string;
5390
- dist: string;
5391
- }, {
5392
- src: string;
5393
- dist: string;
5394
- }>>;
5395
- ext: z.ZodObject<{
5396
- src: z.ZodString;
5397
- dist: z.ZodString;
5398
- }, "strip", z.ZodTypeAny, {
5399
- src: string;
5400
- dist: string;
5401
- }, {
5402
- src: string;
5403
- dist: string;
5404
- }> | z.ZodDefault<z.ZodObject<{
5405
- src: z.ZodString;
5406
- dist: z.ZodString;
5407
- }, "strip", z.ZodTypeAny, {
5408
- src: string;
5409
- dist: string;
5410
- }, {
5411
- src: string;
5412
- dist: string;
5413
- }>>;
5414
- arch: z.ZodObject<{
5415
- src: z.ZodString;
5416
- dist: z.ZodString;
5417
- }, "strip", z.ZodTypeAny, {
5418
- src: string;
5419
- dist: string;
5420
- }, {
5421
- src: string;
5422
- dist: string;
5423
- }> | z.ZodDefault<z.ZodObject<{
5424
- src: z.ZodString;
5425
- dist: z.ZodString;
5426
- }, "strip", z.ZodTypeAny, {
5427
- src: string;
5428
- dist: string;
5429
- }, {
5430
- src: string;
5431
- dist: string;
5432
- }>>;
5433
- softwares: z.ZodObject<{
5434
- src: z.ZodString;
5435
- dist: z.ZodString;
5436
- }, "strip", z.ZodTypeAny, {
5437
- src: string;
5438
- dist: string;
5439
- }, {
5440
- src: string;
5441
- dist: string;
5442
- }> | z.ZodDefault<z.ZodObject<{
5443
- src: z.ZodString;
5444
- dist: z.ZodString;
5445
- }, "strip", z.ZodTypeAny, {
5446
- src: string;
5447
- dist: string;
5448
- }, {
5449
- src: string;
5450
- dist: string;
5451
- }>>;
5452
- skills: z.ZodObject<{
5453
- src: z.ZodString;
5454
- dist: z.ZodString;
5455
- }, "strip", z.ZodTypeAny, {
5456
- src: string;
5457
- dist: string;
5458
- }, {
5459
- src: string;
5460
- dist: string;
5461
- }> | z.ZodDefault<z.ZodObject<{
5462
- src: z.ZodString;
5463
- dist: z.ZodString;
5464
- }, "strip", z.ZodTypeAny, {
5465
- src: string;
5466
- dist: string;
5467
- }, {
5468
- src: string;
5469
- dist: string;
5470
- }>>;
5471
- commands: z.ZodObject<{
5472
- src: z.ZodString;
5473
- dist: z.ZodString;
5474
- }, "strip", z.ZodTypeAny, {
5475
- src: string;
5476
- dist: string;
5477
- }, {
5478
- src: string;
5479
- dist: string;
5480
- }> | z.ZodDefault<z.ZodObject<{
5481
- src: z.ZodString;
5482
- dist: z.ZodString;
5483
- }, "strip", z.ZodTypeAny, {
5484
- src: string;
5485
- dist: string;
5486
- }, {
5487
- src: string;
5488
- dist: string;
5489
- }>>;
5490
- subAgents: z.ZodObject<{
5491
- src: z.ZodString;
5492
- dist: z.ZodString;
5493
- }, "strip", z.ZodTypeAny, {
5494
- src: string;
5495
- dist: string;
5496
- }, {
5497
- src: string;
5498
- dist: string;
5499
- }> | z.ZodDefault<z.ZodObject<{
5500
- src: z.ZodString;
5501
- dist: z.ZodString;
5502
- }, "strip", z.ZodTypeAny, {
5503
- src: string;
5504
- dist: string;
5505
- }, {
5506
- src: string;
5507
- dist: string;
5508
- }>>;
5509
- rules: z.ZodObject<{
5510
- src: z.ZodString;
5511
- dist: z.ZodString;
5512
- }, "strip", z.ZodTypeAny, {
5513
- src: string;
5514
- dist: string;
5515
- }, {
5516
- src: string;
5517
- dist: string;
5518
- }> | z.ZodDefault<z.ZodObject<{
5519
- src: z.ZodString;
5520
- dist: z.ZodString;
5521
- }, "strip", z.ZodTypeAny, {
5522
- src: string;
5523
- dist: string;
5524
- }, {
5525
- src: string;
5526
- dist: string;
5527
- }>>;
5528
- globalPrompt: z.ZodObject<{
5529
- src: z.ZodString;
5530
- dist: z.ZodString;
5531
- }, "strip", z.ZodTypeAny, {
5532
- src: string;
5533
- dist: string;
5534
- }, {
5535
- src: string;
5536
- dist: string;
5537
- }> | z.ZodDefault<z.ZodObject<{
5538
- src: z.ZodString;
5539
- dist: z.ZodString;
5540
- }, "strip", z.ZodTypeAny, {
5541
- src: string;
5542
- dist: string;
5543
- }, {
5544
- src: string;
5545
- dist: string;
5546
- }>>;
5547
- workspacePrompt: z.ZodObject<{
5548
- src: z.ZodString;
5549
- dist: z.ZodString;
5550
- }, "strip", z.ZodTypeAny, {
5551
- src: string;
5552
- dist: string;
5553
- }, {
5554
- src: string;
5555
- dist: string;
5556
- }> | z.ZodDefault<z.ZodObject<{
5557
- src: z.ZodString;
5558
- dist: z.ZodString;
5559
- }, "strip", z.ZodTypeAny, {
5560
- src: string;
5561
- dist: string;
5562
- }, {
5563
- src: string;
5564
- dist: string;
5565
- }>>;
5566
- dir: z.ZodDefault<z.ZodString>;
5567
- }, "strip", z.ZodTypeAny, {
5568
- app: {
5569
- src: string;
5570
- dist: string;
5571
- };
5572
- ext: {
5573
- src: string;
5574
- dist: string;
5575
- };
5576
- arch: {
5577
- src: string;
5578
- dist: string;
5579
- };
5580
- softwares: {
5581
- src: string;
5582
- dist: string;
5583
- };
5584
- skills: {
5585
- src: string;
5586
- dist: string;
5587
- };
5588
- commands: {
5589
- src: string;
5590
- dist: string;
5591
- };
5592
- subAgents: {
5593
- src: string;
5594
- dist: string;
5595
- };
5596
- rules: {
5597
- src: string;
5598
- dist: string;
5599
- };
5600
- globalPrompt: {
5601
- src: string;
5602
- dist: string;
5603
- };
5604
- workspacePrompt: {
5605
- src: string;
5606
- dist: string;
5607
- };
5608
- dir: string;
5609
- }, {
5610
- app?: {
5611
- src: string;
5612
- dist: string;
5613
- } | undefined;
5614
- ext?: {
5615
- src: string;
5616
- dist: string;
5617
- } | undefined;
5618
- arch?: {
5619
- src: string;
5620
- dist: string;
5621
- } | undefined;
5622
- softwares?: {
5623
- src: string;
5624
- dist: string;
5625
- } | undefined;
5626
- skills?: {
5627
- src: string;
5628
- dist: string;
5629
- } | undefined;
5630
- commands?: {
5631
- src: string;
5632
- dist: string;
5633
- } | undefined;
5634
- subAgents?: {
5635
- src: string;
5636
- dist: string;
5637
- } | undefined;
5638
- rules?: {
5639
- src: string;
5640
- dist: string;
5641
- } | undefined;
5642
- globalPrompt?: {
5643
- src: string;
5644
- dist: string;
5645
- } | undefined;
5646
- workspacePrompt?: {
5647
- src: string;
5648
- dist: string;
5649
- } | undefined;
5650
- dir?: string | undefined;
5651
- }>>;
5652
5373
  logLevel: z.ZodOptional<z.ZodEnum<["trace", "debug", "info", "warn", "error"]>>;
5653
5374
  commandSeriesOptions: z.ZodOptional<z.ZodObject<{
5654
5375
  includeSeriesPrefix: z.ZodOptional<z.ZodBoolean>;
@@ -5790,49 +5511,6 @@ declare const ZUserConfigFile: z.ZodObject<{
5790
5511
  birthday: z.ZodOptional<z.ZodString>;
5791
5512
  }, z.ZodUnknown, "strip">>>;
5792
5513
  }, "strip", z.ZodTypeAny, {
5793
- aindex?: {
5794
- app: {
5795
- src: string;
5796
- dist: string;
5797
- };
5798
- ext: {
5799
- src: string;
5800
- dist: string;
5801
- };
5802
- arch: {
5803
- src: string;
5804
- dist: string;
5805
- };
5806
- softwares: {
5807
- src: string;
5808
- dist: string;
5809
- };
5810
- skills: {
5811
- src: string;
5812
- dist: string;
5813
- };
5814
- commands: {
5815
- src: string;
5816
- dist: string;
5817
- };
5818
- subAgents: {
5819
- src: string;
5820
- dist: string;
5821
- };
5822
- rules: {
5823
- src: string;
5824
- dist: string;
5825
- };
5826
- globalPrompt: {
5827
- src: string;
5828
- dist: string;
5829
- };
5830
- workspacePrompt: {
5831
- src: string;
5832
- dist: string;
5833
- };
5834
- dir: string;
5835
- } | undefined;
5836
5514
  version?: string | undefined;
5837
5515
  workspaceDir?: string | undefined;
5838
5516
  logLevel?: "trace" | "debug" | "info" | "warn" | "error" | undefined;
@@ -5876,49 +5554,6 @@ declare const ZUserConfigFile: z.ZodObject<{
5876
5554
  birthday: z.ZodOptional<z.ZodString>;
5877
5555
  }, z.ZodUnknown, "strip"> | undefined;
5878
5556
  }, {
5879
- aindex?: {
5880
- app?: {
5881
- src: string;
5882
- dist: string;
5883
- } | undefined;
5884
- ext?: {
5885
- src: string;
5886
- dist: string;
5887
- } | undefined;
5888
- arch?: {
5889
- src: string;
5890
- dist: string;
5891
- } | undefined;
5892
- softwares?: {
5893
- src: string;
5894
- dist: string;
5895
- } | undefined;
5896
- skills?: {
5897
- src: string;
5898
- dist: string;
5899
- } | undefined;
5900
- commands?: {
5901
- src: string;
5902
- dist: string;
5903
- } | undefined;
5904
- subAgents?: {
5905
- src: string;
5906
- dist: string;
5907
- } | undefined;
5908
- rules?: {
5909
- src: string;
5910
- dist: string;
5911
- } | undefined;
5912
- globalPrompt?: {
5913
- src: string;
5914
- dist: string;
5915
- } | undefined;
5916
- workspacePrompt?: {
5917
- src: string;
5918
- dist: string;
5919
- } | undefined;
5920
- dir?: string | undefined;
5921
- } | undefined;
5922
5557
  version?: string | undefined;
5923
5558
  workspaceDir?: string | undefined;
5924
5559
  logLevel?: "trace" | "debug" | "info" | "warn" | "error" | undefined;
@@ -8200,7 +7835,6 @@ declare class ConfigLoader {
8200
7835
  load(cwd?: string): MergedConfigResult;
8201
7836
  private parseConfig;
8202
7837
  private mergeConfigs;
8203
- private mergeAindex;
8204
7838
  private mergeOutputScopeTopics;
8205
7839
  private mergeOutputScopeOptions;
8206
7840
  private mergeFrontMatterOptions;
@@ -8766,4 +8400,4 @@ declare function syncWindowsConfigIntoWsl(outputPlugins: readonly OutputPlugin[]
8766
8400
  declare function resolveRuntimeCommandFromArgv(argv?: readonly string[]): RuntimeCommand;
8767
8401
  declare function createDefaultPluginConfig(argv?: readonly string[], runtimeCommand?: RuntimeCommand, executionCwd?: string): Promise<PipelineConfig>;
8768
8402
  //#endregion
8769
- export { AIAgentIgnoreConfigFile, AINDEX_CONFIG_DIRECTORY_PAIR_KEYS, AINDEX_CONFIG_FILE_PAIR_KEYS, AINDEX_CONFIG_KEY_PATHS, AINDEX_CONFIG_PAIR_DEFAULTS, AINDEX_CONFIG_PAIR_KEYS, AINDEX_DEFAULT_DIR_NAME, AINDEX_DIR_NAMES, AINDEX_FILE_NAMES, AINDEX_PROJECT_SERIES_NAMES, AINDEX_PROMPT_TREE_DIRECTORY_PAIR_KEYS, AINDEX_RELATIVE_PATHS, AbsolutePath, AbstractInputCapability, AbstractOutputPlugin, type AbstractOutputPluginOptions, AbstractPlugin, AgentsOutputPlugin, AindexConfig, AindexConfigDirectoryPairKey, AindexConfigFilePairKey, AindexConfigKeyPath, AindexConfigLike, AindexConfigPairKey, AindexDirName, AindexDirPair, AindexDirPairLike, AindexDirectory, AindexDirectoryEntry, AindexFileEntry, AindexFileName, type AindexProjectSeriesName, AindexPromptTreeDirectoryPairKey, AindexRelativePath, Awaitable, BaseExportMetadata, CircularDependencyError, ClaudeCodeCLIOutputPlugin, ClaudeCodeCLISubAgentColors, CleanupError, CleanupProtectionConflict, CleanupProtectionConflictError, CleanupProtectionOptions, CleanupProtectionRule, CleanupResult, type CleanupScopePathsConfig, CodexCLIOutputPlugin, CodexSkillMetadata, CodexSkillYAMLFrontMatter, CodingAgentTools, CollectedOutputs, type CombineOptions, CommandExportMetadata, type CommandNameTransformOptions, type CommandOutputConfig, CommandPrompt, CommandSeriesOptions, CommandSeriesPluginOverride, CommandYAMLFrontMatter, CommonYAMLFrontMatter, ConfigLoadResult, ConfigLoader, ConfigLoaderOptions, CursorOutputPlugin, DEFAULT_AINDEX_STRUCTURE, DEFAULT_CONFIG_FILE_NAME, DEFAULT_GLOBAL_CONFIG_DIR, DEFAULT_SCOPE_PRIORITY, DEFAULT_USER_CONFIG, DefineConfigOptions, DependencyNode, type DiagnosticLines, type DirectoryReadResult, DroidCLIOutputPlugin, EditorConfigOutputPlugin, ExecutionPlan, ExecutionPlanProjectSummary, ExecutionPlanProjectsBySeries, ExecutionScope, ExternalExecutionPlan, FastGlobType, FileContent, FileExtensions, FilePathKind, type FilterConfigPath, FrontMatterFields, FrontMatterOptions, GeminiCLIOutputPlugin, GenerationOptions, GenerationResult, GenericSkillsOutputPlugin, GitExcludeOutputPlugin, GlobalConfigDirectory, GlobalConfigDirectoryInOther, GlobalConfigDirectoryInUserHome, GlobalConfigDirectoryType, GlobalConfigDirs, GlobalConfigValidationResult, GlobalMemoryPrompt, GlobalScopeCollector, type GlobalScopeCollectorOptions, IDEKind, type ILogger, IgnoreFiles, InputCapability, InputCapabilityContext, InputCollectedContext, InputEffectContext, InputEffectHandler, InputEffectRegistration, InputEffectResult, JetBrainsAIAssistantCodexOutputPlugin, JetBrainsIDECodeStyleConfigOutputPlugin, KiroCLIOutputPlugin, KiroPowerEntry, KiroPowerSource, KiroPowerYAMLFrontMatter, KiroPowersRegistry, KiroRecommendedRepo, KiroRepoSource, KiroSteeringYAMLFrontMatter, ListPromptsOptions, Locale, LocalizedContent, LocalizedFileExtension, LocalizedPrompt, LocalizedPromptReader, type LocalizedReadOptions, LocalizedSource, type LogLevel, type LoggerDiagnosticInput, type LoggerDiagnosticRecord, ManagedPromptKind, type McpConfigFormat, McpConfigManager, type McpConfigTransformer, McpProjectConfig, McpServerConfig, type McpServerEntry, type McpWriteResult, MergedConfigResult, MetadataValidationResult, MissingDependencyError, NamingCaseKind, OUTPUT_SCOPE_TOPICS, OpencodeCLIOutputPlugin, OutputCleanContext, type OutputCleanupConfig, OutputCleanupDeclarations, OutputCleanupPathDeclaration, OutputCleanupScope, OutputCleanupTargetKind, OutputCollectedContext, OutputDeclarationScope, OutputFileDeclaration, OutputFileNames, OutputPlugin, OutputPluginCapabilities, OutputPluginContext, OutputPrefixes, OutputRuntimeTargets, OutputScope, OutputScopeOptions, OutputScopeSelection, OutputScopeTopic, OutputSubdirectories, OutputTopicCapability, OutputWriteContext, PLUGIN_NAMES, Path, PathPlaceholders, PipelineConfig, Plugin, PluginContext, PluginKind, type PluginName, PluginOptions, PluginOutputScopeTopics, PluginScopeRegistration, PreservedSkills, Project, ProjectChildrenMemoryPrompt, ProjectConfig, ProjectEnhancerCapability, ProjectExecutionPlan, ProjectIDEConfigFile, ProjectRootMemoryPrompt, Prompt, PromptArtifactRecord, PromptArtifactState, PromptCatalogItem, PromptCatalogPaths, PromptCatalogPresence, PromptDetails, PromptKind, PromptServiceOptions, PromptSourceLocale, ProtectionMode, ProtectionRuleMatcher, QoderIDEPluginOutputPlugin, README_FILE_KIND_MAP, type ReadError, ReadmeFileKind, ReadmeMdConfigFileOutputPlugin, ReadmePrompt, RegistryData, RegistryOperationResult, RegistryWriter, RelativePath, ResolvedBasePaths, ResolvedWslInstanceTarget, RootPath, type RuleContentOptions, RuleExportMetadata, type RuleOutputConfig, RulePrompt, RuleScope, RuleYAMLFrontMatter, RuntimeCommand, ScopePriority, type ScopeRegistration, ScopeRegistry, ScopeRegistryLike, SeriName, type SeriesFilterable, SkillChildDoc, SkillExportMetadata, type SkillFrontMatterOptions, SkillMcpConfig, SkillPrompt, SkillResource, SkillResourceEncoding, SkillYAMLFrontMatter, type SkillsOutputConfig, SkillsYAMLFrontMatter, SourceLocaleExtensions, SourcePromptExtensions, SourcePromptFileExtensions, StringOrStringArray, type SubAgentArtifactFormat, SubAgentExportMetadata, type SubAgentFileNameSource, SubAgentFrontMatterField, type SubAgentNameTransformOptions, SubAgentOutputConfig, SubAgentPrompt, SubAgentYAMLFrontMatter, type SubAgentsOutputConfig, Target, ToolAwareYAMLFrontMatter, ToolPresets, TraeCNIDEOutputPlugin, TraeIDEOutputPlugin, type TransformedMcpConfig, TypeSeriesConfig, UnsupportedExecutionPlan, UpsertPromptSourceInput, UserConfigFile, ValidateMetadataOptions, VersionControlCheckResult, VisualStudioCodeIDEConfigOutputPlugin, WORKSPACE_ROOT_PROJECT_NAME, WarpIDEOutputPlugin, WindowsOptions, WindowsWsl2Options, WindsurfOutputPlugin, Workspace, WorkspaceExecutionPlan, WritePromptArtifactsInput, WriteResult, WriteResults, WslMirrorFileDeclaration, WslMirrorRuntimeDependencies, WslMirrorSyncResult, YAMLFrontMatter, ZAindexConfig, ZAindexDirPair, ZCleanupProtectionOptions, ZCleanupProtectionRule, ZCommandSeriesOptions, ZCommandSeriesPluginOverride, ZConfigLoaderOptions, ZFrontMatterOptions, ZMcpProjectConfig, ZOutputScope, ZOutputScopeOptions, ZOutputScopeSelection, ZPluginOutputScopeTopics, ZProjectConfig, ZProtectionMode, ZProtectionRuleMatcher, ZStringOrStringArray, ZTypeSeriesConfig, ZUserConfigFile, ZUserProfile, ZWindowsOptions, ZWindowsWsl2Options, ZedIDEConfigOutputPlugin, applyMetadataDefaults, applySubSeriesGlobPrefix, buildBatchFileOperationDiagnostic, buildConfigDiagnostic, buildDefaultAindexConfig, buildDiagnostic, buildFileOperationDiagnostic, buildPathStateDiagnostic, buildPromptCompilerDiagnostic, buildProtectedDeletionDiagnostic, buildUnhandledExceptionDiagnostic, buildUsageDiagnostic, checkVersionControl, clearBufferedDiagnostics, clearPromptArtifactCache, collectAllPluginOutputs, collectDeclaredWslMirrorFiles, collectDeletionTargets, collectMcpServersFromSkills, collectOutputDeclarations, compileRawPromptArtifact, createDefaultPluginConfig, createEmptyExecutionPlanProjectsBySeries, createLocalizedPromptReader, createLogger, defineConfig, deriveSubAgentIdentity, diagnosticLines, discoverOutputRuntimeTargets, drainBufferedDiagnostics, executeDeclarativeWriteOutputs, filterByProjectConfig, filterPathScopedEntriesForExecutionPlan, findAllGitRepos, findGitModuleInfoDirs, flattenPromptPath, flushOutput, generateAindex, getConfigLoader, getGlobalConfigPath, getGlobalLogLevel, getPrompt, getRequiredGlobalConfigPath, hasNativeCleanupBinding, hasSourcePromptExtension, listPrompts, loadUserConfig, logProtectedDeletionGuardError, mergeAindexConfig, mergeConfig, partitionBufferedDiagnostics, performCleanup, performCleanupWithNative, planCleanupWithNative, readPromptArtifact, resolveExecutionPlan, resolveGitInfoDir, resolvePromptDefinition, resolveRuntimeCommandFromArgv, resolveSkillName, resolveSubAgentCanonicalName, resolveTopicScopes, resolveUserPath, resolveWslInstanceTargets, runCli, setGlobalLogLevel, splitDiagnosticText, syncWindowsConfigIntoWsl, toErrorMessage, toOutputCollectedContext, transformMcpConfigForCursor, transformMcpConfigForOpencode, transformMcpServerMap, upsertPromptSource, userConfigToPluginOptions, validateCommandMetadata, validateExportMetadata, validateGlobalConfig, validateOutputPluginCapabilities, validateOutputScopeOverridesForPlugin, validateOutputScopeOverridesForPlugins, validateRuleMetadata, validateSkillMetadata, validateSubAgentMetadata, writePromptArtifacts };
8403
+ export { AIAgentIgnoreConfigFile, AINDEX_CONFIG_DIRECTORY_PAIR_KEYS, AINDEX_CONFIG_FILE_PAIR_KEYS, AINDEX_CONFIG_PAIR_DEFAULTS, AINDEX_CONFIG_PAIR_KEYS, AINDEX_DEFAULT_DIR_NAME, AINDEX_DIR_NAMES, AINDEX_FILE_NAMES, AINDEX_PROJECT_SERIES_NAMES, AINDEX_PROMPT_TREE_DIRECTORY_PAIR_KEYS, AINDEX_RELATIVE_PATHS, AbsolutePath, AbstractInputCapability, AbstractOutputPlugin, type AbstractOutputPluginOptions, AbstractPlugin, AgentsOutputPlugin, AindexConfig, AindexConfigDirectoryPairKey, AindexConfigFilePairKey, AindexConfigLike, AindexConfigPairKey, AindexDirName, AindexDirPair, AindexDirPairLike, AindexDirectory, AindexDirectoryEntry, AindexFileEntry, AindexFileName, type AindexProjectSeriesName, AindexPromptTreeDirectoryPairKey, AindexRelativePath, Awaitable, BaseExportMetadata, CircularDependencyError, ClaudeCodeCLIOutputPlugin, ClaudeCodeCLISubAgentColors, CleanupError, CleanupProtectionConflict, CleanupProtectionConflictError, CleanupProtectionOptions, CleanupProtectionRule, CleanupResult, type CleanupScopePathsConfig, CodexCLIOutputPlugin, CodexSkillMetadata, CodexSkillYAMLFrontMatter, CodingAgentTools, CollectedOutputs, type CombineOptions, CommandExportMetadata, type CommandNameTransformOptions, type CommandOutputConfig, CommandPrompt, CommandSeriesOptions, CommandSeriesPluginOverride, CommandYAMLFrontMatter, CommonYAMLFrontMatter, ConfigLoadResult, ConfigLoader, ConfigLoaderOptions, CursorOutputPlugin, DEFAULT_AINDEX_STRUCTURE, DEFAULT_CONFIG_FILE_NAME, DEFAULT_GLOBAL_CONFIG_DIR, DEFAULT_SCOPE_PRIORITY, DEFAULT_USER_CONFIG, DefineConfigOptions, DependencyNode, type DiagnosticLines, type DirectoryReadResult, DroidCLIOutputPlugin, EditorConfigOutputPlugin, ExecutionPlan, ExecutionPlanProjectSummary, ExecutionPlanProjectsBySeries, ExecutionScope, ExternalExecutionPlan, FastGlobType, FileContent, FileExtensions, FilePathKind, type FilterConfigPath, FrontMatterFields, FrontMatterOptions, GeminiCLIOutputPlugin, GenerationOptions, GenerationResult, GenericSkillsOutputPlugin, GitExcludeOutputPlugin, GlobalConfigDirectory, GlobalConfigDirectoryInOther, GlobalConfigDirectoryInUserHome, GlobalConfigDirectoryType, GlobalConfigDirs, GlobalConfigValidationResult, GlobalMemoryPrompt, GlobalScopeCollector, type GlobalScopeCollectorOptions, IDEKind, type ILogger, IgnoreFiles, InputCapability, InputCapabilityContext, InputCollectedContext, InputEffectContext, InputEffectHandler, InputEffectRegistration, InputEffectResult, JetBrainsAIAssistantCodexOutputPlugin, JetBrainsIDECodeStyleConfigOutputPlugin, KiroCLIOutputPlugin, KiroPowerEntry, KiroPowerSource, KiroPowerYAMLFrontMatter, KiroPowersRegistry, KiroRecommendedRepo, KiroRepoSource, KiroSteeringYAMLFrontMatter, ListPromptsOptions, Locale, LocalizedContent, LocalizedFileExtension, LocalizedPrompt, LocalizedPromptReader, type LocalizedReadOptions, LocalizedSource, type LogLevel, type LoggerDiagnosticInput, type LoggerDiagnosticRecord, ManagedPromptKind, type McpConfigFormat, McpConfigManager, type McpConfigTransformer, McpProjectConfig, McpServerConfig, type McpServerEntry, type McpWriteResult, MergedConfigResult, MetadataValidationResult, MissingDependencyError, NamingCaseKind, OUTPUT_SCOPE_TOPICS, OpencodeCLIOutputPlugin, OutputCleanContext, type OutputCleanupConfig, OutputCleanupDeclarations, OutputCleanupPathDeclaration, OutputCleanupScope, OutputCleanupTargetKind, OutputCollectedContext, OutputDeclarationScope, OutputFileDeclaration, OutputFileNames, OutputPlugin, OutputPluginCapabilities, OutputPluginContext, OutputPrefixes, OutputRuntimeTargets, OutputScope, OutputScopeOptions, OutputScopeSelection, OutputScopeTopic, OutputSubdirectories, OutputTopicCapability, OutputWriteContext, PLUGIN_NAMES, Path, PathPlaceholders, PipelineConfig, Plugin, PluginContext, PluginKind, type PluginName, PluginOptions, PluginOutputScopeTopics, PluginScopeRegistration, PreservedSkills, Project, ProjectChildrenMemoryPrompt, ProjectConfig, ProjectEnhancerCapability, ProjectExecutionPlan, ProjectIDEConfigFile, ProjectRootMemoryPrompt, Prompt, PromptArtifactRecord, PromptArtifactState, PromptCatalogItem, PromptCatalogPaths, PromptCatalogPresence, PromptDetails, PromptKind, PromptServiceOptions, PromptSourceLocale, ProtectionMode, ProtectionRuleMatcher, QoderIDEPluginOutputPlugin, README_FILE_KIND_MAP, type ReadError, ReadmeFileKind, ReadmeMdConfigFileOutputPlugin, ReadmePrompt, RegistryData, RegistryOperationResult, RegistryWriter, RelativePath, ResolvedBasePaths, ResolvedWslInstanceTarget, RootPath, type RuleContentOptions, RuleExportMetadata, type RuleOutputConfig, RulePrompt, RuleScope, RuleYAMLFrontMatter, RuntimeCommand, ScopePriority, type ScopeRegistration, ScopeRegistry, ScopeRegistryLike, SeriName, type SeriesFilterable, SkillChildDoc, SkillExportMetadata, type SkillFrontMatterOptions, SkillMcpConfig, SkillPrompt, SkillResource, SkillResourceEncoding, SkillYAMLFrontMatter, type SkillsOutputConfig, SkillsYAMLFrontMatter, SourceLocaleExtensions, SourcePromptExtensions, SourcePromptFileExtensions, StringOrStringArray, type SubAgentArtifactFormat, SubAgentExportMetadata, type SubAgentFileNameSource, SubAgentFrontMatterField, type SubAgentNameTransformOptions, SubAgentOutputConfig, SubAgentPrompt, SubAgentYAMLFrontMatter, type SubAgentsOutputConfig, Target, ToolAwareYAMLFrontMatter, ToolPresets, TraeCNIDEOutputPlugin, TraeIDEOutputPlugin, type TransformedMcpConfig, TypeSeriesConfig, UnsupportedExecutionPlan, UpsertPromptSourceInput, UserConfigFile, ValidateMetadataOptions, VersionControlCheckResult, VisualStudioCodeIDEConfigOutputPlugin, WORKSPACE_ROOT_PROJECT_NAME, WarpIDEOutputPlugin, WindowsOptions, WindowsWsl2Options, WindsurfOutputPlugin, Workspace, WorkspaceExecutionPlan, WritePromptArtifactsInput, WriteResult, WriteResults, WslMirrorFileDeclaration, WslMirrorRuntimeDependencies, WslMirrorSyncResult, YAMLFrontMatter, ZAindexConfig, ZAindexDirPair, ZCleanupProtectionOptions, ZCleanupProtectionRule, ZCommandSeriesOptions, ZCommandSeriesPluginOverride, ZConfigLoaderOptions, ZFrontMatterOptions, ZMcpProjectConfig, ZOutputScope, ZOutputScopeOptions, ZOutputScopeSelection, ZPluginOutputScopeTopics, ZProjectConfig, ZProtectionMode, ZProtectionRuleMatcher, ZStringOrStringArray, ZTypeSeriesConfig, ZUserConfigFile, ZUserProfile, ZWindowsOptions, ZWindowsWsl2Options, ZedIDEConfigOutputPlugin, applyMetadataDefaults, applySubSeriesGlobPrefix, buildBatchFileOperationDiagnostic, buildConfigDiagnostic, buildDefaultAindexConfig, buildDiagnostic, buildFileOperationDiagnostic, buildPathStateDiagnostic, buildPromptCompilerDiagnostic, buildProtectedDeletionDiagnostic, buildUnhandledExceptionDiagnostic, buildUsageDiagnostic, checkVersionControl, clearBufferedDiagnostics, clearPromptArtifactCache, collectAllPluginOutputs, collectDeclaredWslMirrorFiles, collectDeletionTargets, collectMcpServersFromSkills, collectOutputDeclarations, compileRawPromptArtifact, createDefaultPluginConfig, createEmptyExecutionPlanProjectsBySeries, createLocalizedPromptReader, createLogger, defineConfig, deriveSubAgentIdentity, diagnosticLines, discoverOutputRuntimeTargets, drainBufferedDiagnostics, executeDeclarativeWriteOutputs, filterByProjectConfig, filterPathScopedEntriesForExecutionPlan, findAllGitRepos, findGitModuleInfoDirs, flattenPromptPath, flushOutput, generateAindex, getConfigLoader, getGlobalConfigPath, getGlobalLogLevel, getPrompt, getRequiredGlobalConfigPath, hasNativeCleanupBinding, hasSourcePromptExtension, listPrompts, loadUserConfig, logProtectedDeletionGuardError, mergeAindexConfig, mergeConfig, partitionBufferedDiagnostics, performCleanup, performCleanupWithNative, planCleanupWithNative, readPromptArtifact, resolveExecutionPlan, resolveGitInfoDir, resolvePromptDefinition, resolveRuntimeCommandFromArgv, resolveSkillName, resolveSubAgentCanonicalName, resolveTopicScopes, resolveUserPath, resolveWslInstanceTargets, runCli, setGlobalLogLevel, splitDiagnosticText, syncWindowsConfigIntoWsl, toErrorMessage, toOutputCollectedContext, transformMcpConfigForCursor, transformMcpConfigForOpencode, transformMcpServerMap, upsertPromptSource, userConfigToPluginOptions, validateCommandMetadata, validateExportMetadata, validateGlobalConfig, validateOutputPluginCapabilities, validateOutputScopeOverridesForPlugin, validateOutputScopeOverridesForPlugins, validateRuleMetadata, validateSkillMetadata, validateSubAgentMetadata, writePromptArtifacts };