mrvn-cli 0.5.28 → 0.6.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/index.d.ts CHANGED
@@ -133,11 +133,12 @@ interface DocumentQuery {
133
133
  declare class DocumentStore {
134
134
  private docsDir;
135
135
  private index;
136
+ private indexBuilt;
136
137
  private typeDirs;
137
138
  private idPrefixes;
138
139
  constructor(marvinDir: string, registrations?: DocumentTypeRegistration[]);
139
140
  get registeredTypes(): string[];
140
- private buildIndex;
141
+ private ensureIndex;
141
142
  list(query?: DocumentQuery): Document[];
142
143
  get(id: string): Document | undefined;
143
144
  create(type: DocumentType, frontmatter: Partial<DocumentFrontmatter>, content?: string): Document;
@@ -289,7 +290,7 @@ declare function getPluginPromptFragment(plugin: MarvinPlugin, personaId: string
289
290
  declare const COMMON_REGISTRATIONS: DocumentTypeRegistration[];
290
291
  declare function createCommonTools(store: DocumentStore): SdkMcpToolDefinition<any>[];
291
292
 
292
- type SkillFormat = 'builtin-ts' | 'yaml' | 'skill-md';
293
+ type SkillFormat = "builtin-ts" | "yaml" | "skill-md";
293
294
  interface SkillDefinition {
294
295
  id: string;
295
296
  name: string;