atris 3.24.0 → 3.25.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 CHANGED
@@ -87,18 +87,18 @@ Integrates with any agent.
87
87
 
88
88
  ## Chat With Atris 2
89
89
 
90
- `ax` is the local Atris 2 coding-agent CLI. It talks to a local AtrisOS backend (default `http://127.0.0.1:8000`), streams text, shows tool activity, and sends the current folder as the workspace.
90
+ `ax` is the Atris 2 chat and coding-agent CLI. It uses the hosted Atris cloud by default, streams text, shows tool activity, and keeps fresh installs away from backend setup.
91
91
 
92
92
  ```bash
93
93
  cd your-project
94
- ax --pro "find the task system and explain it"
95
- ax --fast "what files are here?"
96
- ax --max "refactor this module and verify the tests"
97
- ax --pro --chat
94
+ ax chat ax --fast
95
+ ax --fast "hello"
96
+ ax --pro "help me plan this task"
97
+ ax --max "reason through this hard decision"
98
98
  ax --doctor
99
99
  ```
100
100
 
101
- Use Pro for agentic file work and edit/test loops. Use Fast for quick workspace search, short chats, and small edits. Use Max for the hardest jobs — it runs the highest-reasoning model and takes longer per turn.
101
+ Use Fast for quick chat and low-latency Atris loops. Use Pro for deeper tool loops. Use Max for the hardest jobs — it runs the highest-reasoning model and takes longer per turn. Advanced local workspace mode is opt-in with `--local` plus `AX_BACKEND_URL`.
102
102
 
103
103
  ## Play AgentXP
104
104