osai-agent 4.1.6 → 4.1.9
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.md +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ OS AI Agent is a terminal-based AI assistant that operates across four specializ
|
|
|
14
14
|
|
|
15
15
|
| Mode | Purpose |
|
|
16
16
|
|------|---------|
|
|
17
|
-
| **GENERAL** | System administration, file operations, command execution, web tools |
|
|
17
|
+
| **GENERAL** | System administration, file operations, command execution, web tools, and file generation (PDF, DOCX, PPTX, XLSX via Python venv — isolated and safe) |
|
|
18
18
|
| **CODING** | Software engineering with full Git integration and code editing |
|
|
19
19
|
| **NETWORK** | Remote network device management via SSH (Cisco, MikroTik, pfSense, Juniper) |
|
|
20
20
|
| **SSH** | Live remote execution on a single Linux or Windows machine |
|
|
@@ -57,6 +57,18 @@ osai-agent run --coding
|
|
|
57
57
|
osai-agent connect
|
|
58
58
|
```
|
|
59
59
|
|
|
60
|
+
### File Generation
|
|
61
|
+
|
|
62
|
+
The GENERAL mode can generate PDF, DOCX, PPTX, and XLSX files on demand. Simply describe the document you need:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
osai-agent run
|
|
66
|
+
# Then ask: "Generate a PDF invoice" or "Create a PowerPoint presentation"
|
|
67
|
+
# or: "Export this data as an Excel spreadsheet"
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Python 3 is required. The agent automatically creates an isolated virtual environment (`venv`) so all dependencies are installed safely without affecting your system Python.
|
|
71
|
+
|
|
60
72
|
### From source
|
|
61
73
|
|
|
62
74
|
```bash
|