node-red-contrib-linux-copilot 1.0.2 → 1.0.4

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 +21 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ cat > ~/.node-red/node_modules/node-red-contrib-linux-copilot/README.md << 'EOF'
2
+ # node-red-contrib-linux-copilot
3
+
4
+ An advanced, autonomous SRE (Site Reliability Engineering) agent for Node-RED. This node doesn't just talk; it thinks, executes Linux commands, analyzes the output, and follows up until the diagnostic is complete.
5
+
6
+ ## 🚀 Key Features
7
+
8
+ * **Multi-Engine Failover**: Supports **DeepSeek**, **OpenRouter (Llama 3.3)**, and **Google Gemini 2.0**.
9
+ * **Autonomous Diagnostic Loop**: If the AI suggests a command, the node executes it, reads the output, and sends it back to the AI for further analysis (up to 5 iterations).
10
+ * **Auto-Language Detection**: Speak to it in French, English, Spanish, or any language; it will detect and respond in kind.
11
+ * **SRE Expertise**: Specialized in system health, performance bottleneck identification, and log analysis.
12
+ * **Secure by Design**: Restricted to a safe list of audit and monitoring commands (`df`, `top`, `free`, `systemctl`, etc.).
13
+
14
+ ---
15
+
16
+ ## 🛠 Installation
17
+
18
+ Run the following command in your Node-RED user directory (typically `~/.node-red`):
19
+
20
+ ```bash
21
+ npm install node-red-contrib-linux-copilot
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-linux-copilot",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Agent SRE intelligent (DeepSeek/Gemini) avec exécution terminal sécurisée",
5
5
  "main": "linux-copilot.js",
6
6
  "scripts": {