feat: integrate cosknow — auto-install kb commands on postinstall

This commit is contained in:
Askhz 2026-04-24 11:35:56 +08:00
parent 159c400cac
commit 997b83a313
2 changed files with 19 additions and 2 deletions

View File

@ -36,7 +36,8 @@
"dist",
"scripts/postinstall.cjs",
"scripts/run-parallel.mjs",
"scripts/setup-chrome-mcp.mjs"
"scripts/setup-chrome-mcp.mjs",
"scripts/install-cosknow.mjs"
],
"scripts": {
"build": "bun run build.ts",
@ -53,7 +54,7 @@
"test": "bun test",
"check:unused": "knip-bun",
"health": "bun run scripts/health-check.ts",
"postinstall": "node scripts/run-parallel.mjs scripts/postinstall.cjs scripts/setup-chrome-mcp.mjs",
"postinstall": "node scripts/run-parallel.mjs scripts/postinstall.cjs scripts/setup-chrome-mcp.mjs scripts/install-cosknow.mjs",
"docs:dev": "npx mintlify dev",
"typecheck": "tsc --noEmit",
"rcs": "bun run scripts/rcs.ts"
@ -61,6 +62,7 @@
"dependencies": {
"@agentclientprotocol/sdk": "^0.19.0",
"@claude-code-best/mcp-chrome-bridge": "^2.0.8",
"cosknow": "latest",
"ws": "^8.20.0"
},
"devDependencies": {

View File

@ -0,0 +1,15 @@
let install
try {
const mod = await import('cosknow')
install = mod.install
} catch {
console.warn('[cosknow] package not available, skipping command installation')
process.exit(0)
}
try {
await install({ target: 'claude-commands' })
console.log('[cosknow] commands installed to ~/.claude/commands/')
} catch (e) {
console.warn('[cosknow] install failed (non-fatal):', e.message)
}