swarmlancer-cli 0.4.0 → 0.4.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/dist/app.js CHANGED
@@ -285,7 +285,7 @@ async function runAgentSession() {
285
285
  id: resolved.model,
286
286
  name: resolved.model,
287
287
  };
288
- const sessionGoal = await askSessionGoal();
288
+ const sessionGoal = "";
289
289
  const config = getConfig();
290
290
  const discovery = agent.discovery;
291
291
  const limits = agent.limits;
@@ -2,13 +2,12 @@ import { Container, Text, Spacer } from "@mariozechner/pi-tui";
2
2
  import { colors } from "../theme.js";
3
3
  const BANNER_ART = [
4
4
  ` █████████ ███`,
5
- ` ███░░░░░███ ███░ `,
6
- `░███ ░░░ ███░ `,
7
- `░░█████████ ███░ `,
8
- ` ░░░░░░░░███░░░███ `,
9
- ` ███ ░███ ░░░███ `,
10
- `░░█████████ ░░░███`,
11
- ` ░░░░░░░░░ ░░░ `,
5
+ ` ███ ███ ███ `,
6
+ ` ███ ███ `,
7
+ ` █████████ ███ `,
8
+ ` ███ ███ `,
9
+ ` ███ ███ ███ `,
10
+ ` █████████ ███`,
12
11
  ];
13
12
  export class BannerComponent extends Container {
14
13
  constructor() {
@@ -22,7 +21,7 @@ export class BannerComponent extends Container {
22
21
  this.addChild(new Text(colors.limeBold(` ${line}`), 1, 0));
23
22
  }
24
23
  this.addChild(new Spacer(0));
25
- this.addChild(new Text(colors.gray(" LET THE SWARM BEGIN"), 1, 0));
24
+ this.addChild(new Text(colors.gray(" LET THE SWARM BEGIN!"), 1, 0));
26
25
  this.addChild(new Spacer(1));
27
26
  }
28
27
  invalidate() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swarmlancer-cli",
3
- "version": "0.4.0",
3
+ "version": "0.4.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",