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/README.md +63 -708
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2010 -3370
- package/dist/index.js.map +1 -1
- package/dist/marvin-serve.js +1507 -2822
- package/dist/marvin-serve.js.map +1 -1
- package/dist/marvin.js +1811 -3168
- package/dist/marvin.js.map +1 -1
- package/dist/web/static/styles.css +1782 -0
- package/package.json +1 -1
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
|
|
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 =
|
|
293
|
+
type SkillFormat = "builtin-ts" | "yaml" | "skill-md";
|
|
293
294
|
interface SkillDefinition {
|
|
294
295
|
id: string;
|
|
295
296
|
name: string;
|