@voodocs/cli 1.0.6 → 2.0.0
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/CHANGELOG.md +78 -0
- package/README.md +171 -241
- package/lib/cli/__init__.py +4 -4
- package/lib/cli/generate.py +5 -5
- package/lib/cli/init.py +450 -98
- package/lib/darkarts/annotations/parser.py +10 -15
- package/package.json +15 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voodocs/cli",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "AI-Native Documentation System
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "AI-Native Symbolic Documentation System - The world's first documentation tool using mathematical notation with semantic validation",
|
|
5
5
|
"main": "voodocs_cli.py",
|
|
6
6
|
"bin": {
|
|
7
7
|
"voodocs": "./voodocs_cli.py"
|
|
@@ -12,26 +12,27 @@
|
|
|
12
12
|
"build-ts-parser": "cd lib/darkarts/parsers/typescript && npm install && npm run build"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
|
+
"darkarts",
|
|
16
|
+
"symbolic-documentation",
|
|
17
|
+
"ai-native",
|
|
18
|
+
"mathematical-notation",
|
|
19
|
+
"semantic-validation",
|
|
15
20
|
"documentation",
|
|
16
21
|
"validation",
|
|
17
22
|
"ai",
|
|
18
|
-
"voodocs",
|
|
19
|
-
"darkarts",
|
|
20
23
|
"testing",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
+
"performance-validation",
|
|
25
|
+
"benchmarking",
|
|
26
|
+
"auto-fix",
|
|
24
27
|
"ai-assistant",
|
|
25
28
|
"cursor",
|
|
26
29
|
"claude",
|
|
27
|
-
"property-based-testing",
|
|
28
|
-
"hypothesis",
|
|
29
30
|
"annotation-validation",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
31
|
+
"ci-cd",
|
|
32
|
+
"code-documentation",
|
|
33
|
+
"api-documentation",
|
|
34
|
+
"typescript",
|
|
35
|
+
"python"
|
|
35
36
|
],
|
|
36
37
|
"author": "3vilEnterprises <contact@3vil.enterprises>",
|
|
37
38
|
"license": "Commercial",
|