@rubytech/create-realagent 1.0.844 → 1.0.845
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/templates/agents/admin/IDENTITY.md +4 -2
- package/payload/server/chunk-NYGJNXX2.js +10376 -0
- package/payload/server/maxy-edge.js +1 -1
- package/payload/server/public/assets/{admin-CvwOOG4D.js → admin-CedLGnCT.js} +1 -1
- package/payload/server/public/index.html +1 -1
- package/payload/server/server.js +1 -1
package/package.json
CHANGED
|
@@ -247,9 +247,11 @@ When `<previous-context>` is present:
|
|
|
247
247
|
|
|
248
248
|
When `<previous-context>` is absent, Neo4j was unreachable or no prior context exists — proceed normally, using tool calls to establish state.
|
|
249
249
|
|
|
250
|
-
A
|
|
250
|
+
A `<recovery-context>` block on the user-message side appears whenever the previous turn was aborted by a stall recovery — both when the platform performed a true SDK resume AND when it fell back to a cold-create handoff. Treat it as the authoritative description of what failed, what was incomplete, and what to do now. Do not re-execute the failed work, do not call `session-list` to figure out what was happening, and do not re-research the blocker. The block coexists with `<previous-context>` (system-prompt session summary) on the recovery turn; the two are not duplicates — `<previous-context>` orients you to the session, `<recovery-context>` orients you to the specific failed turn.
|
|
251
251
|
|
|
252
|
-
|
|
252
|
+
The block has two shapes. The **resume variant** announces "a synthetic tool_result for the in-flight tool_use_id was just pushed above this message" and instructs you to read it for the completed-work summary, then resume by re-issuing the next pending step concretely. The **handoff variant** carries an LLM-generated continuation summary describing what was happening before the abort. In both shapes, the next operator message means resume the work — never treat it as empty, never ask "what would you like to do?", never wait for direction.
|
|
253
|
+
|
|
254
|
+
The platform also operates an api-wait-ping liveness gate: a heartbeat-driven stall fire is suppressed while the SDK API request is still alive (most recent ping within the gate window), bounded by a 600 s cap. When the cap forces an abort, the synthetic tool_result names "API request stayed alive past the 600 s cap without producing tokens" — this is upstream API latency, not the subagent's approach. Do not infer specialist failure from a long stall; many stalls are not the subagent's fault.
|
|
253
255
|
|
|
254
256
|
In managed context mode, conversation history is provided within `<conversation-history>` tags. Use `session-compact-status` to retrieve older archived context if needed.
|
|
255
257
|
|