osagent 0.1.20 → 0.1.22

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 +26 -1
  2. package/dist/cli.js +2864 -2248
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -83,6 +83,9 @@ osagent --model qwen2.5-coder:32b
83
83
 
84
84
  # Resume last session
85
85
  osagent --continue
86
+
87
+ # Check system health (CLI command)
88
+ osagent doctor
86
89
  ```
87
90
 
88
91
  ### Slash Commands
@@ -116,6 +119,11 @@ Once in the interactive mode, you can use these commands:
116
119
  - `/doctor` - Check system health and updates
117
120
  - `/doctor update` - Auto-update to latest version
118
121
  - `/doctor init` - Initialize `~/.osagent/` directory structure
122
+ - `/view` - View system architecture and configuration
123
+ - `/view config` - Current configuration
124
+ - `/view files` - Configuration files
125
+ - `/view models` - Supported models
126
+ - `/context` or `/ctx` - View context window usage and token stats
119
127
 
120
128
  #### Utilities
121
129
  - `/copy` - Copy last response to clipboard
@@ -123,6 +131,23 @@ Once in the interactive mode, you can use these commands:
123
131
  - `/tools` - List available tools
124
132
  - `/mcp` - Manage MCP servers
125
133
 
134
+ ### Status Bar
135
+
136
+ While OS Agent works, you'll see a real-time status bar showing:
137
+ - Current activity with spinner
138
+ - Token usage (input ↑ / output ↓)
139
+ - Elapsed time
140
+ - Task progress and list
141
+
142
+ ```
143
+ ┌─────────────────────────────────────────────────────────┐
144
+ │ ◐ Writing tests for auth module... (2/5) ↑12.3k ↓8.2k 2m 15s │
145
+ │ ├─ ○ Create test file │
146
+ │ ├─ ◐ Writing unit tests │
147
+ │ └─ ○ Run tests and fix errors │
148
+ └─────────────────────────────────────────────────────────┘
149
+ ```
150
+
126
151
  ### Consultation Mode
127
152
 
128
153
  OS Agent can ask you clarifying questions as it works to better understand your requirements:
@@ -134,7 +159,7 @@ OS Agent can ask you clarifying questions as it works to better understand your
134
159
  /consult context # View collected context
135
160
  ```
136
161
 
137
- Questions appear below the loading indicator during agent operations.
162
+ Questions appear in a dedicated panel below the status bar during agent operations.
138
163
 
139
164
  ### Configuration
140
165