@symerian/symi 3.5.23 → 3.5.24

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,5 +1,5 @@
1
1
  {
2
- "version": "3.5.23",
3
- "commit": "66d263bff61990e5dcc64e442d9f65f1fa8af545",
4
- "builtAt": "2026-05-25T01:20:21.813Z"
2
+ "version": "3.5.24",
3
+ "commit": "0fede277b0ff18763b0a214d44bb1f14f70a999e",
4
+ "builtAt": "2026-05-25T01:39:21.795Z"
5
5
  }
@@ -1 +1 @@
1
- 063e00b9df996f08fb37af8dcf62c0c89670062268ac0d708967e06575ee06a8
1
+ 496a24055742f1b74c376d74ba042e925eaff527f850397952d72e285075d7cb
@@ -812,7 +812,15 @@ body {
812
812
  .metrics-col {
813
813
  position: fixed;
814
814
  top: 24px;
815
- bottom: 120px;
815
+ /* Stage C.3 (3.5.24): align with the bottom of the prompt-wrap
816
+ (which sits at `bottom: 28px`) so the side columns end at the
817
+ same vertical level as the prompt input's bottom edge. The
818
+ columns are horizontally clear of the prompt-bar (different
819
+ x-ranges) so this only adds usable vertical space — no overlap.
820
+ Previously this was `bottom: 120px` which left ~90px of unused
821
+ space at the bottom and forced symframe content (especially the
822
+ AWAITING footer) to be squeezed off-screen. */
823
+ bottom: 28px;
816
824
  width: 360px;
817
825
  display: flex;
818
826
  flex-direction: column;
@@ -4,7 +4,7 @@ import path from "node:path";
4
4
  import fs, { constants, readFileSync } from "node:fs";
5
5
  import os from "node:os";
6
6
  import { Logger } from "tslog";
7
- import json5 from "json5";
7
+ import JSON5 from "json5";
8
8
  import chalk, { Chalk } from "chalk";
9
9
  import fs$1, { mkdtemp, rm } from "node:fs/promises";
10
10
  import { z } from "zod";
@@ -294,7 +294,7 @@ function readLoggingConfig() {
294
294
  try {
295
295
  if (!fs.existsSync(configPath)) return;
296
296
  const raw = fs.readFileSync(configPath, "utf-8");
297
- const logging = json5.parse(raw)?.logging;
297
+ const logging = JSON5.parse(raw)?.logging;
298
298
  if (!logging || typeof logging !== "object" || Array.isArray(logging)) return;
299
299
  return logging;
300
300
  } catch {
@@ -7392,7 +7392,7 @@ function safeRealpath(target) {
7392
7392
  }
7393
7393
  const defaultResolver = {
7394
7394
  readFile: (p) => fs.readFileSync(p, "utf-8"),
7395
- parseJson: (raw) => json5.parse(raw)
7395
+ parseJson: (raw) => JSON5.parse(raw)
7396
7396
  };
7397
7397
  /**
7398
7398
  * Resolves all $include directives in a parsed config object.
@@ -10623,7 +10623,7 @@ function resolveConfigPathForDeps(deps) {
10623
10623
  function normalizeDeps(overrides = {}) {
10624
10624
  return {
10625
10625
  fs: overrides.fs ?? fs,
10626
- json5: overrides.json5 ?? json5,
10626
+ json5: overrides.json5 ?? JSON5,
10627
10627
  env: overrides.env ?? process.env,
10628
10628
  homedir: overrides.homedir ?? (() => resolveRequiredHomeDir(overrides.env ?? process.env, os.homedir)),
10629
10629
  configPath: overrides.configPath ?? "",
@@ -10634,11 +10634,11 @@ function maybeLoadDotEnvForConfig(env) {
10634
10634
  if (env !== process.env) return;
10635
10635
  loadDotEnv({ quiet: true });
10636
10636
  }
10637
- function parseConfigJson5(raw, json5$1 = json5) {
10637
+ function parseConfigJson5(raw, json5 = JSON5) {
10638
10638
  try {
10639
10639
  return {
10640
10640
  ok: true,
10641
- parsed: json5$1.parse(raw)
10641
+ parsed: json5.parse(raw)
10642
10642
  };
10643
10643
  } catch (err) {
10644
10644
  return {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symi/memory-core",
3
- "version": "3.5.23",
3
+ "version": "3.5.24",
4
4
  "private": true,
5
5
  "description": "Symi core memory search plugin",
6
6
  "type": "module",
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.5.24
4
+
5
+ ### Changes
6
+
7
+ - Version alignment with core Symi release numbers.
8
+
3
9
  ## 3.5.23
4
10
 
5
11
  ### Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symi/msteams",
3
- "version": "3.5.23",
3
+ "version": "3.5.24",
4
4
  "description": "Symi Microsoft Teams channel plugin",
5
5
  "type": "module",
6
6
  "dependencies": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symi/open-prose",
3
- "version": "3.5.23",
3
+ "version": "3.5.24",
4
4
  "private": true,
5
5
  "description": "OpenProse VM skill pack plugin (slash command + telemetry).",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symi/outlook",
3
- "version": "3.5.23",
3
+ "version": "3.5.24",
4
4
  "private": true,
5
5
  "description": "Symi Outlook 365 email integration via Microsoft Graph API",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symi/slack",
3
- "version": "3.5.23",
3
+ "version": "3.5.24",
4
4
  "private": true,
5
5
  "description": "Symi Slack channel plugin",
6
6
  "type": "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@symerian/symi",
3
- "version": "3.5.23",
3
+ "version": "3.5.24",
4
4
  "description": "Multi-channel AI gateway with extensible messaging integrations",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/jaysteelmind/symi#readme",