@rivus/agent 0.13.0 → 0.13.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10035,7 +10035,7 @@ function createStructuredAutomationCard(presentation) {
10035
10035
  if (presentation.summary || index > 0) elements.push({ tag: "hr" });
10036
10036
  elements.push({
10037
10037
  content: `**${escapeMarkdown(section.title)}**`,
10038
- margin: "4px 0px 0px 0px",
10038
+ margin: "8px 0px 2px 0px",
10039
10039
  tag: "markdown",
10040
10040
  text_size: "heading"
10041
10041
  });
@@ -10071,7 +10071,7 @@ function renderDigestItem(item) {
10071
10071
  const note = item.note ? `\n<font color='grey'>${escapeMarkdown(item.note)}</font>` : "";
10072
10072
  return {
10073
10073
  content: `• ${escapeMarkdown(item.headline)}${sources ? ` ${sources}` : ""}${note}`,
10074
- margin: "4px 0px 0px 0px",
10074
+ margin: "8px 0px 0px 0px",
10075
10075
  tag: "markdown",
10076
10076
  text_size: "normal"
10077
10077
  };
@@ -10081,12 +10081,12 @@ function automationCard(title, elements) {
10081
10081
  body: {
10082
10082
  direction: "vertical",
10083
10083
  elements,
10084
- padding: "18px 18px 16px 18px",
10084
+ padding: "14px 14px 14px 14px",
10085
10085
  vertical_spacing: "small"
10086
10086
  },
10087
10087
  config: { update_multi: true },
10088
10088
  header: {
10089
- padding: "12px 18px 12px 18px",
10089
+ padding: "12px 14px 12px 14px",
10090
10090
  template: "blue",
10091
10091
  title: {
10092
10092
  content: title,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rivus/agent",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "A local agent daemon core built around a usable agent harness and domain events.",
5
5
  "type": "module",
6
6
  "license": "MIT",