@inference-gateway/cli 0.165.0 → 0.166.0
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,7 +96,7 @@ An agentic command-line assistant that writes code, understands project context,
|
|
|
96
96
|
`infer plugins install owner/repo` - content only, plugin code is never executed - [Learn more →](docs/plugins.md)
|
|
97
97
|
- **Persistent Memory**: Cross-session memory stored as individual Markdown fact-files with an
|
|
98
98
|
auto-maintained `MEMORY.md` index that is injected at session start - on by default - [Learn more →](#persistent-memory)
|
|
99
|
-
- **Subagents**: Spawn parallel `infer
|
|
99
|
+
- **Subagents**: Spawn parallel `infer headless` subprocesses from chat with the `Agent` tool to fan out
|
|
100
100
|
independent work (research, edits, investigations) and fold their results back into the conversation
|
|
101
101
|
- **Computer Use**: Let the agent drive the desktop - mouse, keyboard, screenshots, app focus - across
|
|
102
102
|
macOS, X11, and Wayland - off by default - [Learn more →](#computer-use)
|
|
@@ -351,18 +351,18 @@ infer chat --web --port 8080 # Custom port
|
|
|
351
351
|
- Access from any device on the network
|
|
352
352
|
- Responsive terminal sizing with horizontal padding
|
|
353
353
|
|
|
354
|
-
**`infer
|
|
354
|
+
**`infer headless`** - Execute autonomous tasks in background mode
|
|
355
355
|
|
|
356
356
|
```bash
|
|
357
357
|
# Start new agent sessions
|
|
358
|
-
infer
|
|
359
|
-
infer
|
|
360
|
-
infer
|
|
358
|
+
infer headless "Please fix the github issue 38"
|
|
359
|
+
infer headless --model "openai/gpt-4" "Implement feature from issue #42"
|
|
360
|
+
infer headless "Analyze this UI issue" --files screenshot.png
|
|
361
361
|
|
|
362
362
|
# Resume existing sessions
|
|
363
363
|
infer conversations list # Find session IDs
|
|
364
|
-
infer
|
|
365
|
-
infer
|
|
364
|
+
infer headless "continue fixing the bug" --session-id abc-123-def
|
|
365
|
+
infer headless "analyze new logs" --session-id abc-123 --files error.log
|
|
366
366
|
```
|
|
367
367
|
|
|
368
368
|
**Features:** Autonomous execution, multimodal support (images/files), parallel tool execution, **session resumption**.
|
|
@@ -528,7 +528,7 @@ use the `gh` CLI through Bash (or the built-in `/scm` shortcuts) for GitHub oper
|
|
|
528
528
|
|
|
529
529
|
| Tool | Purpose | Approval |
|
|
530
530
|
| ------ | --------- | ---------- |
|
|
531
|
-
| **Agent** | Spawn an `infer
|
|
531
|
+
| **Agent** | Spawn an `infer headless` subprocess to run work in parallel | Yes |
|
|
532
532
|
| **ListSubagents** | List spawned subagents and their status | No |
|
|
533
533
|
| **GetSubagentResult** | Re-read a finished subagent's last message | No |
|
|
534
534
|
| **ReadSubagentScreen** | Capture an interactive subagent's terminal screen | No |
|
|
@@ -1053,7 +1053,7 @@ infer channels-manager
|
|
|
1053
1053
|
|
|
1054
1054
|
**5. Send a message** to your bot in Telegram - the agent will respond.
|
|
1055
1055
|
|
|
1056
|
-
Each incoming message triggers `infer
|
|
1056
|
+
Each incoming message triggers `infer headless --session-id <id>` as a
|
|
1057
1057
|
subprocess with a persistent session per sender.
|
|
1058
1058
|
|
|
1059
1059
|
### Tool Approval
|
|
@@ -1333,7 +1333,7 @@ infer init
|
|
|
1333
1333
|
infer chat
|
|
1334
1334
|
|
|
1335
1335
|
# Execute autonomous task
|
|
1336
|
-
infer
|
|
1336
|
+
infer headless "Fix the bug in issue #42"
|
|
1337
1337
|
|
|
1338
1338
|
# Check gateway status
|
|
1339
1339
|
infer status
|