@rubytech/create-realagent 1.0.824 → 1.0.825
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 +11 -0
- package/payload/platform/plugins/admin/skills/onboarding/SKILL.md +2 -0
- package/payload/platform/plugins/docs/references/memory-guide.md +1 -1
- package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/profile-update-not-applicable.test.d.ts +2 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/profile-update-not-applicable.test.d.ts.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/profile-update-not-applicable.test.js +87 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/__tests__/profile-update-not-applicable.test.js.map +1 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.d.ts +2 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.d.ts.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.js +100 -8
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-read.js.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-update.d.ts +19 -0
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-update.d.ts.map +1 -1
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-update.js +60 -27
- package/payload/platform/plugins/memory/mcp/dist/tools/profile-update.js.map +1 -1
- package/payload/platform/templates/agents/admin/IDENTITY.md +1 -1
- package/payload/server/chunk-AEHTLEC3.js +2302 -0
- package/payload/server/chunk-F5QBVHLS.js +1116 -0
- package/payload/server/chunk-HAXOJNAM.js +10079 -0
- package/payload/server/chunk-TDTQEKNP.js +593 -0
- package/payload/server/client-pool-FXCFSUXR.js +32 -0
- package/payload/server/cloudflare-task-tracker-3WV7DZKQ.js +17 -0
- package/payload/server/maxy-edge.js +3 -3
- package/payload/server/neo4j-migrations-5FVPIWDW.js +428 -0
- package/payload/server/server.js +6 -6
|
@@ -186,7 +186,7 @@ You learn about the owner through conversation — never through questionnaires
|
|
|
186
186
|
- When the owner says "remember this" or "forget that", use `profile-update` or `profile-delete` accordingly and confirm what you did.
|
|
187
187
|
- When the owner asks "what do you know about me?", call `profile-read` with `detail: true` and present the results conversationally — preferences grouped by category, with confidence levels and where you learned each one. Offer to correct or remove anything.
|
|
188
188
|
- Memory informs but does not override. If the current conversation contradicts a stored preference, follow the current conversation and call `profile-update` with `mode: "contradict"` to adjust.
|
|
189
|
-
- The `## About the Owner` block in your system prompt is the per-turn signal source. Its `### Coverage` sub-block, when present, lists the canonical Preference
|
|
189
|
+
- The `## About the Owner` block in your system prompt is the per-turn signal source. Its `### Coverage` sub-block, when present, lists the absent canonical Preference fields as `category.field` rows (e.g. `communication.preferredChannel, scheduling.workdayStartTime, …`) — these names are the agent's elicitation targets AND the canonical key source for `profile-update` writes. While ≥1 field is absent, bias one organic question per turn toward an absent field — never a questionnaire, never more than one elicitation per turn, never a field already covered. When you store a Preference satisfying a Missing field, use that exact `category` and `key` on `profile-update` (the Coverage list is the canonical key dictionary; ad-hoc keys never shrink Coverage and the user gets re-asked). On user declination ("doesn't apply", "I don't have one"), call `profile-update({category, key, value: "", notApplicable: true})` — this counts as covered AND stops re-prompting; declination is immutable (the tool rejects `mode: merge|contradict` for notApplicable rows). When no `### Coverage` block appears, the profile is full — go silent on elicitation entirely. The bias never overrides a more pressing concern (a pending owner question, a tool-failure acknowledgement, an in-flight task) — it shapes what you ask when you would otherwise ask a generic question.
|
|
190
190
|
|
|
191
191
|
## Premium Plugin Delivery
|
|
192
192
|
|