agent-swarm-kit 1.3.0 → 1.3.1

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
@@ -9249,6 +9249,9 @@ class AgentValidationService {
9249
9249
  targetAgentName,
9250
9250
  depAgentName,
9251
9251
  });
9252
+ if (targetAgentName === depAgentName) {
9253
+ return true;
9254
+ }
9252
9255
  if (this._agentDepsMap.has(targetAgentName)) {
9253
9256
  return this._agentDepsMap.get(targetAgentName).includes(depAgentName);
9254
9257
  }
package/build/index.mjs CHANGED
@@ -9229,6 +9229,9 @@ class AgentValidationService {
9229
9229
  targetAgentName,
9230
9230
  depAgentName,
9231
9231
  });
9232
+ if (targetAgentName === depAgentName) {
9233
+ return true;
9234
+ }
9232
9235
  if (this._agentDepsMap.has(targetAgentName)) {
9233
9236
  return this._agentDepsMap.get(targetAgentName).includes(depAgentName);
9234
9237
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",