smartplant 0.2.0 → 0.2.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 +25 -2
  2. package/package.json +15 -2
  3. package/src/cli.js +0 -0
package/README.md CHANGED
@@ -7,8 +7,6 @@
7
7
 
8
8
  The core idea behind SmartPlant is to *pave the way for advancements in plant care technology*. It serves as a foundation for developing more sophisticated solutions and experimenting with innovative devices that meet the needs of plants. By leveraging this library, developers can contribute to the evolution of the smart plant care ecosystem.
9
9
 
10
- ## AI and the future intertwine: connect with your environment
11
-
12
10
  ## Features
13
11
 
14
12
  ### 🧠 Multi-Model AI Engine
@@ -23,6 +21,31 @@ The heart of **SmartPlant** now supports the world's most powerful LLMs to analy
23
21
  * 🔔 **Customized Alerts:** Immediate notifications for critical environmental changes.
24
22
  * 📈 **Data History:** Trend analysis to visualize your plant's growth over time.
25
23
  * 🔮 **Predictive Health:** AI forecasting to prevent stress before it happens.
24
+ * 🔌 **Plugin Ecosystem:** Modular architecture with built-in tests for easy feature expansion.
25
+
26
+ ## Plugins
27
+
28
+ Extend SmartPlant's core with specialized modules for automation and AI analysis. Each plugin features a built-in test to verify performance.
29
+
30
+ * 💧 **Watering**: AI predictive watering based on DHT22 data. | `@smartplant/watering`
31
+
32
+ * 😟 **Stress**: Detects early signs of environmental stress. | `@smartplant/stress`
33
+
34
+ * ☀️ **Lighting**: Optimizes LED cycles and light intensity.`@smartplant/lighting`
35
+
36
+ * 📈 **History**: Analyzes and visualizes long-term growth trends. | `@smartplant/history`
37
+
38
+ * ⚠️ **Alerts**: Species-specific safety range notifications. | `@smartplant/alerts`
39
+
40
+ * 🌱 **Fertilizer**: Sensor-guided nutrient and feeding schedules. | `@smartplant/fertilizer`
41
+
42
+ * 🐛 **Pests**: Identifies pest risks and organic treatments. | `@smartplant/pests`
43
+
44
+ * 💨 **Ventilation**: Smart airflow and condensation control. | `@smartplant/ventilation`
45
+
46
+ * 📔 **Diary**: Interactive logs with AI health summaries. | `@smartplant/diary`
47
+
48
+ * 🤩 **Simulator**: Forecasts plant reactions to environment changes. | `@smartplant/simulator``
26
49
 
27
50
  ## Installation
28
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smartplant",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A library for managing plant care with alerts and multi-language support.",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -11,7 +11,8 @@
11
11
  "@serialport/parser-readline": "12.0.0",
12
12
  "chalk": "5.3.0",
13
13
  "enquirer": "2.4.1",
14
- "serialport": "12.0.0"
14
+ "serialport": "12.0.0",
15
+ "smartplant": "^0.2.0"
15
16
  },
16
17
  "keywords": [
17
18
  "plant",
@@ -86,6 +87,18 @@
86
87
  "typescript": "5.6.2",
87
88
  "vite": "5.4.4"
88
89
  },
90
+ "workspaces": [
91
+ "./watering",
92
+ "./stress",
93
+ "./lighting",
94
+ "./history",
95
+ "./alerts",
96
+ "./fertilizer",
97
+ "./pests",
98
+ "./ventilation",
99
+ "./diary",
100
+ "./simulator"
101
+ ],
89
102
  "commitlint": {
90
103
  "extends": [
91
104
  "gitmoji"
package/src/cli.js CHANGED
File without changes