agent-swarm-kit 1.0.208 → 1.0.209
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 +16 -0
- package/build/index.mjs +16 -0
- package/package.json +4 -2
package/build/index.cjs
CHANGED
|
@@ -10609,6 +10609,16 @@ class DocService {
|
|
|
10609
10609
|
swarmSchema,
|
|
10610
10610
|
});
|
|
10611
10611
|
const result = [];
|
|
10612
|
+
{
|
|
10613
|
+
result.push("---");
|
|
10614
|
+
result.push(`title: ${swarmSchema.swarmName}.md`);
|
|
10615
|
+
result.push(`children:`);
|
|
10616
|
+
swarmSchema.agentList.forEach((agentName) => {
|
|
10617
|
+
result.push(` - ./agent/${agentName}.md`);
|
|
10618
|
+
});
|
|
10619
|
+
result.push("---");
|
|
10620
|
+
result.push("");
|
|
10621
|
+
}
|
|
10612
10622
|
{
|
|
10613
10623
|
result.push(`# ${swarmSchema.swarmName}`);
|
|
10614
10624
|
if (swarmSchema.docDescription) {
|
|
@@ -10702,6 +10712,12 @@ class DocService {
|
|
|
10702
10712
|
agentSchema,
|
|
10703
10713
|
});
|
|
10704
10714
|
const result = [];
|
|
10715
|
+
{
|
|
10716
|
+
result.push("---");
|
|
10717
|
+
result.push(`title: ${agentSchema.agentName}.md`);
|
|
10718
|
+
result.push("---");
|
|
10719
|
+
result.push("");
|
|
10720
|
+
}
|
|
10705
10721
|
{
|
|
10706
10722
|
result.push(`# ${agentSchema.agentName}`);
|
|
10707
10723
|
if (agentSchema.docDescription) {
|
package/build/index.mjs
CHANGED
|
@@ -10607,6 +10607,16 @@ class DocService {
|
|
|
10607
10607
|
swarmSchema,
|
|
10608
10608
|
});
|
|
10609
10609
|
const result = [];
|
|
10610
|
+
{
|
|
10611
|
+
result.push("---");
|
|
10612
|
+
result.push(`title: ${swarmSchema.swarmName}.md`);
|
|
10613
|
+
result.push(`children:`);
|
|
10614
|
+
swarmSchema.agentList.forEach((agentName) => {
|
|
10615
|
+
result.push(` - ./agent/${agentName}.md`);
|
|
10616
|
+
});
|
|
10617
|
+
result.push("---");
|
|
10618
|
+
result.push("");
|
|
10619
|
+
}
|
|
10610
10620
|
{
|
|
10611
10621
|
result.push(`# ${swarmSchema.swarmName}`);
|
|
10612
10622
|
if (swarmSchema.docDescription) {
|
|
@@ -10700,6 +10710,12 @@ class DocService {
|
|
|
10700
10710
|
agentSchema,
|
|
10701
10711
|
});
|
|
10702
10712
|
const result = [];
|
|
10713
|
+
{
|
|
10714
|
+
result.push("---");
|
|
10715
|
+
result.push(`title: ${agentSchema.agentName}.md`);
|
|
10716
|
+
result.push("---");
|
|
10717
|
+
result.push("");
|
|
10718
|
+
}
|
|
10703
10719
|
{
|
|
10704
10720
|
result.push(`# ${agentSchema.agentName}`);
|
|
10705
10721
|
if (agentSchema.docDescription) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-swarm-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.209",
|
|
4
4
|
"description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Petr Tripolsky",
|
|
@@ -43,7 +43,9 @@
|
|
|
43
43
|
"build:docs": "rimraf docs && mkdir docs && node ./scripts/dts-docs.cjs ./types.d.ts ./docs",
|
|
44
44
|
"docs:gpt": "npm run build && node ./scripts/gpt-docs.mjs",
|
|
45
45
|
"docs:uml": "npm run build && node ./scripts/uml.mjs",
|
|
46
|
-
"docs:www": "typedoc",
|
|
46
|
+
"docs:www": "rimraf docs/wwwroot && typedoc",
|
|
47
|
+
"docs:demo:win": ".\\scripts\\win\\build_demo_docs.bat",
|
|
48
|
+
"docs:demo": "sh ./scripts/linux/build_demo_docs.sh",
|
|
47
49
|
"repl": "dotenv -e .env -- npm run build && node -e \"import('./scripts/repl.mjs')\" --interactive"
|
|
48
50
|
},
|
|
49
51
|
"main": "build/index.cjs",
|