@agent-link/server 0.1.140 → 0.1.142
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 +11 -0
- package/web/landing.zh.html +11 -0
- package/web/modules/connection.js +0 -3
package/package.json
CHANGED
package/web/landing.html
CHANGED
|
@@ -1182,6 +1182,17 @@
|
|
|
1182
1182
|
<p>Add <code style="color:var(--green);font-family:'JetBrains Mono',monospace;font-size:0.8rem">--password</code> to lock your session. Brute-force protection built in.</p>
|
|
1183
1183
|
</div>
|
|
1184
1184
|
|
|
1185
|
+
<!-- Multi-Agent Teams -->
|
|
1186
|
+
<div class="bento-card">
|
|
1187
|
+
<div class="bento-visual">
|
|
1188
|
+
<div class="bento-icon blue">
|
|
1189
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
|
|
1190
|
+
</div>
|
|
1191
|
+
</div>
|
|
1192
|
+
<h3>Multi-Agent Teams</h3>
|
|
1193
|
+
<p>Spawn parallel Claude subagents to tackle complex tasks. Live kanban board, activity feed, and team history.</p>
|
|
1194
|
+
</div>
|
|
1195
|
+
|
|
1185
1196
|
<!-- Markdown Preview -->
|
|
1186
1197
|
<div class="bento-card">
|
|
1187
1198
|
<div class="bento-visual">
|
package/web/landing.zh.html
CHANGED
|
@@ -1181,6 +1181,17 @@
|
|
|
1181
1181
|
<p>加个 <code style="color:var(--green);font-family:'JetBrains Mono',monospace;font-size:0.8rem">--password</code> 参数锁住会话,自带暴力破解防护。</p>
|
|
1182
1182
|
</div>
|
|
1183
1183
|
|
|
1184
|
+
<!-- 多 Agent 协作 -->
|
|
1185
|
+
<div class="bento-card">
|
|
1186
|
+
<div class="bento-visual">
|
|
1187
|
+
<div class="bento-icon blue">
|
|
1188
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path></svg>
|
|
1189
|
+
</div>
|
|
1190
|
+
</div>
|
|
1191
|
+
<h3>多 Agent 协作</h3>
|
|
1192
|
+
<p>启动多个 Claude 子 Agent 并行处理复杂任务,实时看板面板、活动动态、团队历史记录。</p>
|
|
1193
|
+
</div>
|
|
1194
|
+
|
|
1184
1195
|
<!-- Markdown Preview -->
|
|
1185
1196
|
<div class="bento-card">
|
|
1186
1197
|
<div class="bento-visual">
|
|
@@ -627,9 +627,6 @@ export function createConnection(deps) {
|
|
|
627
627
|
// Restore active team state on reconnect
|
|
628
628
|
if (team && msg.activeTeam) {
|
|
629
629
|
team.handleActiveTeamRestore(msg.activeTeam);
|
|
630
|
-
} else if (team && !msg.activeTeam && msg.lastCompletedTeamId) {
|
|
631
|
-
// Team completed before page refresh — auto-load as historical view
|
|
632
|
-
team.viewHistoricalTeam(msg.lastCompletedTeamId);
|
|
633
630
|
}
|
|
634
631
|
} else if (msg.type === 'error') {
|
|
635
632
|
streaming.flushReveal();
|