osai-agent 4.1.6 → 4.1.10

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 +16 -4
  2. 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 |
@@ -25,13 +25,13 @@ Execution sub-modes: **PLAN** (read-only, no modifications) and **EXEC** (full e
25
25
 
26
26
  ## Screenshots
27
27
 
28
- ![Welcome](assets/screenshots/welcome.png)
28
+ ![Welcome](https://raw.githubusercontent.com/King03-sam/osai-agent/main/osai-agent/assets/screenshots/welcome.png)
29
29
  *Welcome screen with logo and available commands*
30
30
 
31
- ![Terminal Session](assets/screenshots/terminal.png)
31
+ ![Terminal Session](https://raw.githubusercontent.com/King03-sam/osai-agent/main/osai-agent/assets/screenshots/terminal.png)
32
32
  *Interactive agent session in the terminal*
33
33
 
34
- ![Slash Menu](assets/screenshots/terminal-slash-menu.png)
34
+ ![Slash Menu](https://raw.githubusercontent.com/King03-sam/osai-agent/main/osai-agent/assets/screenshots/terminal-slash-menu.png)
35
35
  *Slash command menu for mode switching and actions*
36
36
 
37
37
  ---
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osai-agent",
3
- "version": "4.1.6",
3
+ "version": "4.1.10",
4
4
  "type": "module",
5
5
  "description": "OS AI Agent - YOUR AI AGENT",
6
6
  "main": "src/index.js",