@qoder-ai/qodercli 0.2.2 → 0.2.3
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 +2 -327
- package/package.json +22 -16
package/README.md
CHANGED
|
@@ -1,38 +1,13 @@
|
|
|
1
1
|
# qodercli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
qodercli is an open-source AI agent that brings the power of Gemini directly
|
|
4
4
|
into your terminal. It provides lightweight access to Gemini, giving you the
|
|
5
5
|
most direct path from your prompt to our model.
|
|
6
6
|
|
|
7
|
-
Learn all about Gemini CLI in our [documentation](https://geminicli.com/docs/).
|
|
8
7
|
|
|
9
|
-
## 🚀 Why Gemini CLI?
|
|
10
|
-
|
|
11
|
-
- **🎯 Free tier**: 60 requests/min and 1,000 requests/day with personal Google
|
|
12
|
-
account.
|
|
13
|
-
- **🧠 Powerful Gemini 3 models**: Access to improved reasoning and 1M token
|
|
14
|
-
context window.
|
|
15
|
-
- **🔧 Built-in tools**: Google Search grounding, file operations, shell
|
|
16
|
-
commands, web fetching.
|
|
17
|
-
- **🔌 Extensible**: MCP (Model Context Protocol) support for custom
|
|
18
|
-
integrations.
|
|
19
|
-
- **💻 Terminal-first**: Designed for developers who live in the command line.
|
|
20
|
-
- **🛡️ Open source**: Apache 2.0 licensed.
|
|
21
8
|
|
|
22
9
|
## 📦 Installation
|
|
23
10
|
|
|
24
|
-
See
|
|
25
|
-
[Gemini CLI installation, execution, and releases](https://www.geminicli.com/docs/get-started/installation)
|
|
26
|
-
for recommended system specifications and a detailed installation guide.
|
|
27
|
-
|
|
28
|
-
### Quick Install
|
|
29
|
-
|
|
30
|
-
#### Run instantly with npx
|
|
31
|
-
|
|
32
|
-
```bash
|
|
33
|
-
# Using npx (no installation required)
|
|
34
|
-
npx @qoder-ai/qodercli
|
|
35
|
-
```
|
|
36
11
|
|
|
37
12
|
#### Install globally with npm
|
|
38
13
|
|
|
@@ -40,50 +15,6 @@ npx @qoder-ai/qodercli
|
|
|
40
15
|
npm install -g @qoder-ai/qodercli
|
|
41
16
|
```
|
|
42
17
|
|
|
43
|
-
#### Install with Anaconda (for restricted environments)
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
# Create and activate a new environment
|
|
47
|
-
conda create -y -n gemini_env -c conda-forge nodejs
|
|
48
|
-
conda activate gemini_env
|
|
49
|
-
|
|
50
|
-
# Install qodercli globally via npm (inside the environment)
|
|
51
|
-
npm install -g @qoder-ai/qodercli
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
## Release Channels
|
|
55
|
-
|
|
56
|
-
See [Releases](https://www.geminicli.com/docs/changelogs) for more details.
|
|
57
|
-
|
|
58
|
-
### Preview
|
|
59
|
-
|
|
60
|
-
New preview releases will be published each week at UTC 23:59 on Tuesdays. These
|
|
61
|
-
releases will not have been fully vetted and may contain regressions or other
|
|
62
|
-
outstanding issues. Please help us test and install with `preview` tag.
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
npm install -g @qoder-ai/qodercli@preview
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
### Stable
|
|
69
|
-
|
|
70
|
-
- New stable releases will be published each week at UTC 20:00 on Tuesdays, this
|
|
71
|
-
will be the full promotion of last week's `preview` release + any bug fixes
|
|
72
|
-
and validations. Use `latest` tag.
|
|
73
|
-
|
|
74
|
-
```bash
|
|
75
|
-
npm install -g @qoder-ai/qodercli@latest
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
### Nightly
|
|
79
|
-
|
|
80
|
-
- New releases will be published each day at UTC 00:00. This will be all changes
|
|
81
|
-
from the main branch as represented at time of release. It should be assumed
|
|
82
|
-
there are pending validations and issues. Use `nightly` tag.
|
|
83
|
-
|
|
84
|
-
```bash
|
|
85
|
-
npm install -g @qoder-ai/qodercli@nightly
|
|
86
|
-
```
|
|
87
18
|
|
|
88
19
|
## 📋 Key Features
|
|
89
20
|
|
|
@@ -103,266 +34,10 @@ npm install -g @qoder-ai/qodercli@nightly
|
|
|
103
34
|
|
|
104
35
|
### Advanced Capabilities
|
|
105
36
|
|
|
106
|
-
- Ground your queries with built-
|
|
107
|
-
[Google Search](https://ai.google.dev/gemini-api/docs/grounding) for real-time
|
|
37
|
+
- Ground your queries with built-infor real-time
|
|
108
38
|
information
|
|
109
39
|
- Conversation checkpointing to save and resume complex sessions
|
|
110
40
|
- Custom context files (GEMINI.md) to tailor behavior for your projects
|
|
111
41
|
|
|
112
|
-
## 🔐 Authentication Options
|
|
113
|
-
|
|
114
|
-
Choose the authentication method that best fits your needs:
|
|
115
|
-
|
|
116
|
-
### Option 1: Sign in with Google (OAuth login using your Google Account)
|
|
117
|
-
|
|
118
|
-
**✨ Best for:** Individual developers as well as anyone who has a Gemini Code
|
|
119
|
-
Assist License. (see
|
|
120
|
-
[quota limits and terms of service](https://cloud.google.com/gemini/docs/quotas)
|
|
121
|
-
for details)
|
|
122
|
-
|
|
123
|
-
**Benefits:**
|
|
124
|
-
|
|
125
|
-
- **Free tier**: 60 requests/min and 1,000 requests/day
|
|
126
|
-
- **Gemini 3 models** with 1M token context window
|
|
127
|
-
- **No API key management** - just sign in with your Google account
|
|
128
|
-
- **Automatic updates** to latest models
|
|
129
|
-
|
|
130
|
-
#### Start Gemini CLI, then choose _Sign in with Google_ and follow the browser authentication flow when prompted
|
|
131
|
-
|
|
132
|
-
```bash
|
|
133
|
-
qodercli
|
|
134
|
-
```
|
|
135
|
-
|
|
136
|
-
#### If you are using a paid Code Assist License from your organization, remember to set the Google Cloud Project
|
|
137
|
-
|
|
138
|
-
```bash
|
|
139
|
-
# Set your Google Cloud Project
|
|
140
|
-
export GOOGLE_CLOUD_PROJECT="YOUR_PROJECT_ID"
|
|
141
|
-
qodercli
|
|
142
|
-
```
|
|
143
|
-
|
|
144
|
-
### Option 2: Gemini API Key
|
|
145
|
-
|
|
146
|
-
**✨ Best for:** Developers who need specific model control or paid tier access
|
|
147
|
-
|
|
148
|
-
**Benefits:**
|
|
149
|
-
|
|
150
|
-
- **Free tier**: 1000 requests/day with Gemini 3 (mix of flash and pro)
|
|
151
|
-
- **Model selection**: Choose specific Gemini models
|
|
152
|
-
- **Usage-based billing**: Upgrade for higher limits when needed
|
|
153
|
-
|
|
154
|
-
```bash
|
|
155
|
-
# Get your key from https://aistudio.google.com/apikey
|
|
156
|
-
export GEMINI_API_KEY="YOUR_API_KEY"
|
|
157
|
-
qodercli
|
|
158
|
-
```
|
|
159
|
-
|
|
160
|
-
### Option 3: Vertex AI
|
|
161
|
-
|
|
162
|
-
**✨ Best for:** Enterprise teams and production workloads
|
|
163
|
-
|
|
164
|
-
**Benefits:**
|
|
165
|
-
|
|
166
|
-
- **Enterprise features**: Advanced security and compliance
|
|
167
|
-
- **Scalable**: Higher rate limits with billing account
|
|
168
|
-
- **Integration**: Works with existing Google Cloud infrastructure
|
|
169
|
-
|
|
170
|
-
```bash
|
|
171
|
-
# Get your key from Google Cloud Console
|
|
172
|
-
export GOOGLE_API_KEY="YOUR_API_KEY"
|
|
173
|
-
export GOOGLE_GENAI_USE_VERTEXAI=true
|
|
174
|
-
qodercli
|
|
175
|
-
```
|
|
176
|
-
|
|
177
|
-
For Google Workspace accounts and other authentication methods, see the
|
|
178
|
-
[authentication guide](https://www.geminicli.com/docs/get-started/authentication).
|
|
179
|
-
|
|
180
|
-
## 🚀 Getting Started
|
|
181
|
-
|
|
182
|
-
### Basic Usage
|
|
183
|
-
|
|
184
|
-
#### Start in current directory
|
|
185
|
-
|
|
186
|
-
```bash
|
|
187
|
-
qodercli
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
#### Include multiple directories
|
|
191
|
-
|
|
192
|
-
```bash
|
|
193
|
-
qodercli --include-directories ../lib,../docs
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
#### Use specific model
|
|
197
|
-
|
|
198
|
-
```bash
|
|
199
|
-
qodercli -m gemini-2.5-flash
|
|
200
|
-
```
|
|
201
|
-
|
|
202
|
-
#### Non-interactive mode for scripts
|
|
203
|
-
|
|
204
|
-
Get a simple text response:
|
|
205
|
-
|
|
206
|
-
```bash
|
|
207
|
-
qodercli -p "Explain the architecture of this codebase"
|
|
208
|
-
```
|
|
209
|
-
|
|
210
|
-
For more advanced scripting, including how to parse JSON and handle errors, use
|
|
211
|
-
the `--output-format json` flag to get structured output:
|
|
212
|
-
|
|
213
|
-
```bash
|
|
214
|
-
qodercli -p "Explain the architecture of this codebase" --output-format json
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
For real-time event streaming (useful for monitoring long-running operations),
|
|
218
|
-
use `--output-format stream-json` to get newline-delimited JSON events:
|
|
219
|
-
|
|
220
|
-
```bash
|
|
221
|
-
qodercli -p "Run tests and deploy" --output-format stream-json
|
|
222
|
-
```
|
|
223
|
-
|
|
224
|
-
### Quick Examples
|
|
225
|
-
|
|
226
|
-
#### Start a new project
|
|
227
|
-
|
|
228
|
-
```bash
|
|
229
|
-
cd new-project/
|
|
230
|
-
qodercli
|
|
231
|
-
> Write me a Discord bot that answers questions using a FAQ.md file I will provide
|
|
232
|
-
```
|
|
233
|
-
|
|
234
|
-
#### Analyze existing code
|
|
235
|
-
|
|
236
|
-
```bash
|
|
237
|
-
git clone <repository-url>
|
|
238
|
-
cd qodercli
|
|
239
|
-
qodercli
|
|
240
|
-
> Give me a summary of all of the changes that went in yesterday
|
|
241
|
-
```
|
|
242
|
-
|
|
243
|
-
## 📚 Documentation
|
|
244
|
-
|
|
245
|
-
### Getting Started
|
|
246
|
-
|
|
247
|
-
- [**Quickstart Guide**](https://www.geminicli.com/docs/get-started) - Get up
|
|
248
|
-
and running quickly.
|
|
249
|
-
- [**Authentication Setup**](https://www.geminicli.com/docs/get-started/authentication) -
|
|
250
|
-
Detailed auth configuration.
|
|
251
|
-
- [**Configuration Guide**](https://www.geminicli.com/docs/reference/configuration) -
|
|
252
|
-
Settings and customization.
|
|
253
|
-
- [**Keyboard Shortcuts**](https://www.geminicli.com/docs/reference/keyboard-shortcuts) -
|
|
254
|
-
Productivity tips.
|
|
255
|
-
|
|
256
|
-
### Core Features
|
|
257
|
-
|
|
258
|
-
- [**Commands Reference**](https://www.geminicli.com/docs/reference/commands) -
|
|
259
|
-
All slash commands (`/help`, `/chat`, etc).
|
|
260
|
-
- [**Custom Commands**](https://www.geminicli.com/docs/cli/custom-commands) -
|
|
261
|
-
Create your own reusable commands.
|
|
262
|
-
- [**Context Files (GEMINI.md)**](https://www.geminicli.com/docs/cli/gemini-md) -
|
|
263
|
-
Provide persistent context to Gemini CLI.
|
|
264
|
-
- [**Checkpointing**](https://www.geminicli.com/docs/cli/checkpointing) - Save
|
|
265
|
-
and resume conversations.
|
|
266
|
-
- [**Token Caching**](https://www.geminicli.com/docs/cli/token-caching) -
|
|
267
|
-
Optimize token usage.
|
|
268
|
-
|
|
269
|
-
### Tools & Extensions
|
|
270
|
-
|
|
271
|
-
- [**Built-in Tools Overview**](https://www.geminicli.com/docs/reference/tools)
|
|
272
|
-
- [File System Operations](https://www.geminicli.com/docs/tools/file-system)
|
|
273
|
-
- [Shell Commands](https://www.geminicli.com/docs/tools/shell)
|
|
274
|
-
- [Web Fetch & Search](https://www.geminicli.com/docs/tools/web-fetch)
|
|
275
|
-
- [**MCP Server Integration**](https://www.geminicli.com/docs/tools/mcp-server) -
|
|
276
|
-
Extend with custom tools.
|
|
277
|
-
- [**Custom Extensions**](https://geminicli.com/docs/extensions/writing-extensions) -
|
|
278
|
-
Build and share your own commands.
|
|
279
|
-
|
|
280
|
-
### Advanced Topics
|
|
281
|
-
|
|
282
|
-
- [**Headless Mode (Scripting)**](https://www.geminicli.com/docs/cli/headless) -
|
|
283
|
-
Use Gemini CLI in automated workflows.
|
|
284
|
-
- [**IDE Integration**](https://www.geminicli.com/docs/ide-integration) - VS
|
|
285
|
-
Code companion.
|
|
286
|
-
- [**Sandboxing & Security**](https://www.geminicli.com/docs/cli/sandbox) - Safe
|
|
287
|
-
execution environments.
|
|
288
|
-
- [**Trusted Folders**](https://www.geminicli.com/docs/cli/trusted-folders) -
|
|
289
|
-
Control execution policies by folder.
|
|
290
|
-
- [**Enterprise Guide**](https://www.geminicli.com/docs/cli/enterprise) - Deploy
|
|
291
|
-
and manage in a corporate environment.
|
|
292
|
-
- [**Telemetry & Monitoring**](https://www.geminicli.com/docs/cli/telemetry) -
|
|
293
|
-
Usage tracking.
|
|
294
|
-
- [**Tools reference**](https://www.geminicli.com/docs/reference/tools) -
|
|
295
|
-
Built-in tools overview.
|
|
296
|
-
- [**Local development**](https://www.geminicli.com/docs/local-development) -
|
|
297
|
-
Local development tooling.
|
|
298
|
-
|
|
299
|
-
### Troubleshooting & Support
|
|
300
|
-
|
|
301
|
-
- [**Troubleshooting Guide**](https://www.geminicli.com/docs/resources/troubleshooting) -
|
|
302
|
-
Common issues and solutions.
|
|
303
|
-
- [**FAQ**](https://www.geminicli.com/docs/resources/faq) - Frequently asked
|
|
304
|
-
questions.
|
|
305
|
-
- Use `/bug` command to report issues directly from the CLI.
|
|
306
|
-
|
|
307
|
-
### Using MCP Servers
|
|
308
|
-
|
|
309
|
-
User-level settings live in `~/.qoder/settings.json` by default. Set
|
|
310
|
-
`QODER_CONFIG_DIR` to use a different complete config root:
|
|
311
|
-
|
|
312
|
-
```bash
|
|
313
|
-
QODER_CONFIG_DIR=/tmp/qoder-dev qodercli
|
|
314
|
-
```
|
|
315
|
-
|
|
316
|
-
That example reads settings from `/tmp/qoder-dev/settings.json`; it does not
|
|
317
|
-
append `.qoder` to the configured path.
|
|
318
|
-
|
|
319
|
-
Configure MCP servers in the user settings file to extend Gemini CLI with custom
|
|
320
|
-
tools:
|
|
321
|
-
|
|
322
|
-
```text
|
|
323
|
-
> @slack Send a summary of today's commits to #dev channel
|
|
324
|
-
> @database Run a query to find inactive users
|
|
325
|
-
```
|
|
326
|
-
|
|
327
|
-
See the
|
|
328
|
-
[MCP Server Integration guide](https://www.geminicli.com/docs/tools/mcp-server)
|
|
329
|
-
for setup instructions.
|
|
330
|
-
|
|
331
|
-
## 🤝 Contributing
|
|
332
|
-
|
|
333
|
-
We welcome contributions! Gemini CLI is fully open source (Apache 2.0), and we
|
|
334
|
-
encourage the community to:
|
|
335
|
-
|
|
336
|
-
- Report bugs and suggest features.
|
|
337
|
-
- Improve documentation.
|
|
338
|
-
- Submit code improvements.
|
|
339
|
-
- Share your MCP servers and extensions.
|
|
340
|
-
|
|
341
|
-
See our [Contributing Guide](./CONTRIBUTING.md) for development setup, coding
|
|
342
|
-
standards, and how to submit pull requests.
|
|
343
|
-
|
|
344
|
-
## 📖 Resources
|
|
345
|
-
|
|
346
|
-
- **[Official Roadmap](./ROADMAP.md)** - See what's coming next.
|
|
347
|
-
- **[Changelog](https://www.geminicli.com/docs/changelogs)** - See recent
|
|
348
|
-
notable updates.
|
|
349
|
-
- **[NPM Package](https://www.npmjs.com/package/@qoder-ai/qodercli)** - Package
|
|
350
|
-
registry.
|
|
351
|
-
|
|
352
|
-
### Uninstall
|
|
353
|
-
|
|
354
|
-
See the [Uninstall Guide](https://www.geminicli.com/docs/resources/uninstall)
|
|
355
|
-
for removal instructions.
|
|
356
|
-
|
|
357
|
-
## 📄 Legal
|
|
358
|
-
|
|
359
|
-
- **License**: [Apache License 2.0](LICENSE)
|
|
360
|
-
- **Terms of Service**:
|
|
361
|
-
[Terms & Privacy](https://www.geminicli.com/docs/resources/tos-privacy)
|
|
362
|
-
- **Security**: [Security Policy](SECURITY.md)
|
|
363
42
|
|
|
364
43
|
---
|
|
365
|
-
|
|
366
|
-
<p align="center">
|
|
367
|
-
Built with ❤️ by Google and the open source community
|
|
368
|
-
</p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qoder-ai/qodercli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "qodercli - npm installer",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -44,49 +44,55 @@
|
|
|
44
44
|
],
|
|
45
45
|
"preferGlobal": true,
|
|
46
46
|
"binaries": {
|
|
47
|
-
"version": "0.2.
|
|
47
|
+
"version": "0.2.3",
|
|
48
48
|
"files": [
|
|
49
49
|
{
|
|
50
50
|
"os": "darwin",
|
|
51
51
|
"arch": "arm64",
|
|
52
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
53
|
-
"sha256": "
|
|
52
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-darwin-arm64.tar.gz",
|
|
53
|
+
"sha256": "d4ffc660fae4fa1bce52a8f90b3bdf862ed7e4c78d0be3d2c7f1a10652fee0d7"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"os": "darwin",
|
|
57
57
|
"arch": "amd64",
|
|
58
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
59
|
-
"sha256": "
|
|
58
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-darwin-x64.tar.gz",
|
|
59
|
+
"sha256": "b125f3a7d527ba2c38e5149aec497962c91bb57e9bb82a44c0badd07991aac0b"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"os": "linux",
|
|
63
63
|
"arch": "arm64-musl",
|
|
64
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
65
|
-
"sha256": "
|
|
64
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-linux-arm64-musl.tar.gz",
|
|
65
|
+
"sha256": "99663495215b6ace582460c33973f9aae0c42d077876c14d74636c36268c9094"
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
"os": "linux",
|
|
69
69
|
"arch": "arm64",
|
|
70
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
71
|
-
"sha256": "
|
|
70
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-linux-arm64.tar.gz",
|
|
71
|
+
"sha256": "1b3bd28798da575ce67f27732efee7d9b22a1e046d75b94f307b2bb8cc701b7d"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"os": "linux",
|
|
75
|
+
"arch": "amd64-baseline",
|
|
76
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-linux-x64-baseline.tar.gz",
|
|
77
|
+
"sha256": "f9caec58ba854017a41ffa9b245b2de52ddbb123971fbe0ffdecf5d8ec22858c"
|
|
72
78
|
},
|
|
73
79
|
{
|
|
74
80
|
"os": "linux",
|
|
75
81
|
"arch": "amd64-musl",
|
|
76
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
77
|
-
"sha256": "
|
|
82
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-linux-x64-musl.tar.gz",
|
|
83
|
+
"sha256": "f5e5c358297a3d571201010d17490b990a1614653c72d3190b0cd7e9d3ba22cb"
|
|
78
84
|
},
|
|
79
85
|
{
|
|
80
86
|
"os": "linux",
|
|
81
87
|
"arch": "amd64",
|
|
82
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
83
|
-
"sha256": "
|
|
88
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-linux-x64.tar.gz",
|
|
89
|
+
"sha256": "a81379dcd18fa7f46e643ebde5fbcd3b0c3fedc3017120998f654dbb0a916900"
|
|
84
90
|
},
|
|
85
91
|
{
|
|
86
92
|
"os": "windows",
|
|
87
93
|
"arch": "amd64",
|
|
88
|
-
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.
|
|
89
|
-
"sha256": "
|
|
94
|
+
"url": "https://qoder-ide.oss-ap-southeast-1.aliyuncs.com/qodercli/releases/0.2.3/qodercli-windows-x64.zip",
|
|
95
|
+
"sha256": "cde970e0485332dd78f79680ead02ec4a885ba3d067da69a3e4b9e534114ac39"
|
|
90
96
|
}
|
|
91
97
|
]
|
|
92
98
|
}
|