@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 +1 -1
- package/payload/platform/neo4j/schema.cypher +0 -5
- package/payload/platform/plugins/admin/mcp/dist/index.js +2 -3
- package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -1
- package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +4 -7
- package/payload/platform/plugins/admin/skills/public-agent-manager/SKILL.md +8 -18
- package/payload/platform/plugins/docs/references/internals.md +3 -6
- package/payload/platform/plugins/memory/PLUGIN.md +2 -2
- package/payload/platform/services/claude-session-manager/dist/http-server.d.ts.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/http-server.js +1 -32
- package/payload/platform/services/claude-session-manager/dist/http-server.js.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/pty-spawner.d.ts +6 -32
- package/payload/platform/services/claude-session-manager/dist/pty-spawner.d.ts.map +1 -1
- package/payload/platform/services/claude-session-manager/dist/pty-spawner.js +121 -129
- package/payload/platform/services/claude-session-manager/dist/pty-spawner.js.map +1 -1
- package/payload/platform/templates/agents/public/IDENTITY.md +9 -62
- package/payload/platform/templates/agents/public/config.json +0 -1
- package/payload/server/{chunk-ZY6W3UA2.js → chunk-SRO5RFMV.js} +1 -20
- package/payload/server/maxy-edge.js +1 -1
- package/payload/server/server.js +7 -21
package/package.json
CHANGED
|
@@ -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,
|
|
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,
|
|
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
|
}
|