dank-ai 1.0.0 → 1.0.2
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-context-api-agent/Dockerfile +3 -0
- package/.build-context-basic-agent/Dockerfile +3 -0
- package/.build-context-prompt-only-agent/Dockerfile +3 -0
- package/.build-context-webhook-agent/Dockerfile +3 -0
- package/.env.example +22 -0
- package/README.md +66 -1290
- package/agents/example-agent.js +41 -0
- package/dank.config.js +210 -0
- package/docker/package-lock.json +2899 -0
- package/docker/package.json +7 -6
- package/example/README.md +176 -0
- package/example/dank.config.js +301 -0
- package/lib/agent.js +14 -19
- package/lib/cli/init.js +335 -8
- package/lib/project.js +258 -19
- package/package.json +20 -41
package/package.json
CHANGED
|
@@ -1,52 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Dank
|
|
5
|
-
"main": "
|
|
6
|
-
"exports": {
|
|
7
|
-
".": "./lib/index.js",
|
|
8
|
-
"./lib": "./lib/index.js",
|
|
9
|
-
"./lib/*": "./lib/*"
|
|
10
|
-
},
|
|
11
|
-
"bin": {
|
|
12
|
-
"dank": "./bin/dank"
|
|
13
|
-
},
|
|
2
|
+
"name": "dank-ai",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Dank AI",
|
|
5
|
+
"main": "dank.config.js",
|
|
14
6
|
"scripts": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
7
|
+
"start": "dank run",
|
|
8
|
+
"dev": "dank run --config dank.config.js",
|
|
9
|
+
"stop": "dank stop",
|
|
10
|
+
"status": "dank status",
|
|
11
|
+
"logs": "dank logs",
|
|
12
|
+
"build": "dank build",
|
|
13
|
+
"clean": "dank clean"
|
|
20
14
|
},
|
|
21
15
|
"dependencies": {
|
|
22
|
-
"
|
|
23
|
-
"chalk": "^4.1.2",
|
|
24
|
-
"dockerode": "^4.0.0",
|
|
25
|
-
"js-yaml": "^4.1.0",
|
|
26
|
-
"joi": "^17.9.2",
|
|
27
|
-
"winston": "^3.10.0",
|
|
28
|
-
"fs-extra": "^11.1.1",
|
|
29
|
-
"tar": "^6.1.15",
|
|
30
|
-
"uuid": "^9.0.0"
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"nodemon": "^3.0.1"
|
|
16
|
+
"dank-ai": "^1.0.0"
|
|
34
17
|
},
|
|
35
|
-
"keywords": [
|
|
18
|
+
"keywords": [
|
|
19
|
+
"dank",
|
|
20
|
+
"ai",
|
|
21
|
+
"agents",
|
|
22
|
+
"automation",
|
|
23
|
+
"llm"
|
|
24
|
+
],
|
|
36
25
|
"author": "",
|
|
37
26
|
"license": "ISC",
|
|
38
|
-
"files": [
|
|
39
|
-
"lib/",
|
|
40
|
-
"bin/",
|
|
41
|
-
"docker/",
|
|
42
|
-
"templates/",
|
|
43
|
-
"README.md"
|
|
44
|
-
],
|
|
45
27
|
"engines": {
|
|
46
28
|
"node": ">=16.0.0",
|
|
47
29
|
"npm": ">=8.0.0"
|
|
48
|
-
},
|
|
49
|
-
"publishConfig": {
|
|
50
|
-
"access": "public"
|
|
51
30
|
}
|
|
52
|
-
}
|
|
31
|
+
}
|