@rubytech/create-maxy 1.0.711 → 1.0.712

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 (22) hide show
  1. package/dist/index.js +38 -3
  2. package/package.json +2 -2
  3. package/payload/platform/plugins/linkedin-import/PLUGIN.md +1 -0
  4. package/payload/platform/plugins/linkedin-import/skills/linkedin-import/SKILL.md +26 -5
  5. package/payload/platform/plugins/linkedin-import/skills/linkedin-import/references/connections.md +53 -82
  6. package/payload/platform/plugins/linkedin-import/skills/linkedin-import/references/profile.md +42 -49
  7. package/payload/platform/plugins/memory/PLUGIN.md +1 -0
  8. package/payload/platform/plugins/memory/mcp/dist/index.js +48 -0
  9. package/payload/platform/plugins/memory/mcp/dist/index.js.map +1 -1
  10. package/payload/platform/plugins/memory/mcp/dist/tools/memory-archive-write.d.ts +33 -0
  11. package/payload/platform/plugins/memory/mcp/dist/tools/memory-archive-write.d.ts.map +1 -0
  12. package/payload/platform/plugins/memory/mcp/dist/tools/memory-archive-write.js +229 -0
  13. package/payload/platform/plugins/memory/mcp/dist/tools/memory-archive-write.js.map +1 -0
  14. package/payload/platform/scripts/redact-install-logs.sh +85 -0
  15. package/payload/platform/scripts/setup.sh +20 -3
  16. package/payload/platform/scripts/verify-skill-tool-surface.sh +255 -0
  17. package/payload/platform/templates/specialists/agents/database-operator.md +6 -2
  18. package/payload/server/chunk-U5JPRUYZ.js +12298 -0
  19. package/payload/server/maxy-edge.js +1 -1
  20. package/payload/server/public/assets/{graph-BNx6E7BH.js → graph-DJ7IfYHV.js} +12 -12
  21. package/payload/server/public/graph.html +1 -1
  22. package/payload/server/server.js +16 -9
@@ -5,7 +5,7 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
6
  <title>Graph — Maxy</title>
7
7
  <link rel="icon" href="/favicon.ico">
8
- <script type="module" crossorigin src="/assets/graph-BNx6E7BH.js"></script>
8
+ <script type="module" crossorigin src="/assets/graph-DJ7IfYHV.js"></script>
9
9
  <link rel="modulepreload" crossorigin href="/assets/chunk-DD-I1_y5.js">
10
10
  <link rel="modulepreload" crossorigin href="/assets/jsx-runtime-BUs3sHtV.js">
11
11
  <link rel="modulepreload" crossorigin href="/assets/Checkbox-CjbS9JcG.js">
@@ -98,7 +98,7 @@ import {
98
98
  vncLog,
99
99
  waitForExit,
100
100
  writeChromiumWrapper
101
- } from "./chunk-A5K3CFMI.js";
101
+ } from "./chunk-U5JPRUYZ.js";
102
102
 
103
103
  // ../lib/graph-trash/dist/index.js
104
104
  var require_dist = __commonJS({
@@ -11194,6 +11194,11 @@ app29.put("/", requireAdminSession, async (c) => {
11194
11194
  console.error(
11195
11195
  `[graph-page] default-view-rejected op=save account=${accountId} reason="${validation.reason}"`
11196
11196
  );
11197
+ if (validation.code === "not-eligible-chip") {
11198
+ console.error(
11199
+ `[graph-page] default-view-save-rejected reason=not-eligible-chip label="${validation.label}" account=${accountId}`
11200
+ );
11201
+ }
11197
11202
  return c.json({ error: validation.reason }, 400);
11198
11203
  }
11199
11204
  const { labels, includeTrashed } = validation;
@@ -11227,21 +11232,23 @@ app29.put("/", requireAdminSession, async (c) => {
11227
11232
  });
11228
11233
  function validateBody2(body) {
11229
11234
  if (!Array.isArray(body.labels)) {
11230
- return { ok: false, reason: "labels must be an array of strings" };
11235
+ return { ok: false, code: "shape", reason: "labels must be an array of strings" };
11231
11236
  }
11232
11237
  if (typeof body.includeTrashed !== "boolean") {
11233
- return { ok: false, reason: "includeTrashed must be a boolean" };
11238
+ return { ok: false, code: "shape", reason: "includeTrashed must be a boolean" };
11234
11239
  }
11235
11240
  const seen = /* @__PURE__ */ new Set();
11236
11241
  for (const lbl of body.labels) {
11237
11242
  if (typeof lbl !== "string") {
11238
- return { ok: false, reason: "labels must be an array of strings" };
11239
- }
11240
- if (!isKnownLabel(lbl)) {
11241
- return { ok: false, reason: `unknown label "${lbl}" \u2014 not registered in graph-labels.ts` };
11243
+ return { ok: false, code: "shape", reason: "labels must be an array of strings" };
11242
11244
  }
11243
- if (isHiddenByDefault(lbl)) {
11244
- return { ok: false, reason: `label "${lbl}" is hidden by default and cannot be a default view selection` };
11245
+ if (!FILTER_TOP_LEVEL_LABELS.has(lbl)) {
11246
+ return {
11247
+ ok: false,
11248
+ code: "not-eligible-chip",
11249
+ label: lbl,
11250
+ reason: `label "${lbl}" is not eligible for default view \u2014 outside the chip allowlist (FILTER_TOP_LEVEL_LABELS, Task 753)`
11251
+ };
11245
11252
  }
11246
11253
  seen.add(lbl);
11247
11254
  }