atris 3.30.12 → 3.31.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.
Files changed (58) hide show
  1. package/AGENTS.md +16 -3
  2. package/FOR_AGENTS.md +81 -0
  3. package/README.md +3 -1
  4. package/atris/atris.md +51 -19
  5. package/atris/skills/README.md +1 -0
  6. package/atris/skills/blocks/SKILL.md +134 -0
  7. package/atris/skills/clawhub/philosophy-of-work/SKILL.md +56 -0
  8. package/atris/skills/youtube/SKILL.md +31 -11
  9. package/atris.md +7 -0
  10. package/ax +95 -3
  11. package/bin/atris.js +126 -153
  12. package/commands/autoland.js +319 -0
  13. package/commands/autopilot.js +94 -4
  14. package/commands/business.js +1 -1
  15. package/commands/clean.js +72 -9
  16. package/commands/codex-goal.js +72 -22
  17. package/commands/computer.js +48 -3
  18. package/commands/gm.js +1 -1
  19. package/commands/harvest.js +179 -0
  20. package/commands/init.js +1 -1
  21. package/commands/land.js +442 -0
  22. package/commands/loop-front.js +122 -4
  23. package/commands/member.js +519 -19
  24. package/commands/mission.js +3330 -290
  25. package/commands/play.js +1 -1
  26. package/commands/pulse.js +65 -7
  27. package/commands/run.js +3 -3
  28. package/commands/strings.js +301 -0
  29. package/commands/task.js +575 -102
  30. package/commands/truth.js +170 -0
  31. package/commands/xp.js +32 -8
  32. package/commands/youtube.js +72 -5
  33. package/decks/README.md +6 -12
  34. package/lib/auto-accept-certified.js +10 -0
  35. package/lib/autoland.js +283 -0
  36. package/lib/context-gatherer.js +0 -8
  37. package/lib/mission-artifact.js +504 -0
  38. package/lib/mission-room.js +846 -0
  39. package/lib/next-moves.js +212 -6
  40. package/lib/pulse.js +74 -1
  41. package/lib/runner-command.js +20 -8
  42. package/lib/runs-prune.js +242 -0
  43. package/lib/task-proof.js +1 -1
  44. package/package.json +3 -3
  45. package/decks/atris-seed-pitch-v3.json +0 -118
  46. package/decks/atris-seed-pitch-v4-skeleton.json +0 -106
  47. package/decks/atris-seed-pitch-v5.json +0 -109
  48. package/decks/atris-seed-pitch-v6.json +0 -137
  49. package/decks/atris-seed-pitch-v7.json +0 -133
  50. package/decks/mark-pincus-narrative.json +0 -102
  51. package/decks/mark-pincus-sourcery.json +0 -94
  52. package/decks/yash-applied-compute-detailed.json +0 -150
  53. package/decks/yash-applied-compute-generalist.json +0 -82
  54. package/decks/yash-applied-compute-narrative.json +0 -54
  55. package/lib/ax-chat-input.js +0 -164
  56. package/lib/ax-goal.js +0 -307
  57. package/lib/ax-prefs.js +0 -63
  58. package/lib/ax-shimmer.js +0 -63
package/lib/task-proof.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  const GENERIC_COMPLETION_PROOF_RE = /^(?:done|done now|complete|completed|finished|fixed|handled|ship|shipped|ok|okay|yes|yep|looks good|looks good to me|all set|should be good|works now|approved|approve|lgtm|failed)$/i;
4
4
 
