@nacos-group/cli 0.0.7 → 0.0.11

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 CHANGED
@@ -73,19 +73,15 @@ nacos> help
73
73
  #### List Skills
74
74
 
75
75
  ```bash
76
- # CLI mode
76
+ # CLI mode (description shown by default, truncated at 200 chars)
77
77
  nacos-cli skill-list -s 127.0.0.1:8848 -u nacos -p nacos
78
78
 
79
79
  # With filters
80
80
  nacos-cli skill-list --name skill-creator --page 1 --size 20
81
81
 
82
- # Show skill description
83
- nacos-cli skill-list --desc
84
-
85
82
  # Terminal mode
86
83
  nacos> skill-list
87
84
  nacos> skill-list --name skill-creator --page 2
88
- nacos> skill-list --desc
89
85
  ```
90
86
 
91
87
  #### Get/Download Skill
package/bin/cli.js CHANGED
@@ -7,7 +7,7 @@ const os = require('os');
7
7
 
8
8
  // Fixed nacos-cli binary version
9
9
  // npm package version is independent from binary version
10
- const VERSION = '0.0.5';
10
+ const VERSION = '0.0.11';
11
11
 
12
12
  // Detect platform and architecture
13
13
  function getBinaryName() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nacos-group/cli",
3
- "version": "0.0.7",
3
+ "version": "0.0.11",
4
4
  "description": "A command-line tool for managing Nacos configurations and AI skills",
5
5
  "bin": {
6
6
  "nacos-cli": "./bin/cli.js"