atris 3.30.12 → 3.32.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 (64) hide show
  1. package/AGENTS.md +16 -3
  2. package/FOR_AGENTS.md +81 -0
  3. package/README.md +6 -4
  4. package/atris/CLAUDE.md +8 -0
  5. package/atris/atris.md +51 -19
  6. package/atris/skills/README.md +1 -0
  7. package/atris/skills/blocks/SKILL.md +134 -0
  8. package/atris/skills/clawhub/philosophy-of-work/SKILL.md +56 -0
  9. package/atris/skills/youtube/SKILL.md +31 -11
  10. package/atris.md +15 -0
  11. package/ax +189 -7
  12. package/bin/atris.js +273 -225
  13. package/commands/autoland.js +379 -0
  14. package/commands/autopilot-front.js +273 -0
  15. package/commands/autopilot.js +94 -4
  16. package/commands/business.js +1 -1
  17. package/commands/clean.js +72 -9
  18. package/commands/codex-goal.js +72 -22
  19. package/commands/computer.js +48 -3
  20. package/commands/gm.js +1 -1
  21. package/commands/harvest.js +179 -0
  22. package/commands/init.js +22 -1
  23. package/commands/land.js +442 -0
  24. package/commands/loop-front.js +122 -4
  25. package/commands/member.js +551 -19
  26. package/commands/mission.js +3674 -278
  27. package/commands/play.js +1 -1
  28. package/commands/pulse.js +65 -7
  29. package/commands/run-front.js +144 -0
  30. package/commands/run.js +10 -7
  31. package/commands/sign.js +90 -0
  32. package/commands/strings.js +301 -0
  33. package/commands/task.js +782 -108
  34. package/commands/truth.js +171 -0
  35. package/commands/xp.js +32 -8
  36. package/commands/youtube.js +72 -5
  37. package/decks/README.md +6 -12
  38. package/lib/auto-accept-certified.js +10 -0
  39. package/lib/autoland.js +391 -0
  40. package/lib/context-gatherer.js +0 -8
  41. package/lib/mission-artifact.js +504 -0
  42. package/lib/mission-room.js +846 -0
  43. package/lib/next-moves.js +212 -6
  44. package/lib/operator-next.js +7 -0
  45. package/lib/pulse.js +78 -4
  46. package/lib/runner-command.js +51 -20
  47. package/lib/runs-prune.js +242 -0
  48. package/lib/task-db.js +19 -2
  49. package/lib/task-proof.js +1 -1
  50. package/package.json +4 -4
  51. package/decks/atris-seed-pitch-v3.json +0 -118
  52. package/decks/atris-seed-pitch-v4-skeleton.json +0 -106
  53. package/decks/atris-seed-pitch-v5.json +0 -109
  54. package/decks/atris-seed-pitch-v6.json +0 -137
  55. package/decks/atris-seed-pitch-v7.json +0 -133
  56. package/decks/mark-pincus-narrative.json +0 -102
  57. package/decks/mark-pincus-sourcery.json +0 -94
  58. package/decks/yash-applied-compute-detailed.json +0 -150
  59. package/decks/yash-applied-compute-generalist.json +0 -82
  60. package/decks/yash-applied-compute-narrative.json +0 -54
  61. package/lib/ax-chat-input.js +0 -164
  62. package/lib/ax-goal.js +0 -307
  63. package/lib/ax-prefs.js +0 -63
  64. package/lib/ax-shimmer.js +0 -63
package/lib/ax-shimmer.js DELETED
@@ -1,63 +0,0 @@
1
- const ANSI = {
2
- reset: '\x1b[0m',
3
- dim: '\x1b[2m',
4
- muted: '\x1b[90m',
5
- white: '\x1b[37m',
6
- bright: '\x1b[97m',
7
- };
8
-
9
- function useColor(options = {}) {
10
- if (options.color === false) return false;
11
- if (process.env.NO_COLOR) return false;
12
- return Boolean(options.color || options.isTTY);
13
- }
14
-
15
- function paint(text, codes, options = {}) {
16
- if (!useColor(options)) return String(text);
17
- const styles = codes.filter(Boolean);
18
- if (!styles.length) return String(text);
19
- return `${styles.join('')}${text}${ANSI.reset}`;
20
- }
21
-
22
- const SHIMMER_TICK_STEP = 0.44;
23
-
24
- function shimmerStyleForDistance(dist) {
25
- // Obelisk .shimmer-text: pure grayscale luminance sweep — no bold, no hue.
26
- const t = Math.min(Math.max(dist, 0) / 3.4, 1);
27
- if (t <= 0.2) return [ANSI.bright];
28
- if (t <= 0.48) return [ANSI.white];
29
- if (t <= 0.72) return [ANSI.muted];
30
- return [ANSI.dim, ANSI.muted];
31
- }
32
-
33
- function renderShimmerText(text, tick = 0, options = {}) {
34
- const value = String(text || '');
35
- if (!value) return '';
36
- if (!useColor(options)) return value;
37
-
38
- const len = Math.max(1, value.length);
39
- const cycle = len + 12;
40
- const head = (Number(tick) * SHIMMER_TICK_STEP) % cycle;
41
-
42
- let out = '';
43
- for (let i = 0; i < value.length; i += 1) {
44
- const char = value[i];
45
- if (char === ' ') {
46
- out += ' ';
47
- continue;
48
- }
49
- let dist = Math.abs(i - head);
50
- if (dist > cycle / 2) dist = cycle - dist;
51
- out += paint(char, shimmerStyleForDistance(dist), options);
52
- }
53
- return out;
54
- }
55
-
56
- module.exports = {
57
- ANSI,
58
- SHIMMER_TICK_STEP,
59
- paint,
60
- renderShimmerText,
61
- shimmerStyleForDistance,
62
- useColor,
63
- };