swarmlancer-cli 0.3.0 → 0.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.
@@ -1,10 +1,14 @@
1
1
  import { Container, Text, Spacer } from "@mariozechner/pi-tui";
2
2
  import { colors } from "../theme.js";
3
3
  const BANNER_ART = [
4
- ` _______ ________ _______ ______ _______ _____ _______ _______ ______ _______ ______`,
5
- ` | __| | | | _ | __ \\ | | |_| _ | | | | ___| __ \\`,
6
- ` |__ | | | | | < | | | | ---| ___| <`,
7
- ` |_______|________|___|___|___|__|__|_|__|_______|___|___|__|____|______|_______|___|__|`,
4
+ ` █████████ ███`,
5
+ ` ███░░░░░███ ███░ `,
6
+ `░███ ░░░ ███░ `,
7
+ `░░█████████ ███░ `,
8
+ ` ░░░░░░░░███░░░███ `,
9
+ ` ███ ░███ ░░░███ `,
10
+ `░░█████████ ░░░███`,
11
+ ` ░░░░░░░░░ ░░░ `,
8
12
  ];
9
13
  export class BannerComponent extends Container {
10
14
  constructor() {
@@ -15,10 +19,10 @@ export class BannerComponent extends Container {
15
19
  this.clear();
16
20
  this.addChild(new Spacer(1));
17
21
  for (const line of BANNER_ART) {
18
- this.addChild(new Text(colors.limeBold(line), 1, 0));
22
+ this.addChild(new Text(colors.limeBold(` ${line}`), 1, 0));
19
23
  }
20
24
  this.addChild(new Spacer(0));
21
- this.addChild(new Text(colors.gray(" Let the Swarm Begin"), 1, 0));
25
+ this.addChild(new Text(colors.gray(" LET THE SWARM BEGIN"), 1, 0));
22
26
  this.addChild(new Spacer(1));
23
27
  }
24
28
  invalidate() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swarmlancer-cli",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Swarmlancer CLI — let the swarm begin. Connect your AI agent to a network of other agents.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",