@rubytech/create-maxy-code 0.1.243 → 0.1.244

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rubytech/create-maxy-code",
3
- "version": "0.1.243",
3
+ "version": "0.1.244",
4
4
  "description": "Install Maxy — AI for Productive People",
5
5
  "bin": {
6
6
  "create-maxy-code": "./dist/index.js"
@@ -930,11 +930,6 @@ FOR (n:Idea) ON (n.sliceToken);
930
930
  // displayName — operator-facing name from config.json
931
931
  // status — 'active' | 'inactive' | <other> per config.json
932
932
  // model — Anthropic model id used by the public agent
933
- // liveMemory — bool; when true, the public PTY spawn includes
934
- // memory-search in --allowed-tools so the agent can
935
- // hit the graph at message time (scoped via
936
- // ALLOWED_SCOPES=public). When false, the agent
937
- // runs with only its baked KNOWLEDGE.md.
938
933
  // knowledgeKeywords — string[] used by update-knowledge to broaden the
939
934
  // refresh query alongside operator-tagged nodes
940
935
  // role — always 'agent' (mirrors KnowledgeDocument.role
@@ -1289,7 +1289,7 @@ server.tool("agent-image", "Upload, update, or remove an agent's image. action=s
1289
1289
  // ---------------------------------------------------------------------------
1290
1290
  // Agent config tools — deterministic reads for agent configuration
1291
1291
  // ---------------------------------------------------------------------------
1292
- server.tool("agent-config-read", "Read the full config.json for a specific public agent by slug. Returns the complete configuration including slug, displayName, model, plugins, status, liveMemory, and any other fields.", {
1292
+ server.tool("agent-config-read", "Read the full config.json for a specific public agent by slug. Returns the complete configuration including slug, displayName, model, plugins, status, and any other fields.", {
1293
1293
  slug: z.string().describe("Agent slug (directory name under agents/)"),
1294
1294
  }, async ({ slug }) => {
1295
1295
  if (!ACCOUNT_ID)
@@ -1327,7 +1327,7 @@ server.tool("agent-config-read", "Read the full config.json for a specific publi
1327
1327
  };
1328
1328
  }
1329
1329
  });
1330
- server.tool("agent-list", "List all public (non-admin) agents with their full configuration: slug, displayName, model, plugins, status, liveMemory, and whether each is the account's default agent.", {}, async () => {
1330
+ server.tool("agent-list", "List all public (non-admin) agents with their full configuration: slug, displayName, model, plugins, status, and whether each is the account's default agent.", {}, async () => {
1331
1331
  if (!ACCOUNT_ID)
1332
1332
  return refuseNoAccount("agent-list");
1333
1333
  const TAG = "[admin:agent-list]";
@@ -1367,7 +1367,6 @@ server.tool("agent-list", "List all public (non-admin) agents with their full co
1367
1367
  model: config.model,
1368
1368
  plugins: config.plugins,
1369
1369
  status: config.status,
1370
- liveMemory: config.liveMemory === true || config.liveMemory === "true",
1371
1370
  isDefault: entry.name === defaultAgent,
1372
1371
  });
1373
1372
  }