@nacos-group/cli 0.0.12-beta.4 → 1.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/README.md CHANGED
@@ -123,20 +123,20 @@ nacos-cli agentspec-get spec1 spec2 spec3
123
123
  nacos> agentspec-get my-agentspec
124
124
  ```
125
125
 
126
- #### Upload AgentSpec
126
+ #### Publish AgentSpec
127
127
 
128
- Upload an agent spec from local directory:
128
+ Publish an agent spec from local directory:
129
129
 
130
130
  ```bash
131
- # Upload single agent spec
132
- nacos-cli agentspec-upload /path/to/agentspec -s 127.0.0.1:8848 -u nacos -p nacos
131
+ # Publish single agent spec
132
+ nacos-cli agentspec-publish /path/to/agentspec -s 127.0.0.1:8848 -u nacos -p nacos
133
133
 
134
- # Upload all agent specs in a directory
135
- nacos-cli agentspec-upload --all /path/to/agentspecs/folder
134
+ # Publish all agent specs in a directory
135
+ nacos-cli agentspec-publish --all /path/to/agentspecs/folder
136
136
 
137
137
  # Terminal mode
138
- nacos> agentspec-upload /path/to/agentspec
139
- nacos> agentspec-upload --all /path/to/agentspecs
138
+ nacos> agentspec-publish /path/to/agentspec
139
+ nacos> agentspec-publish --all /path/to/agentspecs
140
140
  ```
141
141
 
142
142
  ### Skill Management
@@ -321,7 +321,7 @@ nacos-cli/
321
321
  │ ├── sync_skill.go # skill-sync command
322
322
  │ ├── list_agentspec.go # agentspec-list command
323
323
  │ ├── get_agentspec.go # agentspec-get command
324
- │ ├── upload_agentspec.go # agentspec-upload command
324
+ │ ├── publish_agentspec.go # agentspec-publish command
325
325
  │ ├── list_config.go # config-list command
326
326
  │ ├── get_config.go # config-get command
327
327
  │ └── interactive.go # Interactive terminal
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.12';
10
+ const VERSION = '1.0.0';
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.12-beta.4",
3
+ "version": "1.0.0",
4
4
  "description": "A command-line tool for managing Nacos configurations and AI skills",
5
5
  "bin": {
6
6
  "nacos-cli": "./bin/cli.js"