5
- const COMMAND_PROOF_RE = /\b(?:npm\s+run|npm\s+test|node\s+--test|node\s+scripts\/|pnpm\b|yarn\b|npx\b|pytest\b|python\s+-m|tsc\b|vite\s+build|git\s+diff\s+--(?:check|exit-code|quiet)|grep\s+-[A-Za-z]*q[A-Za-z]*|rg\s+(?:-\S+\s+)*(?:"[^"]+"|'[^']+'|\S+)\s+(?:\.{0,2}\/|~\/|\/|[\w.-]+\/|[\w.-]+\.[A-Za-z0-9]|\b(?:atris|bin|commands|lib|scripts|src|test)\b)|diff\s+(?:-u|--brief)|cmp\s+-s|curl\b|atris\s+task|\.\/ax\b|ax\s+--|test\s+-s)\b/i;
5
+ const COMMAND_PROOF_RE = /\b(?:npm\s+run|npm\s+test|node\s+--test|node\s+scripts\/|node\s+bin\/atris[.]js\s+clean\s+--dry-run\s+--json|pnpm\b|yarn\b|npx\b|pytest\b|python\s+-m|tsc\b|vite\s+build|git\s+diff\s+--(?:check|exit-code|quiet)|grep\s+-[A-Za-z]*q[A-Za-z]*|rg\s+(?:-\S+\s+)*(?:"[^"]+"|'[^']+'|\S+)\s+(?:\.{0,2}\/|~\/|\/|[\w.-]+\/|[\w.-]+\.[A-Za-z0-9]|\b(?:atris|bin|commands|lib|scripts|src|test)\b)|diff\s+(?:-u|--brief)|cmp\s+-s|curl\b|atris\s+task|\.\/ax\b|ax\s+--|test\s+-s)\b/i;
6
6
  const FILE_PROOF_RE = /(?:^|[\s'"`])(?:\.{0,2}\/|~\/|\/Users\/|src\/|scripts\/|atris\/|backend\/|public\/|resources\/|package[.]json|main[.]js|preload[.]js|AGENTXP_PROOF[.]md)[^\s'"`,;)]*/i;
7
7
  const PATH_ONLY_PROOF_RE = /(?:^|[\s'"`])(?:\.{0,2}\/|~\/|\/Users\/|\/private\/|\/var\/|atris\/runs\/|\.atris\/state\/)[^\s'"`,;)]+(?:[.](?:json|jsonl|md|log|txt|png|jpg|jpeg|pdf))?/i;
8
8
  const RECEIPT_OR_ARTIFACT_RE = /\b(?:receipt|artifact|screenshot|log|trace|path=|file=|bytes=|model=|opened=|https?:\/\/)\b/i;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atris",
3
- "version": "3.30.12",
3
+ "version": "3.31.0",
4
4
  "main": "bin/atris.js",
5
5
  "bin": {
6
6
  "atris": "bin/atris.js",
@@ -17,10 +17,10 @@
17
17
  "templates/",
18
18
  "README.md",
19
19
  "AGENTS.md",
20
+ "FOR_AGENTS.md",
20
21
  "atris.md",
21
22
  "GETTING_STARTED.md",
22
23
  "PERSONA.md",
23
- "atris/atrisDev.md",
24
24
  "atris/CLAUDE.md",
25
25
  "atris/GEMINI.md",
26
26
  "atris/GETTING_STARTED.md",
@@ -48,12 +48,12 @@
48
48
  "atris/team/_template/MEMBER.md",
49
49
  "atris/features/_templates/",
50
50
  "atris/features/company-brain-sync/",
51
- "templates/",
52
51
  "atris/policies/",
53
52
  "atris/skills/"
54
53
  ],
55
54
  "scripts": {
56
55
  "test": "node --test",
56
+ "lint:decks": "node scripts/lint-all-decks.js",
57
57
  "publish:release": "node scripts/publish-atris-release.js",
58
58
  "prepare": "cp scripts/pre-commit .git/hooks/pre-commit 2>/dev/null && chmod +x .git/hooks/pre-commit || true"
59
59
  },
@@ -1,118 +0,0 @@
1
- {
2
- "theme": "paper",
3
- "brand": { "name": "Atris", "accent": "." },
4
- "slides": [
5
- {
6
- "type": "title",
7
- "headline": "The self-improving **business computer.**",
8
- "sub": "Work closes its own loop. Memory, authority, receipts, outcomes. One standard for humans and agents.",
9
- "panel": {
10
- "header": { "title": "Closed loop", "meta": "every action" },
11
- "rows": [
12
- { "title": "context", "sub": "memory in", "value": "1", "valueSub": "step", "sev": 2 },
13
- { "title": "action", "sub": "member acts", "value": "2", "valueSub": "step", "sev": 1 },
14
- { "title": "receipt", "sub": "proof out", "value": "3", "valueSub": "step", "sev": 0, "active": true },
15
- { "title": "outcome", "sub": "result", "value": "4", "valueSub": "step", "sev": 2 }
16
- ],
17
- "footer": { "left": "environment first", "right": "model later" }
18
- }
19
- },
20
- {
21
- "type": "statement",
22
- "text": "Work used to **end.** Now every action can become memory.",
23
- "sub": "Stored work becomes acted work, then remembered work. Context, action, receipt, outcome, reward, better next action."
24
- },
25
- {
26
- "type": "columns",
27
- "heading": "A business computer, not a chatbot",
28
- "columns": [
29
- {
30
- "h": "Memory",
31
- "b": "Receipts compress into lessons and return as minimum useful context."
32
- },
33
- {
34
- "h": "Members",
35
- "b": "Humans and agents with owner, tools, authority, trail, and score."
36
- },
37
- {
38
- "h": "Receipts",
39
- "b": "Who authorized, who acted, what proof confirms it, what the business got."
40
- }
41
- ]
42
- },
43
- {
44
- "type": "statement",
45
- "text": "They learn the **click.** We learn the outcome.",
46
- "sub": "Others reward the draft interaction. Atris rewards the business result: reply, booking, deal, recovery."
47
- },
48
- {
49
- "type": "panel",
50
- "heading": "The market proved the gap.",
51
- "sub": "Agents act everywhere. Almost none verify the result.",
52
- "panel": {
53
- "header": { "title": "Why now", "meta": "2026" },
54
- "rows": [
55
- { "title": "No verification", "sub": "AIRQ audit", "value": "98%", "valueSub": "of agents", "sev": 0, "active": true },
56
- { "title": "Self-grader cheats", "sub": "Reward benchmark", "value": "14%", "valueSub": "top models", "sev": 0 },
57
- { "title": "Agent rollback", "sub": "Sinch survey", "value": "74%", "valueSub": "enterprises", "sev": 1 }
58
- ],
59
- "footer": { "left": "guardrails gate behavior", "right": "not results" }
60
- }
61
- },
62
- {
63
- "type": "columns",
64
- "heading": "Product today",
65
- "columns": [
66
- {
67
- "h": "Atris2 Fast",
68
- "b": "Open tool harness. Periphery prepares work without usurping judgment."
69
- },
70
- {
71
- "h": "Deferral queue",
72
- "b": "Sends, money, and public acts pause for your approval with a judgment packet."
73
- },
74
- {
75
- "h": "Antislop gates",
76
- "b": "Deterministic block on AI UI tells, hype copy, and raw outbound artifacts."
77
- }
78
- ]
79
- },
80
- {
81
- "type": "bignumber",
82
- "number": "+3.35",
83
- "label": "RL readiness lift after verified episodes",
84
- "sub": "Diff, receipt, verifier, outcome. Atris runs on Atris."
85
- },
86
- {
87
- "type": "panel",
88
- "heading": "Customer recovery first.",
89
- "sub": "Close one painful loop. Prove the outcome. Expand.",
90
- "panel": {
91
- "header": { "title": "Wedge", "meta": "expand" },
92
- "rows": [
93
- { "title": "Customer silent", "sub": "churn or complaint", "value": "in", "sev": 1 },
94
- { "title": "Member acts", "sub": "draft recovery", "value": "act", "sev": 0, "active": true },
95
- { "title": "Receipt", "sub": "trust or revenue?", "value": "proof", "sev": 2 },
96
- { "title": "Expand", "sub": "sales, ops, finance", "value": "out", "sev": 1 }
97
- ],
98
- "footer": { "left": "one loop proven", "right": "then expand" }
99
- }
100
- },
101
- {
102
- "type": "chips",
103
- "heading": "Business model",
104
- "sub": "We do not tax Members. Members close loops.",
105
- "chips": ["$200/mo computer", "Unlimited Members", "Usage credits", "Managed setup", "Enterprise"],
106
- "mono": "base + verified outcomes"
107
- },
108
- {
109
- "type": "close",
110
- "tagline": "Ambition and freedom should not cancel each other out.",
111
- "buttons": [
112
- { "label": "See the demo", "primary": true },
113
- { "label": "Talk to us" }
114
- ],
115
- "footer": "Raising $10M seed · atris.ai · 2026"
116
- }
117
- ]
118
- }
@@ -1,106 +0,0 @@
1
- {
2
- "theme": "paper",
3
- "brand": { "name": "Atris", "accent": "." },
4
- "slides": [
5
- {
6
- "type": "columns",
7
- "heading": "1 · The gate",
8
- "sub": "Models regulated, access unequal, AI narrative toxic.",
9
- "columns": [
10
- { "h": "bullet 1", "b": "(your words)" },
11
- { "h": "bullet 2", "b": "(your words)" },
12
- { "h": "bullet 3", "b": "(your words)" }
13
- ]
14
- },
15
- {
16
- "type": "columns",
17
- "heading": "2 · The trap",
18
- "sub": "Everyone is building the same mimetic slop on rented intelligence.",
19
- "columns": [
20
- { "h": "bullet 1", "b": "(your words)" },
21
- { "h": "bullet 2", "b": "(your words)" },
22
- { "h": "bullet 3", "b": "(your words)" }
23
- ]
24
- },
25
- {
26
- "type": "columns",
27
- "heading": "3 · The shift",
28
- "sub": "Early adopters want an owned center, not another chatbot.",
29
- "columns": [
30
- { "h": "bullet 1", "b": "(your words)" },
31
- { "h": "bullet 2", "b": "(your words)" },
32
- { "h": "bullet 3", "b": "(your words)" }
33
- ]
34
- },
35
- {
36
- "type": "columns",
37
- "heading": "4 · The sovereign individual",
38
- "sub": "At the center. Ecosystem around them — software, school, community, capital.",
39
- "columns": [
40
- { "h": "bullet 1", "b": "(your words)" },
41
- { "h": "bullet 2", "b": "(your words)" },
42
- { "h": "bullet 3", "b": "(your words)" }
43
- ]
44
- },
45
- {
46
- "type": "columns",
47
- "heading": "5 · The product",
48
- "sub": "Self-improving environment, swappable models, agent-native system of record.",
49
- "columns": [
50
- { "h": "bullet 1", "b": "(your words)" },
51
- { "h": "bullet 2", "b": "(your words)" },
52
- { "h": "bullet 3", "b": "(your words)" }
53
- ]
54
- },
55
- {
56
- "type": "columns",
57
- "heading": "6 · The proof",
58
- "sub": "Center Study and businesses that improve overnight. Live loops, not demos.",
59
- "columns": [
60
- { "h": "bullet 1", "b": "(your words)" },
61
- { "h": "bullet 2", "b": "(your words)" },
62
- { "h": "bullet 3", "b": "(your words)" }
63
- ]
64
- },
65
- {
66
- "type": "columns",
67
- "heading": "7 · First business",
68
- "sub": "Education / transformation. ~$250k run rate. 1–3 FDEs per cluster.",
69
- "columns": [
70
- { "h": "bullet 1", "b": "(your words)" },
71
- { "h": "bullet 2", "b": "(your words)" },
72
- { "h": "bullet 3", "b": "(your words)" }
73
- ]
74
- },
75
- {
76
- "type": "columns",
77
- "heading": "8 · Customers",
78
- "sub": "DoorDash and Pallet — what actually runs today.",
79
- "columns": [
80
- { "h": "bullet 1", "b": "(your words)" },
81
- { "h": "bullet 2", "b": "(your words)" },
82
- { "h": "bullet 3", "b": "(your words)" }
83
- ]
84
- },
85
- {
86
- "type": "columns",
87
- "heading": "9 · Growth",
88
- "sub": "Founder-first distribution. Mimetic spread. Clone the machine.",
89
- "columns": [
90
- { "h": "bullet 1", "b": "(your words)" },
91
- { "h": "bullet 2", "b": "(your words)" },
92
- { "h": "bullet 3", "b": "(your words)" }
93
- ]
94
- },
95
- {
96
- "type": "columns",
97
- "heading": "10 · The ask",
98
- "sub": "$10M — FDE team, narrative, run more businesses, own the layer beneath the gate.",
99
- "columns": [
100
- { "h": "bullet 1", "b": "(your words)" },
101
- { "h": "bullet 2", "b": "(your words)" },
102
- { "h": "bullet 3", "b": "(your words)" }
103
- ]
104
- }
105
- ]
106
- }
@@ -1,109 +0,0 @@
1
- {
2
- "theme": "paper",
3
- "brand": { "name": "Atris", "accent": "." },
4
- "slides": [
5
- {
6
- "type": "title",
7
- "headline": "Every business owner has two real problems.",
8
- "sub": "The work they hate doing. The work they can't afford to hire for. Atris does both — inside their company, with a receipt every time.",
9
- "panel": {
10
- "header": { "title": "Closed loop", "meta": "every action" },
11
- "rows": [
12
- { "title": "context", "sub": "memory in", "value": "1", "valueSub": "step", "sev": 2 },
13
- { "title": "action", "sub": "member acts", "value": "2", "valueSub": "step", "sev": 1 },
14
- { "title": "receipt", "sub": "proof out", "value": "3", "valueSub": "step", "sev": 0, "active": true },
15
- { "title": "outcome", "sub": "result", "value": "4", "valueSub": "step", "sev": 2 }
16
- ],
17
- "footer": { "left": "perimeter-resident", "right": "outcome-graded" }
18
- }
19
- },
20
- {
21
- "type": "columns",
22
- "heading": "Three operators. Three jobs. One product.",
23
- "columns": [
24
- {
25
- "h": "DoorDash",
26
- "b": "Forecasting, weekly business review, internal Atris adoption. The workflow became a process. The process became a religion."
27
- },
28
- {
29
- "h": "Pallet",
30
- "b": "Recruiting team. Atris learns the non-engineering workflow and converts it to a coding problem."
31
- },
32
- {
33
- "h": "[Customer 3]",
34
- "b": "Bookkeeping or finance ops. Hours of human grunt work compressed to minutes, with a receipt per close."
35
- }
36
- ]
37
- },
38
- {
39
- "type": "bignumber",
40
- "number": "$250k",
41
- "label": "run rate · 1–3 FDEs · operator workflows at $10M–$5B companies",
42
- "sub": "We start in the room nobody else is in. Then ten more rooms exactly like it."
43
- },
44
- {
45
- "type": "statement",
46
- "text": "They store **facts.** We learn the **outcome.**",
47
- "sub": "Mem0 stores facts. Letta stores context. Glean indexes docs. Atris is the only one where the customer's runtime ships back a reward signal so the agent gets measurably better at their work — with the data never leaving their perimeter."
48
- },
49
- {
50
- "type": "panel",
51
- "heading": "One machine, N customers.",
52
- "sub": "Each with their own disk, own behavior, own reward signal. Same code everywhere. No data crosses.",
53
- "panel": {
54
- "header": { "title": "Architecture", "meta": "perimeter-resident" },
55
- "rows": [
56
- { "title": "Disk", "sub": "per-customer memory", "value": "in", "valueSub": "perimeter", "sev": 1 },
57
- { "title": "Behavior", "sub": "per-customer policies", "value": "in", "valueSub": "perimeter", "sev": 1 },
58
- { "title": "Reward signal", "sub": "verifiable outcomes", "value": "out", "valueSub": "to us", "sev": 0, "active": true },
59
- { "title": "Weights", "sub": "trained on reward stream", "value": "back", "valueSub": "each release", "sev": 2 }
60
- ],
61
- "footer": { "left": "data plane stays", "right": "reward plane streams" }
62
- }
63
- },
64
- {
65
- "type": "statement",
66
- "text": "The labs are becoming the new **oil companies.**",
67
- "sub": "Frontier models are being rate-limited, regulated, gated customer-by-customer. Standard Oil didn't lose to a better well — it lost to the refinery. The next trillion-dollar company owns the layer between raw intelligence and the work."
68
- },
69
- {
70
- "type": "columns",
71
- "heading": "Why now",
72
- "columns": [
73
- {
74
- "h": "Labs gated",
75
- "b": "Tokens regulated. Frontier access limited. Customer-by-customer approval. The race for the smartest brain is becoming a utility."
76
- },
77
- {
78
- "h": "Wrappers dead",
79
- "b": "Thin GPT wrappers are over. What's alive is the layer beneath — memory, taste, approval, proof, on the customer's perimeter."
80
- },
81
- {
82
- "h": "Window open",
83
- "b": "Installation phase. History says the next decade's winners are not the rail-layers. Amazon over Cisco. Google over WorldCom. Walmart over the railroads."
84
- }
85
- ]
86
- },
87
- {
88
- "type": "statement",
89
- "text": "The **Shadow Center.**",
90
- "sub": "Every system has a center. The labs occupy the one beneath every AI-native business today. The seat is open. Atris is the architecture for the next occupant — memory, taste, approval, proof, running inside the customer's perimeter, getting sharper every week."
91
- },
92
- {
93
- "type": "chips",
94
- "heading": "Business model",
95
- "sub": "Base + services + outcomes. We do not tax Members.",
96
- "chips": ["$200/mo computer", "Unlimited Members", "$5–25k/mo FDE-embedded", "Outcome upside", "Enterprise"],
97
- "mono": "Sierra-shaped: 18 months behind their arc"
98
- },
99
- {
100
- "type": "close",
101
- "tagline": "In 2030, every serious AI business runs on a Shadow Center. We are the one underneath.",
102
- "buttons": [
103
- { "label": "See the demo", "primary": true },
104
- { "label": "Talk to us" }
105
- ],
106
- "footer": "Raising $10M seed · atris.ai · 2026"
107
- }
108
- ]
109
- }
@@ -1,137 +0,0 @@
1
- {
2
- "theme": "paper",
3
- "brand": { "name": "Atris", "accent": "." },
4
- "slides": [
5
- {
6
- "type": "title",
7
- "headline": "Every operator at a growing company has two real problems.",
8
- "sub": "The work they hate doing. The work they can't afford to hire for. Atris does both — inside their company, with a receipt every time.",
9
- "panel": {
10
- "header": { "title": "Closed loop", "meta": "every action" },
11
- "rows": [
12
- { "title": "context", "sub": "memory in", "value": "1", "valueSub": "step", "sev": 2 },
13
- { "title": "action", "sub": "member acts", "value": "2", "valueSub": "step", "sev": 1 },
14
- { "title": "receipt", "sub": "proof out", "value": "3", "valueSub": "step", "sev": 0, "active": true },
15
- { "title": "outcome", "sub": "result", "value": "4", "valueSub": "step", "sev": 2 }
16
- ],
17
- "footer": { "left": "perimeter-resident", "right": "outcome-graded" }
18
- }
19
- },
20
- {
21
- "type": "columns",
22
- "heading": "Two operators today. Third closing this month.",
23
- "columns": [
24
- {
25
- "h": "DoorDash",
26
- "b": "Weekly business review prep cut from 8 hours to 90 minutes. Forecasting + internal Atris adoption across the operating team. [confirm number]"
27
- },
28
- {
29
- "h": "Pallet",
30
- "b": "Candidate-to-shortlist time down 60%. Atris learns the recruiting workflow and converts it to a coding problem. [confirm number]"
31
- },
32
- {
33
- "h": "Pilot.com (closing)",
34
- "b": "Bookkeeper hours per close eliminated. Structured human grunt work that wants to be code."
35
- }
36
- ]
37
- },
38
- {
39
- "type": "bignumber",
40
- "number": "$250k",
41
- "label": "run rate · 1–3 FDEs · FDE-hours per $ARR shrinking each quarter",
42
- "sub": "We start in the room nobody else is in. Then ten more rooms exactly like it. The leverage curve is the only number that answers the services question."
43
- },
44
- {
45
- "type": "panel",
46
- "heading": "One closed loop, fully receipted.",
47
- "sub": "Context in. Member acts. Proof out. Outcome graded. Reward signal flows back. The agent is sharper next week.",
48
- "panel": {
49
- "header": { "title": "Receipt", "meta": "DoorDash WBR · last week" },
50
- "rows": [
51
- { "title": "Authorized by", "sub": "operator", "value": "human", "sev": 2 },
52
- { "title": "Acted by", "sub": "Atris member", "value": "agent", "sev": 1 },
53
- { "title": "Proof", "sub": "diff + verifier passed", "value": "✓", "sev": 0, "active": true },
54
- { "title": "Outcome", "sub": "hours returned", "value": "6.5h", "valueSub": "saved", "sev": 1 }
55
- ],
56
- "footer": { "left": "every action has this receipt", "right": "every receipt trains the loop" }
57
- }
58
- },
59
- {
60
- "type": "panel",
61
- "heading": "One machine, N customers.",
62
- "sub": "Each with their own disk, own behavior, own reward signal. Same code everywhere. No data crosses.",
63
- "panel": {
64
- "header": { "title": "Architecture", "meta": "perimeter-resident" },
65
- "rows": [
66
- { "title": "Disk", "sub": "per-customer memory", "value": "in", "valueSub": "perimeter", "sev": 1 },
67
- { "title": "Behavior", "sub": "per-customer policies", "value": "in", "valueSub": "perimeter", "sev": 1 },
68
- { "title": "Reward signal", "sub": "verifiable outcomes", "value": "out", "valueSub": "to us", "sev": 0, "active": true },
69
- { "title": "Weights", "sub": "trained on reward stream", "value": "back", "valueSub": "each release", "sev": 2 }
70
- ],
71
- "footer": { "left": "data plane stays", "right": "reward plane streams" }
72
- }
73
- },
74
- {
75
- "type": "statement",
76
- "text": "They store **facts.** We learn the **outcome.**",
77
- "sub": "Mem0 stores facts. Letta stores context. Glean indexes docs. Atris is the only one where the customer's runtime ships back a reward signal so the agent gets measurably better at their work — with the data never leaving their perimeter."
78
- },
79
- {
80
- "type": "columns",
81
- "heading": "Why now",
82
- "sub": "The labs are becoming the new oil companies. Standard Oil didn't lose to a better well — it lost to the refinery.",
83
- "columns": [
84
- {
85
- "h": "Labs gated",
86
- "b": "Tokens regulated. Frontier access limited. Customer-by-customer approval. The race for the smartest brain is becoming a utility."
87
- },
88
- {
89
- "h": "Wrappers dead",
90
- "b": "Thin GPT wrappers are over. What's alive is the layer beneath — memory, taste, approval, proof, on the customer's perimeter."
91
- },
92
- {
93
- "h": "Window open",
94
- "b": "Installation phase, pre-deployment. History says the next decade's winners are not the rail-layers. Amazon over Cisco. Google over WorldCom."
95
- }
96
- ]
97
- },
98
- {
99
- "type": "statement",
100
- "text": "The **layer beneath** every AI business.",
101
- "sub": "Memory, taste, approval, proof. Running inside the customer's perimeter. Getting sharper every week. The labs build the models. We build the seat the model sits in."
102
- },
103
- {
104
- "type": "statement",
105
- "text": "Solo founder. Two production customers. Builds the company on the product.",
106
- "sub": "Atris runs Atris. The weekly business review you'd run on Atris is the same one I ran to prep this pitch. The chip on the shoulder is that nobody else is willing to live inside their own product long enough to make it real."
107
- },
108
- {
109
- "type": "panel",
110
- "heading": "$10M seed.",
111
- "sub": "Itemized. Named milestones. Next round funded by revenue, not desperation.",
112
- "panel": {
113
- "header": { "title": "Use of funds", "meta": "$10M · 24 months" },
114
- "rows": [
115
- { "title": "4 FDEs", "sub": "clone DoorDash/Pallet to 8 more accounts", "value": "$1.8M", "sev": 1 },
116
- { "title": "2 substrate engineers", "sub": "receipts, judges, succession surface", "value": "$1.2M", "sev": 1 },
117
- { "title": "Narrative + customer receipts engine", "sub": "founder content, public proof", "value": "$0.3M", "sev": 2 },
118
- { "title": "Compute + lab dependency", "sub": "18 months", "value": "$1.5M", "sev": 2 }
119
- ],
120
- "footer": { "left": "builder + proof engine", "right": "$4.8M allocated" }
121
- }
122
- },
123
- {
124
- "type": "panel",
125
- "heading": "Runway funds the compounding loop.",
126
- "sub": "Reserve is explicit. The next round is earned by revenue proof.",
127
- "panel": {
128
- "header": { "title": "Reserve", "meta": "$5.2M" },
129
- "rows": [
130
- { "title": "Spin-up reserve", "sub": "first overnight-loop business on Atris", "value": "$1.0M", "sev": 0, "active": true },
131
- { "title": "Reserve + runway", "sub": "24 months personal + corporate", "value": "$4.2M", "sev": 2 }
132
- ],
133
- "footer": { "left": "milestone: $3M ARR in 12 months", "right": "next round on revenue" }
134
- }
135
- }
136
- ]
137
- }
@@ -1,133 +0,0 @@
1
- {
2
- "theme": "paper",
3
- "brand": { "name": "Atris", "accent": "." },
4
- "slides": [
5
- {
6
- "type": "title",
7
- "headline": "Every operator at a growing company has two real problems.",
8
- "sub": "The work they hate doing. The work they can't afford to hire for. Atris does both — inside their company, with a receipt every time.",
9
- "panel": {
10
- "header": { "title": "Closed loop", "meta": "every action" },
11
- "rows": [
12
- { "title": "context", "sub": "memory in", "value": "1", "valueSub": "step", "sev": 2 },
13
- { "title": "action", "sub": "member acts", "value": "2", "valueSub": "step", "sev": 1 },
14
- { "title": "receipt", "sub": "proof out", "value": "3", "valueSub": "step", "sev": 0, "active": true },
15
- { "title": "outcome", "sub": "result", "value": "4", "valueSub": "step", "sev": 2 }
16
- ],
17
- "footer": { "left": "perimeter-resident", "right": "outcome-graded" }
18
- }
19
- },
20
- {
21
- "type": "columns",
22
- "heading": "Two paying customers. One running on itself.",
23
- "columns": [
24
- {
25
- "h": "DoorDash · $15k/mo",
26
- "b": "Weekly business review system live. Forecasting, decision engine, daily pacing, proactive alerts. Operator workflow inside the Ads team."
27
- },
28
- {
29
- "h": "Pallet · live",
30
- "b": "84 files, 7 production skills deployed. CEO has the system. Sales workflows across 1,163 deals, 25 meetings, 2,352 call moments."
31
- },
32
- {
33
- "h": "Atris runs Atris",
34
- "b": "20 blue-team security fixes shipped autonomously. 21+ hours autonomous operation. RL loop on the product's own receipts."
35
- }
36
- ]
37
- },
38
- {
39
- "type": "bignumber",
40
- "number": "$250k",
41
- "label": "run rate · 1–3 FDEs · 3rd customer in close",
42
- "sub": "We start in the room nobody else is in. Then ten more rooms exactly like it. The FDE-leverage curve is the only number that answers the services question."
43
- },
44
- {
45
- "type": "panel",
46
- "heading": "One closed loop, fully receipted.",
47
- "sub": "Context in. Member acts. Proof out. Outcome graded. Reward signal flows back. The agent is sharper next week.",
48
- "panel": {
49
- "header": { "title": "Receipt shape", "meta": "every action carries one" },
50
- "rows": [
51
- { "title": "Authorized by", "sub": "operator", "value": "human", "sev": 2 },
52
- { "title": "Acted by", "sub": "Atris member", "value": "agent", "sev": 1 },
53
- { "title": "Proof", "sub": "diff + verifier passed", "value": "✓", "sev": 0, "active": true },
54
- { "title": "Outcome graded", "sub": "reward streams back", "value": "loop", "valueSub": "closes", "sev": 1 }
55
- ],
56
- "footer": { "left": "every action has this receipt", "right": "every receipt trains the loop" }
57
- }
58
- },
59
- {
60
- "type": "panel",
61
- "heading": "One machine, N customers.",
62
- "sub": "Each with their own disk, own behavior, own reward signal. Same code everywhere. No data crosses.",
63
- "panel": {
64
- "header": { "title": "Architecture", "meta": "perimeter-resident" },
65
- "rows": [
66
- { "title": "Disk", "sub": "per-customer memory", "value": "in", "valueSub": "perimeter", "sev": 1 },
67
- { "title": "Behavior", "sub": "per-customer policies", "value": "in", "valueSub": "perimeter", "sev": 1 },
68
- { "title": "Reward signal", "sub": "verifiable outcomes", "value": "out", "valueSub": "to us", "sev": 0, "active": true },
69
- { "title": "Weights", "sub": "trained on reward stream", "value": "back", "valueSub": "each release", "sev": 2 }
70
- ],
71
- "footer": { "left": "data plane stays", "right": "reward plane streams" }
72
- }
73
- },
74
- {
75
- "type": "statement",
76
- "text": "They store **facts.** We learn the **outcome.**",
77
- "sub": "Mem0 stores facts. Letta stores context. Glean indexes docs. Atris is the only one where the customer's runtime ships back a reward signal so the agent gets measurably better at their work — with the data never leaving their perimeter."
78
- },
79
- {
80
- "type": "panel",
81
- "heading": "Why now",
82
- "sub": "The labs are becoming the new oil companies. Standard Oil didn't lose to a better well — it lost to the refinery.",
83
- "panel": {
84
- "header": { "title": "Gating is live", "meta": "2025–2026" },
85
- "rows": [
86
- { "title": "GPT-5.6 Sol", "sub": "~20 White House–approved customers", "value": "Jun 26", "valueSub": "2026", "sev": 0, "active": true },
87
- { "title": "Claude Fable 5", "sub": "pulled in 3 days, US export directive", "value": "Jun 12", "valueSub": "2026", "sev": 0 },
88
- { "title": "OpenAI Verified Org", "sub": "gov ID + selfie for GPT-5/o3 API", "value": "Apr", "valueSub": "2025", "sev": 1 },
89
- { "title": "EU AI Act GPAI", "sub": "fines up to 7% global revenue", "value": "Aug 2", "valueSub": "2026", "sev": 2 }
90
- ],
91
- "footer": { "left": "labs becoming utilities", "right": "the layer beneath wins" }
92
- }
93
- },
94
- {
95
- "type": "statement",
96
- "text": "The **layer beneath** every AI business.",
97
- "sub": "Memory, taste, approval, proof. Running inside the customer's perimeter. Getting sharper every week. The labs build the models. We build the seat the model sits in."
98
- },
99
- {
100
- "type": "statement",
101
- "text": "Solo founder. Two production customers. Builds the company on the product.",
102
- "sub": "Atris runs Atris. The weekly business review you'd run on Atris is the same one I run to operate. The chip on the shoulder is that nobody else is willing to live inside their own product long enough to make it real."
103
- },
104
- {
105
- "type": "panel",
106
- "heading": "$10M seed.",
107
- "sub": "Itemized. Named milestones. Next round funded by revenue, not desperation.",
108
- "panel": {
109
- "header": { "title": "Use of funds", "meta": "$10M · 24 months" },
110
- "rows": [
111
- { "title": "4 FDEs", "sub": "clone DoorDash/Pallet to 8 more accounts", "value": "$1.8M", "sev": 1 },
112
- { "title": "2 substrate engineers", "sub": "receipts, judges, succession surface", "value": "$1.2M", "sev": 1 },
113
- { "title": "Narrative + customer receipts engine", "sub": "founder content, public proof", "value": "$0.3M", "sev": 2 },
114
- { "title": "Compute + lab dependency", "sub": "18 months", "value": "$1.5M", "sev": 2 }
115
- ],
116
- "footer": { "left": "builder + proof engine", "right": "$4.8M allocated" }
117
- }
118
- },
119
- {
120
- "type": "panel",
121
- "heading": "Runway funds the compounding loop.",
122
- "sub": "Reserve is explicit. The next round is earned by revenue proof.",
123
- "panel": {
124
- "header": { "title": "Reserve", "meta": "$5.2M" },
125
- "rows": [
126
- { "title": "Spin-up reserve", "sub": "first overnight-loop business on Atris", "value": "$1.0M", "sev": 0, "active": true },
127
- { "title": "Reserve + runway", "sub": "24 months personal + corporate", "value": "$4.2M", "sev": 2 }
128
- ],
129
- "footer": { "left": "milestone: $3M ARR in 12 months", "right": "next round on revenue" }
130
- }
131
- }
132
- ]
133
- }