atris 3.51.0 → 3.53.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/atris/skills/engines/SKILL.md +8 -7
- package/atris/skills/youtube/SKILL.md +8 -8
- package/ax +592 -91
- package/bin/atris.js +17 -5
- package/commands/computer.js +2 -2
- package/commands/mission.js +52 -24
- package/commands/now.js +10 -3
- package/commands/radar.js +65 -33
- package/commands/youtube.js +206 -23
- package/lib/auto-accept-certified.js +2 -1
- package/lib/engine-ask.js +11 -3
- package/lib/engine-registry.js +32 -7
- package/lib/mission-ledger-compact.js +127 -0
- package/lib/mission-runtime-loop.js +30 -2
- package/lib/next-moves.js +34 -34
- package/lib/permission-grants.js +10 -1
- package/lib/runner-command.js +5 -4
- package/lib/task-db.js +18 -2
- package/lib/task-proof.js +6 -1
- package/lib/task-receipt.js +5 -1
- package/package.json +2 -1
- package/scripts/outbound-artifact-gate.js +227 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: engines
|
|
3
|
-
description: "Dispatch work to an installed terminal agent or named Atris engine profile. Supports Atris Fast, Claude, Codex, Cursor, Fable, Composer, Haiku, Devin, Grok, and
|
|
4
|
-
version: 1.
|
|
3
|
+
description: "Dispatch work to an installed terminal agent or named Atris engine profile. Supports Atris Fast, Claude, Codex, Cursor, Fable, Composer, Haiku, Devin, Grok, and Antigravity (agy). Triggers on: use codex, use cursor, use devin, use grok, use agy, use antigravity, use fable, use claude, use atris, engine, dispatch to, worker agent, second opinion build."
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
tags:
|
|
6
6
|
- engines
|
|
7
7
|
- claude
|
|
@@ -12,7 +12,8 @@ tags:
|
|
|
12
12
|
- haiku
|
|
13
13
|
- devin
|
|
14
14
|
- grok
|
|
15
|
-
-
|
|
15
|
+
- agy
|
|
16
|
+
- antigravity
|
|
16
17
|
- atris
|
|
17
18
|
- orchestration
|
|
18
19
|
---
|
|
@@ -42,7 +43,7 @@ Raw spawns are not the default because they skip Atris receipts, watch, and coac
|
|
|
42
43
|
| Haiku | `claude -p "<prompt>" --model claude-haiku-4-5` | Fast validation and bounded read-only checks. |
|
|
43
44
|
| Devin | `devin -p --permission-mode dangerous -- "<prompt>"` (run from the target repo) | Default permission mode is read-only for writes — build work NEEDS `--permission-mode dangerous`, so only run it in an isolated worktree. Also `devin cloud` for sessions that outlive this machine. Supports `--model swe-1.7` |
|
|
44
45
|
| Grok | `grok --always-approve -p "<prompt>"` (run from the target repo) | Headless single-turn via `-p`; default model grok-4.6. Very fast on lookups (~5-10s, reads MAP first). Great for quick second opinions; use `--best-of-n <N>` for tricky bounded builds. Uses grok.com login |
|
|
45
|
-
|
|
|
46
|
+
| Antigravity | `agy --mode accept-edits -p "<prompt>"` | `agy` executor profile. Use `--mode plan --sandbox` for read-only review and `--model <id>` to pin a model. |
|
|
46
47
|
|
|
47
48
|
Headless dispatch permissions (verified 2026-08-11): `codex exec`, `grok`, and `cursor-agent` are allowlisted in `~/.claude/settings.json` so fresh and one-shot sessions can dispatch without a human approval click. A cold session that gets "requires approval" on an engine command means that allowlist regressed.
|
|
48
49
|
|
|
@@ -55,10 +56,10 @@ Headless dispatch permissions (verified 2026-08-11): `codex exec`, `grok`, and `
|
|
|
55
56
|
- **Composer / Haiku** — fast, bounded navigation, edits, and validation where a max-tier model would be wasteful.
|
|
56
57
|
- **Devin** — multi-step feature work; use `cloud` when the run should survive laptop sleep.
|
|
57
58
|
- **Grok** - fastest frontier lookups and quick second opinions (grok-4.6, ~5-10s; reads MAP first); use `--best-of-n` for tricky bounded builds. Uses grok.com login.
|
|
58
|
-
- **
|
|
59
|
+
- **Antigravity / agy** — flexible executor work across Gemini, Claude, and GPT-OSS models; use `agy` as the canonical short name.
|
|
59
60
|
- Parallel builds across repos: one engine job per repo, never two engines writing the same checkout.
|
|
60
61
|
|
|
61
|
-
## Models worth pinning (verified live 2026-08-
|
|
62
|
+
## Models worth pinning (verified live 2026-08-15)
|
|
62
63
|
|
|
63
64
|
Each engine CLI can pin a specific model. Current best picks:
|
|
64
65
|
|
|
@@ -71,7 +72,7 @@ Each engine CLI can pin a specific model. Current best picks:
|
|
|
71
72
|
| Haiku | `--model claude-haiku-4-5` | `haiku` for fast validation |
|
|
72
73
|
| Grok | (default) | `grok-4.6` default (confirmed live 2026-08-12, ~5s lookup), `grok-4.5` still available via `-m` |
|
|
73
74
|
| Codex | `-m <model>` | CLI default rides `~/.codex/config.toml`; pin with `-m` only when the task needs it |
|
|
74
|
-
|
|
|
75
|
+
| Antigravity / agy | `--model <id>` | `gemini-3.7-flash-high` for speed, `gemini-3.1-pro-high` for depth, `claude-sonnet-4-6`, `claude-opus-4-6-thinking`, or `gpt-oss-120b-medium` |
|
|
75
76
|
| Atris Fast | (fixed) | api.atris.ai fast lane |
|
|
76
77
|
|
|
77
78
|
Re-verify this table when a lab ships a new model: run each CLI's model-list command, smoke one lookup, and update the row. Free-tier windows (like swe-1.7 now) are the moment to fan out volume work.
|
|
@@ -73,7 +73,7 @@ TOKEN=$(node -e "console.log(require('$HOME/.atris/credentials.json').token)")
|
|
|
73
73
|
### Process a Video
|
|
74
74
|
```bash
|
|
75
75
|
atris youtube process "https://www.youtube.com/watch?v=VIDEO_ID" \
|
|
76
|
-
--query "Create
|
|
76
|
+
--query "Create an outline, claims, examples, takeaways, and action items."
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
**Parameters:**
|
|
@@ -120,13 +120,13 @@ atris youtube process "https://www.youtube.com/watch?v=..." \
|
|
|
120
120
|
|
|
121
121
|
### "Learn from this YouTube video"
|
|
122
122
|
1. Run bootstrap
|
|
123
|
-
2. Process: `atris youtube process <url> --query "Create
|
|
124
|
-
3. Display the
|
|
123
|
+
2. Process: `atris youtube process <url> --query "Create an outline, claims, examples, takeaways, Atris implications, and next actions."`
|
|
124
|
+
3. Display the analysis as flowing prose: ideas and who said them, never timecodes. Timestamps stay in the stored notes file for verification, not in the reply.
|
|
125
125
|
|
|
126
126
|
### "What does this video say about X?"
|
|
127
127
|
1. Run bootstrap
|
|
128
128
|
2. Process with focused query: `atris youtube process <url> --query "What does this say about X?"`
|
|
129
|
-
3. Show the focused analysis
|
|
129
|
+
3. Show the focused analysis as prose; cite the speaker, not the clock
|
|
130
130
|
|
|
131
131
|
### "Process multiple videos on a topic"
|
|
132
132
|
1. Run bootstrap
|
|
@@ -143,7 +143,7 @@ for url in "${VIDEOS[@]}"; do
|
|
|
143
143
|
echo ""
|
|
144
144
|
done
|
|
145
145
|
```
|
|
146
|
-
3. Synthesize findings across all videos
|
|
146
|
+
3. Synthesize findings across all videos; attribute ideas to speakers and videos, keep timecodes out of the reply
|
|
147
147
|
|
|
148
148
|
### "Save video insights to my agent's memory"
|
|
149
149
|
1. Run bootstrap
|
|
@@ -159,7 +159,7 @@ Default output should be useful for retrieval and action:
|
|
|
159
159
|
|
|
160
160
|
```text
|
|
161
161
|
metadata
|
|
162
|
-
|
|
162
|
+
outline (flowing, idea-first)
|
|
163
163
|
core claims with confidence
|
|
164
164
|
memorable examples
|
|
165
165
|
actionable takeaways
|
|
@@ -167,7 +167,7 @@ Atris/product implications
|
|
|
167
167
|
next actions
|
|
168
168
|
```
|
|
169
169
|
|
|
170
|
-
|
|
170
|
+
Two layers, never mixed. The reply the person reads is flowing prose: ideas, speakers, quotes, no timecodes, nothing that reads like a stopwatch. The stored notes file keeps timestamps beside each claim so verification stays possible; that receipt layer never leaks into the reply. Treat native-video/cloud fallback output as less auditable unless the stored file includes equivalent time anchors.
|
|
171
171
|
|
|
172
172
|
## How It Works
|
|
173
173
|
|
|
@@ -205,7 +205,7 @@ npm install -g atris && atris login
|
|
|
205
205
|
TOKEN=$(node -e "console.log(require('$HOME/.atris/credentials.json').token)")
|
|
206
206
|
|
|
207
207
|
# Process a video
|
|
208
|
-
atris youtube process "https://youtube.com/watch?v=..." --query "Create a
|
|
208
|
+
atris youtube process "https://youtube.com/watch?v=..." --query "Create a outline (flowing, idea-first) and action brief"
|
|
209
209
|
|
|
210
210
|
# Process + store to agent knowledge
|
|
211
211
|
atris youtube process "https://youtube.com/watch?v=..." --agent "YOUR_ID" --store
|