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 +6 -6
- package/atris/atrisDev.md +717 -0
- package/atris/policies/outbound-artifact-gate.md +48 -0
- package/atris/skills/atris-feedback/SKILL.md +2 -3
- package/atris/wiki/sources/atris-labs-2026-05-10.txt +6 -9
- package/atris/wiki/sources/atris-labs-goals-2026-05-10.txt +4 -5
- package/atris.md +19 -43
- package/ax +1687 -95
- package/bin/atris.js +2 -38
- package/commands/aeo.js +5 -5
- package/commands/computer.js +0 -1
- package/commands/mission.js +2 -1
- package/commands/recap.js +0 -16
- package/commands/sync.js +2 -0
- package/commands/workflow.js +1 -2
- package/commands/youtube.js +183 -0
- package/lib/ax-chat-input.js +164 -0
- package/lib/ax-goal.js +307 -0
- package/lib/ax-prefs.js +70 -0
- package/lib/ax-shimmer.js +63 -0
- package/lib/context-gatherer.js +8 -26
- package/package.json +2 -1
- package/commands/card.js +0 -121
- package/commands/deck.js +0 -184
- package/commands/reel.js +0 -128
- package/commands/site.js +0 -48
- package/commands/slop.js +0 -307
- package/commands/theme.js +0 -217
- package/lib/card.js +0 -120
- package/lib/deck-from-md.js +0 -110
- package/lib/html-render.js +0 -257
- package/lib/memory-view.js +0 -95
- package/lib/reel.js +0 -52
- package/lib/site.js +0 -114
- package/lib/slides-deck.js +0 -237
- package/lib/theme.js +0 -264
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
|
|
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
|
|
95
|
-
ax --fast "
|
|
96
|
-
ax --
|
|
97
|
-
ax --
|
|
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
|
|
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
|
|