antlink 0.0.7 → 0.0.8

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/docs/plain.md +29 -0
  2. package/package.json +2 -1
package/docs/plain.md ADDED
@@ -0,0 +1,29 @@
1
+ AntLink
2
+ ├── bin
3
+ │ └── ant
4
+ ├── lib
5
+ │ ├── ants
6
+ │ │ ├── models
7
+ │ │ ├── plugins
8
+ │ │ ├── skills
9
+ │ │ └── tools
10
+ │ ├── json
11
+ │ │ └── cmds.json
12
+ │ ├── order
13
+ │ │ ├── nest
14
+ │ │ │ └── index.js
15
+ │ │ ├── init.js
16
+ │ │ └── reset.js
17
+ │ ├── utils
18
+ │ │ ├── input.js
19
+ │ │ ├── logs.js
20
+ │ │ ├── plain.js
21
+ │ │ └── scode.js
22
+ │ ├── web
23
+ │ │ ├── api
24
+ │ │ └── h5
25
+ │ └── comm.js
26
+ ├── index.js
27
+ ├── package.json
28
+ ├── plain.md
29
+ └── README.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antlink",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Ant Nest AI Framework.",
5
5
  "main": "index.js",
6
6
  "author": "weduu",
@@ -17,6 +17,7 @@
17
17
  "files": [
18
18
  "lib/",
19
19
  "bin/",
20
+ "docs/",
20
21
  "index.js",
21
22
  "README.md"
22
23
  ],