Ship Assistent 0.11.9: esbuild bundle and patch-keys manifest.

Replace split Assets JS with a built bundle and aligned C#/config so SwarmUI loads one script and patch apply stays consistent; drop legacy terse persona and memory seed.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Leonid Pershin
2026-08-22 13:58:11 +03:00
co-authored by Cursor
parent a5e96f7430
commit e8bb012885
42 changed files with 10652 additions and 1281 deletions
+16 -4
View File
@@ -228,12 +228,24 @@ public partial class SwarmAssistentExtension
{
break;
}
string tool = NextToolHop(patch);
if (string.IsNullOrWhiteSpace(tool))
string follow = null;
JArray civitaiHop = null;
HashSet<string> hopSkip = new(StringComparer.OrdinalIgnoreCase);
while (true)
{
break;
string tool = NextToolHop(patch, hopSkip);
if (string.IsNullOrWhiteSpace(tool))
{
follow = null;
break;
}
(follow, civitaiHop) = await RunToolHop(session, root, embed, pid, chain, patch, tool, hopDone);
if (follow is not null)
{
break;
}
hopSkip.Add(tool);
}
(string follow, JArray civitaiHop) = await RunToolHop(session, root, embed, pid, chain, patch, tool, hopDone);
if (follow is null)
{
break;