agenticmail 0.3.7 → 0.3.9

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.
@@ -74,7 +74,7 @@ function renderBubble(text, side) {
74
74
  }
75
75
  return output.join("\n");
76
76
  }
77
- function renderAgentLabel(name = "Fola") {
77
+ function renderAgentLabel(name = "Agentic Mail") {
78
78
  return ` ${"\u{1F380}"} ${bold(cyan(name))}`;
79
79
  }
80
80
  function renderUserLabel(name = "You") {
package/dist/cli.js CHANGED
@@ -3148,7 +3148,7 @@ ${orig.text || ""}`;
3148
3148
  const top = c.dim(boxChar.tl + boxChar.h.repeat(width) + boxChar.tr);
3149
3149
  const bot = c.dim(boxChar.bl + boxChar.h.repeat(width) + boxChar.br);
3150
3150
  if (savedUp > 0) {
3151
- process.stdout.write(`\x1B[${savedUp + 1}A\r\x1B[J`);
3151
+ process.stdout.write(`\x1B[${savedUp}A\r\x1B[J`);
3152
3152
  }
3153
3153
  process.stdout.write(`${top}
3154
3154
  `);
@@ -3167,8 +3167,7 @@ ${orig.text || ""}`;
3167
3167
  const onKey = (_ch, key) => {
3168
3168
  if (!key) return;
3169
3169
  const eraseBox = () => {
3170
- const up = savedUp + 1;
3171
- process.stdout.write(`\x1B[${up}A\r\x1B[J`);
3170
+ process.stdout.write(`\x1B[${savedUp}A\r\x1B[J`);
3172
3171
  };
3173
3172
  if (key.name === "escape") {
3174
3173
  process.stdin.removeListener("keypress", onKey);
@@ -3279,7 +3278,7 @@ ${orig.text || ""}`;
3279
3278
  renderUserLabel,
3280
3279
  renderThinking,
3281
3280
  randomThinking
3282
- } = await import("./chat-ui-MQIYQOFL.js");
3281
+ } = await import("./chat-ui-AP77ISXP.js");
3283
3282
  const chat = new WsChat({
3284
3283
  gatewayUrl: `ws://127.0.0.1:${gatewayPort}`,
3285
3284
  token: gatewayToken
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenticmail",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "description": "Email infrastructure for AI agents — send and receive real email programmatically",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",