@emaxe/agento 0.1.0 → 0.1.2

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 +83 -5
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -82,10 +82,12 @@ agento launch -p default -a qwen -m child -s project
82
82
 
83
83
  ## Interactive TUI
84
84
 
85
- Running `agento` without arguments launches an interactive Terminal User Interface:
85
+ Running `agento` without arguments launches an interactive Terminal User Interface built with [Ink](https://github.com/vadimdemedes/ink) and React.
86
+
87
+ ### Main Menu
86
88
 
87
89
  ```
88
- ┌────────── AgentO v0.1.0 ──────────┐
90
+ ┌────────── AgentO v0.1.1 ──────────┐
89
91
  │ │
90
92
  │ ▶ Launch Agent │
91
93
  │ Providers │
@@ -96,9 +98,85 @@ Running `agento` without arguments launches an interactive Terminal User Interfa
96
98
  └───────────────────────────────────┘
97
99
  ```
98
100
 
99
- - **↑↓** Navigate
100
- - **Enter** Select
101
- - **Esc / q** Back/Quit
101
+ **Navigation:** **↑↓** to move, **Enter** to select, **Esc / q** to quit.
102
+
103
+ ### Screens Overview
104
+
105
+ | Screen | What You Can Do | Key Shortcuts |
106
+ |--------|----------------|---------------|
107
+ | **Launch Agent** | Select profile → select agent → choose mode/scope → launch | **Enter** select, **Esc** back |
108
+ | **Providers** | View, add, edit, delete API providers | **Enter** details, **a** add, **e** edit, **d** delete, **Esc** back |
109
+ | **Profiles** | View, add, delete profiles. In profile details: add/remove/edit models | **Enter** details, **a** add, **d** delete, **Esc** back |
110
+ | **Agents** | Check config status (global/project), backup availability | **Enter** details, **Esc** back |
111
+ | **Settings** | Change default launch mode, default config scope, independent mode | **↑↓** change, **Enter** toggle, **Esc** save & back |
112
+
113
+ ### Launch Agent Workflow
114
+
115
+ 1. **Select Profile** — Choose from your saved profiles
116
+ 2. **Select Agent** — Pick which agent to launch (claude-code, opencode, qwen, or codex with `--dev`)
117
+ 3. **Optional:** Adjust **Mode** (child/independent) and **Scope** (global/project)
118
+ 4. **Launch** — AgentO patches the agent config and starts the agent
119
+
120
+ ```
121
+ Profile: default
122
+ ├─ Agent: claude-code
123
+ ├─ Mode: child
124
+ ├─ Scope: global
125
+ └─ [ Launch ]
126
+ ```
127
+
128
+ In **child mode**, you'll be returned to AgentO when the agent exits, and the original config is automatically restored.
129
+
130
+ In **independent mode**, AgentO exits immediately and leaves the patched config in place.
131
+
132
+ ### Providers Screen
133
+
134
+ Manage your API providers without memorizing CLI flags:
135
+
136
+ - **View** all providers with their type, models count, and base URL
137
+ - **Add** a new provider with guided prompts (name, type, API key, models, base URL)
138
+ - **Edit** existing provider details
139
+ - **Delete** providers you no longer need
140
+
141
+ ### Profiles Screen
142
+
143
+ Organize your model configurations:
144
+
145
+ - **View** all profiles with their models and tiers
146
+ - **Add** profiles with single or multi-tier model configurations
147
+ - **In profile details:** add/remove/edit individual model assignments
148
+
149
+ ### Agents Screen
150
+
151
+ Monitor the status of your agent configurations:
152
+
153
+ - See if each agent has a **global** or **project** config
154
+ - Check if **backups** exist (indicating AgentO has previously patched the config)
155
+ - View config file paths for each agent
156
+
157
+ ### Settings Screen
158
+
159
+ Configure defaults for AgentO behavior:
160
+
161
+ | Setting | Options | Description |
162
+ |---------|---------|-------------|
163
+ | **Default Launch Mode** | `child` / `independent` | How agents are launched by default |
164
+ | **Default Config Scope** | `global` / `project` | Where agent configs are written |
165
+ | **Independent Mode** | `spawn-detached` / `pty` | How independent mode spawns agents |
166
+
167
+ **Controls:** **↑↓** navigate between settings, **Enter** or **Space** toggle values, **Esc** save and return.
168
+
169
+ ### TUI vs CLI
170
+
171
+ | Task | TUI | CLI |
172
+ |------|-----|-----|
173
+ | Explore providers visually | ✅ | — |
174
+ | Quick one-off launch | — | `agento launch -p <p> -a <a>` |
175
+ | Script automation | — | ✅ |
176
+ | Check agent config status | ✅ | `agento agent status` |
177
+ | Guided provider/profile creation | ✅ | Manual flag composition |
178
+
179
+ Use **TUI** for exploration and interactive workflows. Use **CLI** for scripting, aliases, and quick launches.
102
180
 
103
181
  ## CLI Reference
104
182
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emaxe/agento",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Manage AI agent configurations with profiles and providers",
5
5
  "author": "emaxe",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  "homepage": "https://github.com/emaxe/agentO#readme",
29
29
  "type": "module",
30
30
  "bin": {
31
- "agento": "./dist/bin/agento.js"
31
+ "agento": "dist/bin/agento.js"
32
32
  },
33
33
  "main": "./dist/index.js",
34
34
  "exports": {