@kernel.chat/kbot 2.3.0 → 2.3.1

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -21,7 +21,7 @@ import { getExtendedStats, incrementSessions, learnFact, selfTrain, getTrainingL
21
21
  import { banner, bannerCompact, bannerAuth, prompt as kbotPrompt, printError, printSuccess, printInfo, printResponse, printHelp, printGoodbye, setQuiet, } from './ui.js';
22
22
  import { checkForUpdate } from './updater.js';
23
23
  import chalk from 'chalk';
24
- const VERSION = '2.3.0';
24
+ const VERSION = '2.3.1';
25
25
  async function main() {
26
26
  const program = new Command();
27
27
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kernel.chat/kbot",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "K:BOT — Open-source terminal AI agent. 17 specialists, 60+ tools, 14 providers, local-first.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "main": "./dist/agent.js",
10
10
  "scripts": {
11
- "build": "tsc",
11
+ "build": "tsc && chmod +x dist/cli.js",
12
12
  "dev": "tsx src/cli.ts",
13
13
  "start": "node dist/cli.js",
14
14
  "test": "tsx --test src/**/*.test.ts",