atris 1.5.1 → 1.5.3
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/GETTING_STARTED.md +10 -0
- package/README.md +26 -0
- package/atris/GETTING_STARTED.md +10 -0
- package/atris/atris.md +8 -0
- package/bin/atris-legacy-backup.js +3611 -0
- package/bin/atris-new.js +161 -0
- package/bin/atris.js +1315 -77
- package/package.json +2 -1
package/GETTING_STARTED.md
CHANGED
|
@@ -64,6 +64,16 @@ atris autopilot
|
|
|
64
64
|
|
|
65
65
|
You'll pick a vision (from today's Inbox or a fresh idea), define success criteria, and then step through plan → do → review cycles. The CLI logs each iteration, and you can type `exit` at any prompt to stop.
|
|
66
66
|
|
|
67
|
+
## Launch a brainstorm (optional)
|
|
68
|
+
|
|
69
|
+
Need help shaping an idea before it becomes a task? Run:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
atris brainstorm
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
Answer a couple quick questions, get a ready-to-send Claude Code conversation starter (context + ASCII cue), and choose whether to log the session summary and next steps.
|
|
76
|
+
|
|
67
77
|
## What Each File Does
|
|
68
78
|
|
|
69
79
|
### MAP.md
|
package/README.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# Atris CLI - Engineering Acceleration Cycle
|
|
2
|
+
|
|
3
|
+
**The complete workflow from idea to launch**
|
|
4
|
+
|
|
5
|
+
See [`ENGINEERING_CYCLE.md`](./ENGINEERING_CYCLE.md) for the full vision.
|
|
6
|
+
|
|
7
|
+
## The Cycle
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
atris init → atris brainstorm → atris plan → atris do → atris review → atris launch
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Each command provides clear instruction prompts for your coding agent (Claude Code, Cursor, etc.).
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
1
17
|
# Atris
|
|
2
18
|
|
|
3
19
|
Drop one command. Your team of AI agents instantly know your entire codebase.
|
|
@@ -55,6 +71,16 @@ atris autopilot
|
|
|
55
71
|
|
|
56
72
|
Pick a vision (Inbox item or fresh idea), define the success criteria, and the CLI will walk you through plan → do → review cycles until the validator signs off. Everything is logged back to today's journal; type `exit` at any prompt to bail out.
|
|
57
73
|
|
|
74
|
+
## Brainstorm (beta)
|
|
75
|
+
|
|
76
|
+
Need a structured prompt for an agent-led ideation session?
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
atris brainstorm
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
Answer a couple quick questions, get a ready-to-send conversation opener for Claude Code (with context + ASCII cue), and optionally log the session summary plus next steps.
|
|
83
|
+
|
|
58
84
|
---
|
|
59
85
|
|
|
60
86
|
**License:** MIT | **Repo:** [github.com/atrislabs/atris.md](https://github.com/atrislabs/atris.md.git)
|
package/atris/GETTING_STARTED.md
CHANGED
|
@@ -115,6 +115,16 @@ atris autopilot
|
|
|
115
115
|
|
|
116
116
|
Pick a vision (today's Inbox or a fresh idea), set success criteria, and follow the guided plan → do → review cycles. Each iteration gets logged, and you can type `exit` at any prompt to stop.
|
|
117
117
|
|
|
118
|
+
## Launch a brainstorm (optional)
|
|
119
|
+
|
|
120
|
+
Need to shape an idea before creating tasks? Run:
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
atris brainstorm
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Answer a couple quick questions, generate a Claude Code-ready conversation starter (context + ASCII cue), and optionally log the brainstorm summary with next steps.
|
|
127
|
+
|
|
118
128
|
## Keeping ATRIS Updated
|
|
119
129
|
|
|
120
130
|
When the ATRIS package updates with new features:
|
package/atris/atris.md
CHANGED
|
@@ -271,6 +271,14 @@ After MAP.md generation, agents receive project context injection (framework, ke
|
|
|
271
271
|
|
|
272
272
|
**Daily Goal:** Inbox zero. All thoughts processed, tasks executed, docs updated.
|
|
273
273
|
|
|
274
|
+
### CLI Shortcuts
|
|
275
|
+
|
|
276
|
+
- `atris activate` — load today's context (MAP, TASK_CONTEXTS, log)
|
|
277
|
+
- `atris visualize` — approval gate: 3-4 step summary + ASCII before creating tasks
|
|
278
|
+
- `atris plan` / `atris do` / `atris review` — rapid agent activation for navigator / executor / validator
|
|
279
|
+
- `atris autopilot` — guided plan → do → review loop with explicit success criteria and journaling
|
|
280
|
+
- `atris brainstorm` — generate a Claude-ready brainstorm prompt and optionally log the session summary + next steps
|
|
281
|
+
|
|
274
282
|
---
|
|
275
283
|
|
|
276
284
|
## Phase 6: Future Roadmap (Vision)
|