opencode-sonarqube 1.2.2 → 1.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.
Files changed (2) hide show
  1. package/README.md +19 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -53,7 +53,18 @@ The installer will:
53
53
  4. Configure `opencode.json`
54
54
  5. Set up environment variables
55
55
 
56
- **Important: Restart OpenCode after installation!**
56
+ **After installation, complete these steps:**
57
+
58
+ ```bash
59
+ # 1. Load environment variables
60
+ source ~/.zshrc # or ~/.bashrc
61
+
62
+ # 2. Restart OpenCode (or start a new session)
63
+
64
+ # 3. Initialize SonarQube for your project (in OpenCode):
65
+ # Tell the AI: "Setup SonarQube for this project"
66
+ # Or use the tool: sonarqube({ action: "setup" })
67
+ ```
57
68
 
58
69
  ### Manual Installation
59
70
 
@@ -83,6 +94,13 @@ export SONAR_PASSWORD="your-password"
83
94
 
84
95
  Add these to your `~/.zshrc` or `~/.bashrc` to make them permanent.
85
96
 
97
+ **After installation:**
98
+
99
+ 1. Restart OpenCode (or start a new session)
100
+ 2. Initialize SonarQube for your project:
101
+ - Tell the AI: "Setup SonarQube for this project"
102
+ - Or use: `sonarqube({ action: "setup" })`
103
+
86
104
  ## Configuration
87
105
 
88
106
  ### Environment Variables (Required)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-sonarqube",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "OpenCode Plugin for SonarQube integration - Enterprise-level code quality from the start",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",