@moxxy/cli 0.3.3 → 0.5.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 CHANGED
@@ -51,7 +51,7 @@ Install this if you want to use moxxy. If you want to author plugins, depend on
51
51
  ## What you get out of the box
52
52
 
53
53
  - A complete agent stack with Anthropic, OpenAI, and ChatGPT (OAuth) providers.
54
- - Five loop strategies: `tool-use` (default Claude-Code-style), `plan-execute`, `bmad`, `developer`, and `deep-research`.
54
+ - Three loop modes: `default` (Claude-Code-style ReAct loop), `goal` (autonomous auto-approve loop), and `research` (parallel-subagent fan-out + synthesis).
55
55
  - Built-in tools: Read, Edit, Write, Bash, Grep, Glob, WebFetch, computer-control (macOS), and browser-session (Playwright, optional).
56
56
  - Multi-channel by design: TUI, Telegram, HTTP, web, cron, and webhooks. One session can drive several surfaces at once.
57
57
  - Voice input on any audio-capable channel through `@moxxy/plugin-stt-whisper`.
@@ -206,9 +206,9 @@ export default defineConfig({
206
206
  model: 'claude-sonnet-4-6',
207
207
  config: { apiKey: '${vault:ANTHROPIC_API_KEY}' }, // resolved from the vault
208
208
  },
209
- mode: 'tool-use',
209
+ mode: 'default',
210
210
  plugins: {
211
- '@moxxy/mode-plan-execute': { enabled: false }, // disable per-plugin
211
+ '@moxxy/plugin-browser': { enabled: false }, // disable a plugin (or use `moxxy plugins disable`)
212
212
  },
213
213
  });
214
214
  ```