@agent-link/server 0.1.111 → 0.1.113
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/web/landing.html +1 -1
- package/web/modules/sidebar.js +4 -0
package/package.json
CHANGED
package/web/landing.html
CHANGED
package/web/modules/sidebar.js
CHANGED
|
@@ -71,6 +71,10 @@ export function createSidebar(deps) {
|
|
|
71
71
|
currentClaudeSessionId.value = null;
|
|
72
72
|
needsResume.value = false;
|
|
73
73
|
|
|
74
|
+
// Tell the agent to clear its lastClaudeSessionId so the next message
|
|
75
|
+
// starts a fresh session instead of auto-resuming the previous one.
|
|
76
|
+
wsSend({ type: 'new_conversation' });
|
|
77
|
+
|
|
74
78
|
messages.value.push({
|
|
75
79
|
id: streaming.nextId(), role: 'system',
|
|
76
80
|
content: 'New conversation started.',
|