opencode-qwencode-auth 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.
Files changed (3) hide show
  1. package/README.md +10 -15
  2. package/README.pt-BR.md +10 -15
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # 🤖 Qwen Code OAuth Plugin for OpenCode
2
2
 
3
+ ![npm version](https://img.shields.io/npm/v/opencode-qwencode-auth)
3
4
  ![License](https://img.shields.io/github/license/gustavodiasdev/opencode-qwencode-auth)
4
5
  ![GitHub stars](https://img.shields.io/github/stars/gustavodiasdev/opencode-qwencode-auth)
5
6
 
7
+ <p align="center">
8
+ <img src="assets/screenshot.png" alt="OpenCode with Qwen Code" width="800">
9
+ </p>
10
+
6
11
  **Authenticate OpenCode CLI with your qwen.ai account.** This plugin enables you to use Qwen3-Coder models with **2,000 free requests per day** - no API key or credit card required!
7
12
 
8
13
  [🇧🇷 Leia em Português](./README.pt-BR.md)
@@ -23,18 +28,14 @@
23
28
 
24
29
  ## 🚀 Installation
25
30
 
26
- ### 1. Add the plugin to OpenCode
27
-
28
- Edit `~/.opencode/package.json`:
31
+ ### 1. Install the plugin
29
32
 
30
- ```json
31
- {
32
- "dependencies": {
33
- "opencode-qwencode-auth": "github:gustavodiasdev/opencode-qwencode-auth"
34
- }
35
- }
33
+ ```bash
34
+ cd ~/.opencode && npm install opencode-qwencode-auth
36
35
  ```
37
36
 
37
+ ### 2. Enable the plugin
38
+
38
39
  Edit `~/.opencode/opencode.jsonc`:
39
40
 
40
41
  ```json
@@ -43,12 +44,6 @@ Edit `~/.opencode/opencode.jsonc`:
43
44
  }
44
45
  ```
45
46
 
46
- ### 2. Install dependencies
47
-
48
- ```bash
49
- cd ~/.opencode && npm install
50
- ```
51
-
52
47
  ## 🔑 Usage
53
48
 
54
49
  ### 1. Login
package/README.pt-BR.md CHANGED
@@ -1,8 +1,13 @@
1
1
  # 🤖 Qwen Code OAuth Plugin para OpenCode
2
2
 
3
+ ![npm version](https://img.shields.io/npm/v/opencode-qwencode-auth)
3
4
  ![License](https://img.shields.io/github/license/gustavodiasdev/opencode-qwencode-auth)
4
5
  ![GitHub stars](https://img.shields.io/github/stars/gustavodiasdev/opencode-qwencode-auth)
5
6
 
7
+ <p align="center">
8
+ <img src="assets/screenshot.png" alt="OpenCode com Qwen Code" width="800">
9
+ </p>
10
+
6
11
  **Autentique o OpenCode CLI com sua conta qwen.ai.** Este plugin permite usar modelos Qwen3-Coder com **2.000 requisições gratuitas por dia** - sem API key ou cartão de crédito!
7
12
 
8
13
  [🇺🇸 Read in English](./README.md)
@@ -23,18 +28,14 @@
23
28
 
24
29
  ## 🚀 Instalação
25
30
 
26
- ### 1. Adicione o plugin ao OpenCode
27
-
28
- Edite `~/.opencode/package.json`:
31
+ ### 1. Instale o plugin
29
32
 
30
- ```json
31
- {
32
- "dependencies": {
33
- "opencode-qwencode-auth": "github:gustavodiasdev/opencode-qwencode-auth"
34
- }
35
- }
33
+ ```bash
34
+ cd ~/.opencode && npm install opencode-qwencode-auth
36
35
  ```
37
36
 
37
+ ### 2. Habilite o plugin
38
+
38
39
  Edite `~/.opencode/opencode.jsonc`:
39
40
 
40
41
  ```json
@@ -43,12 +44,6 @@ Edite `~/.opencode/opencode.jsonc`:
43
44
  }
44
45
  ```
45
46
 
46
- ### 2. Instale as dependências
47
-
48
- ```bash
49
- cd ~/.opencode && npm install
50
- ```
51
-
52
47
  ## 🔑 Uso
53
48
 
54
49
  ### 1. Login
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-qwencode-auth",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Qwen OAuth authentication plugin for OpenCode - Access Qwen3-Coder models with your qwen.ai account",
5
5
  "module": "index.ts",
6
6
  "type": "module",