@the-magic-tower/fixhive-opencode-plugin 0.1.34 → 0.2.0-beta.2

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.de.md CHANGED
@@ -33,14 +33,13 @@ npm install @the-magic-tower/fixhive-opencode-plugin
33
33
 
34
34
  ## Schnellstart
35
35
 
36
- Fügen Sie zu Ihrer OpenCode-Konfiguration hinzu (`opencode.config.ts`):
36
+ Fügen Sie zu Ihrer OpenCode-Konfiguration hinzu (`~/.config/opencode/opencode.json`):
37
37
 
38
- ```typescript
39
- import FixHivePlugin from '@the-magic-tower/fixhive-opencode-plugin';
40
-
41
- export default {
42
- plugins: [FixHivePlugin],
43
- };
38
+ ```json
39
+ {
40
+ "$schema": "https://opencode.ai/config.json",
41
+ "plugin": ["@the-magic-tower/fixhive-opencode-plugin@beta"]
42
+ }
44
43
  ```
45
44
 
46
45
  **Das war's!** FixHive verbindet sich standardmäßig mit der Community-Wissensdatenbank. Keine Umgebungsvariablen erforderlich.
package/README.es.md CHANGED
@@ -33,14 +33,13 @@ npm install @the-magic-tower/fixhive-opencode-plugin
33
33
 
34
34
  ## Inicio Rápido
35
35
 
36
- Agregue a su configuración de OpenCode (`opencode.config.ts`):
36
+ Agregue a su configuración de OpenCode (`~/.config/opencode/opencode.json`):
37
37
 
38
- ```typescript
39
- import FixHivePlugin from '@the-magic-tower/fixhive-opencode-plugin';
40
-
41
- export default {
42
- plugins: [FixHivePlugin],
43
- };
38
+ ```json
39
+ {
40
+ "$schema": "https://opencode.ai/config.json",
41
+ "plugin": ["@the-magic-tower/fixhive-opencode-plugin@beta"]
42
+ }
44
43
  ```
45
44
 
46
45
  **¡Eso es todo!** FixHive se conecta a la base de conocimientos de la comunidad por defecto. No se requieren variables de entorno.
package/README.fr.md CHANGED
@@ -33,14 +33,13 @@ npm install @the-magic-tower/fixhive-opencode-plugin
33
33
 
34
34
  ## Démarrage Rapide
35
35
 
36
- Ajoutez à votre configuration OpenCode (`opencode.config.ts`) :
36
+ Ajoutez à votre configuration OpenCode (`~/.config/opencode/opencode.json`) :
37
37
 
38
- ```typescript
39
- import FixHivePlugin from '@the-magic-tower/fixhive-opencode-plugin';
40
-
41
- export default {
42
- plugins: [FixHivePlugin],
43
- };
38
+ ```json
39
+ {
40
+ "$schema": "https://opencode.ai/config.json",
41
+ "plugin": ["@the-magic-tower/fixhive-opencode-plugin@beta"]
42
+ }
44
43
  ```
45
44
 
46
45
  **C'est tout !** FixHive se connecte par défaut à la base de connaissances communautaire. Aucune variable d'environnement requise.
package/README.ja.md CHANGED
@@ -33,14 +33,13 @@ npm install @the-magic-tower/fixhive-opencode-plugin
33
33
 
34
34
  ## クイックスタート
35
35
 
36
- OpenCode設定ファイル(`opencode.config.ts`)に追加:
36
+ OpenCode設定ファイル(`~/.config/opencode/opencode.json`)に追加:
37
37
 
38
- ```typescript
39
- import FixHivePlugin from '@the-magic-tower/fixhive-opencode-plugin';
40
-
41
- export default {
42
- plugins: [FixHivePlugin],
43
- };
38
+ ```json
39
+ {
40
+ "$schema": "https://opencode.ai/config.json",
41
+ "plugin": ["@the-magic-tower/fixhive-opencode-plugin@beta"]
42
+ }
44
43
  ```
45
44
 
46
45
  **以上!** FixHiveはデフォルトでコミュニティナレッジベースに接続します。環境変数の設定は不要です。
package/README.ko.md CHANGED
@@ -53,13 +53,14 @@ npm install @the-magic-tower/fixhive-opencode-plugin
53
53
  npm install @the-magic-tower/fixhive-opencode-plugin
54
54
  ```
55
55
 
56
- ### 2. OpenCode 설정 파일(`opencode.json`)에 추가
56
+ ### 2. OpenCode 설정 파일에 추가
57
+
58
+ `~/.config/opencode/opencode.json` 또는 프로젝트의 `opencode.json`:
57
59
 
58
60
  ```json
59
61
  {
60
- "plugins": [
61
- "@the-magic-tower/fixhive-opencode-plugin"
62
- ]
62
+ "$schema": "https://opencode.ai/config.json",
63
+ "plugin": ["@the-magic-tower/fixhive-opencode-plugin@beta"]
63
64
  }
64
65
  ```
65
66