dank-ai 1.0.24 → 1.0.25

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.
@@ -1175,8 +1175,9 @@ class DockerManager {
1175
1175
  // Base repository name logic
1176
1176
  let repoName;
1177
1177
  if (tagByAgent) {
1178
- // Use a common repository for all agents; differentiate by tag
1179
- repoName = 'dank-agent';
1178
+ // Use a common repository only when no namespace is provided
1179
+ // Otherwise, fall back to per-agent repository name
1180
+ repoName = namespace ? agent.name.toLowerCase() : 'dank-agent';
1180
1181
  } else {
1181
1182
  // Default: per-agent repository name
1182
1183
  repoName = agent.name.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dank-ai",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "Dank Agent Service - Docker-based AI agent orchestration platform",
5
5
  "main": "lib/index.js",
6
6
  "exports": {