@@ -21,7 +21,6 @@ npx markmv --help
2121- 🔗 ** Join multiple files** with conflict resolution
2222- 🧠 ** Merge content** with interactive conflict handling
2323- 📚 ** Generate indexes** for documentation organization
24- - 🗂️ ** Create barrel files** for themed content aggregation
2524- 🌐 ** Multiple access methods** : CLI, REST API, MCP, and programmatic
2625
2726## 📦 Installation
@@ -53,9 +52,6 @@ npx markmv join intro.md setup.md usage.md --output complete-guide.md
5352
5453# Generate documentation index
5554npx markmv index --type links --strategy directory
56-
57- # Generate barrel files for themed content aggregation
58- npx markmv barrel --type hybrid --strategy metadata --generate-toc
5955```
6056
6157## 🌐 Access Methods
@@ -119,7 +115,7 @@ Once configured, Claude can use these markmv tools:
119115- ** ` move_files ` ** - Move multiple files in batch
120116- ** ` validate_operation ` ** - Check for broken links
121117
122- * Note: Additional tools (split, join, merge, convert, index, barrel ) will be added in future releases.*
118+ * Note: Additional tools (split, join, merge, convert, index) will be added in future releases.*
123119
124120### Example Usage with Claude
125121
@@ -197,7 +193,7 @@ multiple index types including links, imports, embeds, and hybrid modes.
197193function createMarkMv(): FileOperations ;
198194```
199195
200- Defined in: [ index.ts:148 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L148 )
196+ Defined in: [ index.ts:149 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L149 )
201197
202198Main entry point for the markmv library
203199
@@ -230,7 +226,7 @@ function moveFile(
230226options : MoveOperationOptions ): Promise <OperationResult >;
231227```
232228
233- Defined in: [ index.ts:172 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L172 )
229+ Defined in: [ index.ts:173 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L173 )
234230
235231Convenience function for moving a single markdown file
236232
@@ -278,7 +274,7 @@ Promise resolving to operation result
278274function moveFiles(moves : object [], options : MoveOperationOptions ): Promise <OperationResult >;
279275```
280276
281- Defined in: [ index.ts:201 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L201 )
277+ Defined in: [ index.ts:202 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L202 )
282278
283279Convenience function for moving multiple markdown files
284280
@@ -325,7 +321,7 @@ function validateOperation(result: OperationResult): Promise<{
325321}>;
326322```
327323
328- Defined in: [ index.ts:230 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L230 )
324+ Defined in: [ index.ts:231 ] ( https://github.com/ExaDev/markmv/blob/main/src/index.ts#L231 )
329325
330326Convenience function for validating markdown file operations
331327
0 commit comments