lazyclaw 5.0.7 → 5.0.8

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/package.json +1 -1
  2. package/tui/wordmark.mjs +17 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lazyclaw",
3
- "version": "5.0.7",
3
+ "version": "5.0.8",
4
4
  "description": "Lazy, elegant terminal CLI for chatting with Claude / OpenAI / Gemini / Ollama, orchestrating multi-step LLM workflows, and running multi-agent Slack teams with cross-task memory. Banner-on-launch, slash-command ghost autocomplete, persistent sessions, local HTTP gateway.",
5
5
  "keywords": [
6
6
  "claude",
package/tui/wordmark.mjs CHANGED
@@ -1,16 +1,22 @@
1
- // LAZYCLAW wordmark — ANSI Shadow style block-character rendering, shared
2
- // between the chat splash and the no-arg launcher so the two entry points
3
- // present identical visual identity. 67 cells × 6 rows.
1
+ // User-supplied "Larry 3D"-style LAZYCLAW wordmark — 13 rows × 120 cols.
2
+ // Replaces the v5.0.6 ANSI Shadow version on operator request.
4
3
  export const wordmark = {
5
4
  rows: [
6
- "██╗ █████╗ ███████╗██╗ ██╗ ██████╗██╗ █████╗ ██╗ ██╗",
7
- "██║ ██╔══██╗╚══███╔╝╚██╗ ██╔╝██╔════╝██║ ██╔══██╗██║ ██║",
8
- "██║ ███████║ ███╔╝ ╚████╔╝ ██║ ██║ ███████║██║ █╗ ██║",
9
- "██║ ██╔══██║ ███╔╝ ╚██╔╝ ██║ ██║ ██╔══██║██║███╗██║",
10
- "███████╗██║ ██║███████╗ ██║ ╚██████╗███████╗██║ ██║╚███╔███╔╝",
11
- "╚══════╝╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═════╝╚══════╝╚═╝ ╚═╝ ╚══╝╚══╝ ",
5
+ " ____ ____ _____ _____ _____ _____ ____ ____ _____ ",
6
+ "| | ____|\\ \\ / /|___ |\\ \\ / /| ___|\\ \\ | | ____|\\ \\ |\\ \\ _____ ",
7
+ "| | / /\\ \\ / /| | | \\ \\ / / | / /\\ \\ | | / /\\ \\ | | | / /| ",
8
+ "| | | | | ||\\____\\| | | \\____\\/ / /| | | || | | | | | \\/ / | || ",
9
+ "| | ____ | |__| || | |/ |___\\ | / / / | | |____|| | ____ | |__| | / /_ \\ \\/ ",
10
+ "| | | || .--. | \\|___/ / |\\|___/ / / | | ____ | | | || .--. || // \\ \\ \\ ",
11
+ "| | | || | | | / /| | / / / | | | || | | || | | || |/ \\ | | ",
12
+ "|____|/____/||____| |____| |_____|/____/| /____/ / |\\ ___\\/ /||____|/____/||____| |____||\\ ___/\\ \\| /| ",
13
+ "| | ||| | | | | | | | |` | / | | /____/ || | ||| | | || | | \\______/ | ",
14
+ "|____|_____|/|____| |____| |_____|____|/ |_____|/ \\|___| | /|____|_____|/|____| |____| \\|___|/\\ | | | ",
15
+ " \\( )/ \\( )/ \\( )/ )/ \\( |____|/ \\( )/ \\( )/ \\( \\|____|/ ",
16
+ " ' ' ' ' ' ' ' ' )/ ' ' ' ' ' )/ ",
17
+ " ' ' ",
12
18
  ],
13
- width: 67,
14
- height: 6,
19
+ width: 120,
20
+ height: 13,
15
21
  fg: "#FFB347"
16
22
  };