fluxflow-cli 1.11.3 → 1.12.1
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 +19 -0
- package/dist/fluxflow.js +414 -228
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -83,6 +83,25 @@ While you move at high speed, the Janitor follows behind—refining session titl
|
|
|
83
83
|
|
|
84
84
|
---
|
|
85
85
|
|
|
86
|
+
## 💻 CLI Startup Arguments
|
|
87
|
+
Customize your session parameters directly from your console launch command:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
fluxflow [options]
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Supported Flags:
|
|
94
|
+
- `--model <model-name>`: Temporary override for the active AI model (e.g., `gemini-2.5-pro`). Keeps settings file untouched.
|
|
95
|
+
- `--memory <on|off>`: Toggle persistent long-term agent memory for the session.
|
|
96
|
+
- `--resume <session-id>`: Resume a previous chat session programmatically.
|
|
97
|
+
- `--update <check|latest>`: Manually run an update check (`check`) or execute latest update setup (`latest`).
|
|
98
|
+
- `--package <npm|pnpm|yarn|bun>`: Override default package manager to run core application updates.
|
|
99
|
+
- `--auto-del <1d|7d|30d>`: Set automated chat log deletion schedule.
|
|
100
|
+
- `--auto-exec <on|off>`: Toggle autonomous command execution permission.
|
|
101
|
+
- `--external-access <on|off>`: Toggle permission to let agent read files outside CWD.
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
86
105
|
## ⚙️ Configuration
|
|
87
106
|
Type `/settings` in-app to live-configure:
|
|
88
107
|
- **Thinking Level**: Fast (No Reasoning), Low, Medium, High, xHigh (Extended Reasoning).
|