dank-ai 1.0.11 → 1.0.12

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.
Files changed (2) hide show
  1. package/README.md +7 -4
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,9 +1,16 @@
1
+ <div align="center">
2
+ <img src="assets/danklarge.png" alt="Dank Logo" width="400">
3
+ </div>
4
+
1
5
  # 🚀 Dank Agent Service
2
6
 
3
7
  **Docker-based AI Agent Orchestration Platform**
4
8
 
5
9
  Dank is a powerful Node.js service that allows you to define, deploy, and manage AI agents using Docker containers. Each agent runs in its own isolated environment with configurable resources, LLM providers, and custom handlers. Built for production with comprehensive CI/CD support and Docker registry integration.
6
10
 
11
+ 🌐 **Website**: [https://dank-ai.xyz](https://dank-ai.xyz)
12
+ 📦 **NPM Package**: [https://www.npmjs.com/package/dank-ai](https://www.npmjs.com/package/dank-ai)
13
+
7
14
  ## ✨ Features
8
15
 
9
16
  - **🤖 Multi-LLM Support**: OpenAI, Anthropic, Cohere, Ollama, and custom providers
@@ -97,10 +104,6 @@ module.exports = {
97
104
  # Build agent images (base image is pulled automatically)
98
105
  dank build
99
106
 
100
- # Or build only the base image
101
- dank build --base
102
- ```
103
-
104
107
  ### 6. Start your agents
105
108
  ```bash
106
109
  # Start all agents
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dank-ai",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "Dank Agent Service - Docker-based AI agent orchestration platform",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -19,6 +19,7 @@
19
19
  "docker:build-base": "docker build -t dank-agent-base -f docker/Dockerfile.base ."
20
20
  },
21
21
  "dependencies": {
22
+ "axios": "^1.7.9",
22
23
  "commander": "^11.0.0",
23
24
  "chalk": "^4.1.2",
24
25
  "dockerode": "^4.0.0",