@rubytech/create-maxy-code 0.1.120 → 0.1.122

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/index.js CHANGED
@@ -2569,6 +2569,7 @@ function installServiceDarwin() {
2569
2569
  ["EMBED_DIMENSIONS", String(EMBED_DIMS)],
2570
2570
  ["NEO4J_URI", `bolt://localhost:${NEO4J_PORT}`],
2571
2571
  ["PORT", String(PORT)],
2572
+ ["MAXY_UI_INTERNAL_PORT", String(PORT + 1)],
2572
2573
  ["MAXY_PLATFORM_ROOT", `${INSTALL_DIR}/platform`],
2573
2574
  ]) {
2574
2575
  const re = new RegExp(`^${key}=.*$`, "m");
@@ -2580,7 +2581,7 @@ function installServiceDarwin() {
2580
2581
  }
2581
2582
  }
2582
2583
  writeFileSync(envPath, envContent);
2583
- logFile(` .env: DISPLAY_MODE=${DISPLAY_MODE}, EMBED_MODEL=${EMBED_MODEL}, EMBED_DIMENSIONS=${EMBED_DIMS}, NEO4J_URI=bolt://localhost:${NEO4J_PORT}, PORT=${PORT}`);
2584
+ logFile(` .env: DISPLAY_MODE=${DISPLAY_MODE}, EMBED_MODEL=${EMBED_MODEL}, EMBED_DIMENSIONS=${EMBED_DIMS}, NEO4J_URI=bolt://localhost:${NEO4J_PORT}, PORT=${PORT}, MAXY_UI_INTERNAL_PORT=${PORT + 1}`);
2584
2585
  }
2585
2586
  catch (err) {
2586
2587
  console.error(` WARNING: failed to write .env to ${envPath}: ${err instanceof Error ? err.message : String(err)}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-maxy-code",
3
- "version": "0.1.120",
3
+ "version": "0.1.122",
4
4
  "description": "Install Maxy — AI for Productive People",
5
5
  "bin": {
6
6
  "create-maxy-code": "./dist/index.js"
@@ -1175,7 +1175,6 @@ CREATE INDEX postal_address_postcode IF NOT EXISTS
1175
1175
  FOR (a:PostalAddress) ON (a.postalCode);
1176
1176
 
1177
1177
  // ----------------------------------------------------------
1178
- <<<<<<< HEAD
1179
1178
  // AEOAudit — Answer Engine Optimisation audit history (Task 354).
1180
1179
  // Written by the aeo plugin's aeo-audit-page tool when invoked
1181
1180
  // with persist=true. Append-only audit trail; each invocation
@@ -1271,7 +1270,8 @@ FOR (rec:Recommendation) ON (rec.accountId);
1271
1270
 
1272
1271
  CREATE INDEX recommendation_session_key IF NOT EXISTS
1273
1272
  FOR (rec:Recommendation) ON (rec.sessionKey);
1274
- =======
1273
+
1274
+ // ----------------------------------------------------------
1275
1275
  // Idea (Task 352) — original-thinking candidates extracted by
1276
1276
  // the signal-detector specialist from admin-side conversations.
1277
1277
  // Written via memory-write(labels:["Idea"], ...) with one edge
@@ -1295,4 +1295,3 @@ OPTIONS {
1295
1295
  `vector.similarity_function`: 'cosine'
1296
1296
  }
1297
1297
  };
1298
- >>>>>>> worktree-task-352-idea-schema