@heysalad/cheri-cli 1.1.0 → 1.1.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.
package/bin/cheri.js CHANGED
@@ -18,7 +18,7 @@ const pkg = JSON.parse(readFileSync(join(__dirname, "..", "package.json"), "utf-
18
18
 
19
19
  program
20
20
  .name("cheri")
21
- .description("Cheri CLI - AI-powered cloud IDE by HeySalad")
21
+ .description("Cheri CLI - AI-powered cloud IDE by HeySalad®")
22
22
  .version(pkg.version);
23
23
 
24
24
  registerLoginCommand(program);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@heysalad/cheri-cli",
3
- "version": "1.1.0",
4
- "description": "Cheri CLI - AI-powered cloud IDE by HeySalad. Like Claude Code, but for cloud workspaces. Now with beautiful animations and enhanced UI!",
3
+ "version": "1.1.1",
4
+ "description": "Cheri CLI - AI-powered cloud IDE by HeySalad®. Like Claude Code, but for cloud workspaces. Now with beautiful animations and enhanced UI!",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "cheri": "./bin/cheri.js"
@@ -19,7 +19,7 @@ import { ToolPanel, status, StreamRenderer, gradients, icons } from "../lib/ui.j
19
19
  import chalk from "chalk";
20
20
  import readline from "readline";
21
21
 
22
- const SYSTEM_PROMPT = `You are Cheri, an AI coding assistant by HeySalad. You are a powerful agentic coding tool that can read, write, edit, and search code, execute shell commands, and manage cloud workspaces.
22
+ const SYSTEM_PROMPT = `You are Cheri, an AI coding assistant by HeySalad®. You are a powerful agentic coding tool that can read, write, edit, and search code, execute shell commands, and manage cloud workspaces.
23
23
 
24
24
  You have these tool categories:
25
25
  1. LOCAL CODING TOOLS — read_file, write_file, edit_file, run_command, search_files, search_content, list_directory
package/src/lib/logger.js CHANGED
@@ -72,7 +72,7 @@ export const log = {
72
72
  if (!version) version = getVersion();
73
73
  console.log();
74
74
  console.log(` ${gradients.cheri("🍒")} ${chalk.red.bold("Cheri")}`);
75
- console.log(` ${chalk.dim("AI-powered cloud IDE by HeySalad")}`);
75
+ console.log(` ${chalk.dim("AI-powered cloud IDE by HeySalad®")}`);
76
76
  console.log(` ${gradients.cyan("✨")} ${chalk.dim("v" + version)}`);
77
77
  console.log();
78
78
  },
package/src/lib/ui.js CHANGED
@@ -388,7 +388,7 @@ export async function animatedBanner(version = '1.0.0') {
388
388
  }
389
389
 
390
390
  console.log();
391
- console.log(` ${chalk.dim('AI-powered cloud IDE by HeySalad')}`);
391
+ console.log(` ${chalk.dim('AI-powered cloud IDE by HeySalad®')}`);
392
392
  console.log(` ${chalk.dim('v' + version)}`);
393
393
  console.log();
394
394