agent-swarm-kit 1.0.210 → 1.0.211

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/build/index.cjs CHANGED
@@ -10612,10 +10612,7 @@ class DocService {
10612
10612
  {
10613
10613
  result.push("---");
10614
10614
  result.push(`title: ${prefix}/${swarmSchema.swarmName}`);
10615
- result.push(`children:`);
10616
- swarmSchema.agentList.forEach((agentName) => {
10617
- result.push(` - ./agent/${agentName}.md`);
10618
- });
10615
+ result.push(`group: ${prefix}`);
10619
10616
  result.push("---");
10620
10617
  result.push("");
10621
10618
  }
@@ -10715,6 +10712,7 @@ class DocService {
10715
10712
  {
10716
10713
  result.push("---");
10717
10714
  result.push(`title: ${prefix}/${agentSchema.agentName}.md`);
10715
+ result.push(`group: ${prefix}`);
10718
10716
  result.push("---");
10719
10717
  result.push("");
10720
10718
  }
package/build/index.mjs CHANGED
@@ -10610,10 +10610,7 @@ class DocService {
10610
10610
  {
10611
10611
  result.push("---");
10612
10612
  result.push(`title: ${prefix}/${swarmSchema.swarmName}`);
10613
- result.push(`children:`);
10614
- swarmSchema.agentList.forEach((agentName) => {
10615
- result.push(` - ./agent/${agentName}.md`);
10616
- });
10613
+ result.push(`group: ${prefix}`);
10617
10614
  result.push("---");
10618
10615
  result.push("");
10619
10616
  }
@@ -10713,6 +10710,7 @@ class DocService {
10713
10710
  {
10714
10711
  result.push("---");
10715
10712
  result.push(`title: ${prefix}/${agentSchema.agentName}.md`);
10713
+ result.push(`group: ${prefix}`);
10716
10714
  result.push("---");
10717
10715
  result.push("");
10718
10716
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.0.210",
3
+ "version": "1.0.211",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",