superacli 1.0.0 → 1.0.1
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/README.md +8 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
# SuperCLI
|
|
1
|
+
# SuperACLI - SuperCLI - DCLI - Super Agentic CLI
|
|
2
2
|
|
|
3
3
|
Config-driven, AI-friendly CLI that dynamically generates commands from cloud configuration.
|
|
4
4
|
|
|
5
|
+
## BIN Aliases
|
|
6
|
+
|
|
7
|
+
- dcli (Original CLI)
|
|
8
|
+
- supercli (Brand)
|
|
9
|
+
- scli (Brand smaller)
|
|
10
|
+
- superacli (What was available) (Super Agent/ic CLI)
|
|
11
|
+
|
|
5
12
|
## Architecture
|
|
6
13
|
|
|
7
14
|
```
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superacli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Config-driven, AI-friendly dynamic CLI",
|
|
5
5
|
"main": "server/app.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"dcli": "./cli/supercli.js",
|
|
8
8
|
"scli": "./cli/supercli.js",
|
|
9
|
+
"superacli": "./cli/supercli.js",
|
|
9
10
|
"supercli": "./cli/supercli.js"
|
|
10
11
|
},
|
|
11
12
|
"scripts": {
|