atris 3.15.23 → 3.15.30
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 +53 -0
- package/ax +1083 -0
- package/commands/aeo.js +377 -13
- package/commands/gm.js +25 -9
- package/commands/play.js +41 -9
- package/commands/sync.js +9 -4
- package/commands/xp.js +224 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -86,6 +86,56 @@ Core loop: `plan` -> `do` -> `review`
|
|
|
86
86
|
|
|
87
87
|
Integrates with any agent.
|
|
88
88
|
|
|
89
|
+
## Chat With Atris 2
|
|
90
|
+
|
|
91
|
+
`ax` is the local Atris 2 coding-agent CLI. It talks to the AtrisOS backend at `http://127.0.0.1:8000/api/atris2/turn`, streams text, shows tool activity, and sends the current folder as the workspace.
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
cd your-project
|
|
95
|
+
ax --pro "find the task system and explain it"
|
|
96
|
+
ax --fast "what files are here?"
|
|
97
|
+
ax --pro --chat
|
|
98
|
+
ax --doctor
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Use Pro for agentic file work and edit/test loops. Use Fast for quick workspace search, short chats, and small edits.
|
|
102
|
+
|
|
103
|
+
## Play AgentXP
|
|
104
|
+
|
|
105
|
+
AgentXP is the proof-backed game loop for getting better with agents. Start it
|
|
106
|
+
inside any project folder:
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
npm exec --yes --package github:atrislabs/atris#v3.15.28 -- atris play --as <player>
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
The first run creates a local starter mission if one does not exist. The loop is:
|
|
113
|
+
|
|
114
|
+
```text
|
|
115
|
+
start -> proof -> accept -> login -> sync
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
The player path:
|
|
119
|
+
|
|
120
|
+
```bash
|
|
121
|
+
atris play --as justin
|
|
122
|
+
atris task claim <mission-ref> --as game-manager
|
|
123
|
+
atris task ready <mission-ref> --as game-manager --proof "<artifact path + verifier result>"
|
|
124
|
+
atris task accept <mission-ref> --as justin --proof "<human review>"
|
|
125
|
+
atris xp card --local
|
|
126
|
+
atris login
|
|
127
|
+
atris xp sync --local --as justin
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
The manager path:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
atris gm --player justin
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
No proof, no AgentXP. Human accept/revise is the gate before XP can count on
|
|
137
|
+
the local card or hosted leaderboard.
|
|
138
|
+
|
|
89
139
|
## Business Owners
|
|
90
140
|
|
|
91
141
|
If you want a shared owner for a company, lab, collective, community, artist, team, or project, use the business command instead of raw `atris init`.
|
|
@@ -138,6 +188,9 @@ atris business record atris/reports/2026-04-12-operator-recap.md --outcome mixed
|
|
|
138
188
|
| `atris log` | Add inbox items to today's journal |
|
|
139
189
|
| `atris status` | Show active work and completions |
|
|
140
190
|
| `atris task` | Durable local task state with claims, dialogue, review episodes, JSON export, TODO import, TODO render, board, and sync dry-run |
|
|
191
|
+
| `atris play` | Enter the AgentXP player loop for one proof-backed mission |
|
|
192
|
+
| `atris gm` | Enter AgentXP General Manager mode for player missions and review queues |
|
|
193
|
+
| `atris xp` | Show the local AgentXP card and sync eligible proof to the hosted leaderboard |
|
|
141
194
|
| `atris codex-goal` | Inspect or clear a completed native Codex thread goal after writing a backup, row dump, and receipt |
|
|
142
195
|
| `atris learn` | Manage structured learnings |
|
|
143
196
|
| `atris ingest` | Stage raw evidence into `atris/context/` and compile into `atris/wiki/` |
|