kernelbot 1.0.5 → 1.0.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/README.md CHANGED
@@ -23,6 +23,10 @@ KernelBot runs a **tool-use loop**: Claude decides which tools to call, KernelBo
23
23
  | `write_file` | Write/create files, auto-creates parent directories |
24
24
  | `list_directory` | List directory contents, optionally recursive |
25
25
 
26
+ ## Disclaimer
27
+
28
+ > **WARNING:** KernelBot has full access to your operating system. It can execute shell commands, read/write files, manage processes, control Docker containers, and interact with external services (GitHub, Telegram) on your behalf. Only run KernelBot on machines you own and control. Always configure `allowed_users` in production to restrict who can interact with the bot. The authors are not responsible for any damage caused by misuse.
29
+
26
30
  ## Installation
27
31
 
28
32
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kernelbot",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "KernelBot — AI engineering agent with full OS control",
5
5
  "type": "module",
6
6
  "author": "Abdullah Al-Taheri <abdullah@altaheri.me>",
@@ -14,6 +14,24 @@ const LOGO = `
14
14
  export function showLogo() {
15
15
  console.log(chalk.cyan(LOGO));
16
16
  console.log(chalk.dim(' AI Engineering Agent\n'));
17
+ console.log(
18
+ boxen(
19
+ chalk.yellow.bold('WARNING') +
20
+ chalk.yellow(
21
+ '\n\nKernelBot has full access to your operating system.\n' +
22
+ 'It can execute commands, read/write files, manage processes,\n' +
23
+ 'and interact with external services on your behalf.\n\n' +
24
+ 'Only run this on machines you control.\n' +
25
+ 'Set allowed_users in config.yaml to restrict access.',
26
+ ),
27
+ {
28
+ padding: 1,
29
+ borderStyle: 'round',
30
+ borderColor: 'yellow',
31
+ },
32
+ ),
33
+ );
34
+ console.log('');
17
35
  }
18
36
 
19
37
  export async function showStartupCheck(label, checkFn) {