trace.ai-cli 1.1.2 → 1.1.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.markdown +7 -61
  2. package/package.json +1 -1
package/README.markdown CHANGED
@@ -121,7 +121,13 @@ This launches the interactive CLI interface where you can enter commands and que
121
121
  ```
122
122
  /stats
123
123
  ```
124
-
124
+ - **System**:
125
+ ```
126
+ /system
127
+ ```
128
+ The system information feature supports natural language queries that automatically determine which information to return.
129
+ Example: `/system How much RAM do I have available?`
130
+
125
131
  - **Exit**:
126
132
  ```
127
133
  /exit
@@ -143,66 +149,6 @@ How do I implement a binary search tree in Python?
143
149
  What's the current CPU usage on my system?
144
150
  ```
145
151
 
146
- ## System Information Features
147
-
148
- Trace.AI CLI can provide detailed information about your system, including:
149
-
150
- - **System Overview**: Platform, architecture, hostname, uptime, manufacturer, model, and system details
151
- - **CPU Information**: Manufacturer, brand, model, cores, speed, temperature, load, virtualization, and cache details
152
- - **Memory Information**: Total, used, free, and available memory with usage percentages, swap information, and detailed memory module specifications
153
- - **Disk Information**: Filesystem details, block devices, disk layout, size, used space, available space, and usage percentages
154
- - **Network Information**: Interface details, IP addresses (IPv4/IPv6), MAC addresses, connection statistics, WiFi networks, internet latency, and public IP address
155
- - **Process Information**: Current process details, system process summary, top CPU-consuming processes, and system services
156
- - **Environment Variables**: Filtered environment variables for security (PATH, USER, HOME, etc.), user session information, and shell history
157
-
158
- The system information is retrieved using the powerful `systeminformation` library with fallback mechanisms for reliability across different operating systems.
159
-
160
- ## Examples
161
-
162
- ### Get All System Information
163
-
164
- ```
165
- /system
166
- ```
167
- Returns all available system information categories.
168
-
169
- ### Natural Language Queries
170
-
171
- The system information feature supports natural language queries that automatically determine which information to return:
172
-
173
- ```
174
- /system How much RAM do I have available?
175
- ```
176
- Automatically returns memory information.
177
-
178
- ```
179
- /system What's my CPU temperature?
180
- ```
181
- Automatically returns CPU information with temperature details.
182
-
183
- ```
184
- /system Tell me about my disk usage
185
- ```
186
- Automatically returns disk information with usage statistics.
187
-
188
- ```
189
- /system Show me my network connections
190
- ```
191
- Automatically returns network information.
192
-
193
- You can also ask direct questions without the /system command:
194
-
195
- ```
196
- What's my operating system version?
197
- ```
198
-
199
- ```
200
- How many CPU cores do I have?
201
- ```
202
-
203
- ```
204
- What's my current memory usage?
205
- ```
206
152
 
207
153
  ## License
208
154
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trace.ai-cli",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "A powerful AI-powered CLI tool",
5
5
  "main": "index.js",
6
6
  "bin": {