@afterxleep/doc-bot 1.7.6 → 1.7.7
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/bin/doc-bot.js +2 -1
- package/package.json +1 -1
package/bin/doc-bot.js
CHANGED
|
@@ -4,11 +4,12 @@ const { program } = require('commander');
|
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const fs = require('fs-extra');
|
|
6
6
|
const { DocsServer } = require('../src/index.js');
|
|
7
|
+
const packageJson = require('../package.json');
|
|
7
8
|
|
|
8
9
|
program
|
|
9
10
|
.name('doc-bot')
|
|
10
11
|
.description('Generic MCP server for intelligent documentation access')
|
|
11
|
-
.version(
|
|
12
|
+
.version(packageJson.version)
|
|
12
13
|
.option('-d, --docs <path>', 'Path to docs folder', 'doc-bot')
|
|
13
14
|
.option('-c, --config <path>', 'Path to manifest file')
|
|
14
15
|
.option('-v, --verbose', 'Enable verbose logging')
|