@porcupine/kuskus 0.1.5 → 0.1.6
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/SKILL.md +1 -1
- package/bin/cli.js +3 -1
- package/package.json +1 -1
package/SKILL.md
CHANGED
|
@@ -38,7 +38,7 @@ npx @porcupine/kuskus mcp --launch --no-headless
|
|
|
38
38
|
Configure your MCP-compatible client to use the `kuskus` command. Available tools include page navigation, content extraction, screenshot capture, and tab management.
|
|
39
39
|
|
|
40
40
|
## Version
|
|
41
|
-
- Current release: `0.1.
|
|
41
|
+
- Current release: `0.1.6`
|
|
42
42
|
- Check locally with:
|
|
43
43
|
|
|
44
44
|
```bash
|
package/bin/cli.js
CHANGED
|
@@ -4,6 +4,7 @@ import { program } from 'commander';
|
|
|
4
4
|
import chalk from 'chalk';
|
|
5
5
|
import ora from 'ora';
|
|
6
6
|
import readline from 'readline';
|
|
7
|
+
import { readFileSync } from 'fs';
|
|
7
8
|
import { KuskusAgent } from '../src/agent/index.js';
|
|
8
9
|
import { SessionManager } from '../src/cdp/session.js';
|
|
9
10
|
import { createPageDomain } from '../src/cdp/domains/page.js';
|
|
@@ -11,7 +12,8 @@ import { saveScreenshot, screenshotFilename } from '../src/utils/screenshot.js';
|
|
|
11
12
|
import { ensureBrowser } from '../src/utils/browser.js';
|
|
12
13
|
import { ensureChromium } from '../src/utils/chromium.js';
|
|
13
14
|
|
|
14
|
-
const
|
|
15
|
+
const pkgJson = JSON.parse(readFileSync(new URL('../package.json', import.meta.url)));
|
|
16
|
+
const VERSION = pkgJson.version;
|
|
15
17
|
|
|
16
18
|
program
|
|
17
19
|
.name('kuskus')
|