atris 1.9.6 β 2.0.2
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 -7
- package/PERSONA.md +2 -2
- package/README.md +6 -7
- package/atris/GETTING_STARTED.md +37 -32
- package/atris/PERSONA.md +2 -2
- package/atris/agent_team/navigator.md +4 -4
- package/atris/agent_team/validator.md +1 -1
- package/atris/atris.md +84 -17
- package/atris.md +81 -14
- package/bin/atris.js +359 -2506
- package/commands/analytics.js +150 -0
- package/commands/brainstorm.js +1291 -0
- package/commands/init.js +33 -6
- package/commands/status.js +159 -0
- package/commands/sync.js +8 -0
- package/commands/visualize.js +74 -0
- package/commands/workflow.js +834 -0
- package/lib/journal.js +35 -0
- package/lib/state-detection.js +10 -6
- package/package.json +1 -1
package/GETTING_STARTED.md
CHANGED
|
@@ -35,12 +35,15 @@ In your coding agent (Claude Code, Cursor, Windsurf, etc.), just describe what y
|
|
|
35
35
|
"Refactor the auth system to use OAuth"
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
The agent will
|
|
38
|
+
The agent will:
|
|
39
|
+
0. (Optional) Explore with you conversationally (`atris brainstorm`)
|
|
39
40
|
1. Show you an **atris visualization** (diagram of the plan)
|
|
40
41
|
2. Wait for your approval
|
|
41
|
-
3. Create `
|
|
42
|
+
3. Create `atris/features/[name]/idea.md` + `build.md`
|
|
42
43
|
4. Execute step by step
|
|
43
|
-
5. Review and update docs
|
|
44
|
+
5. Review and update docs (2-pass validation)
|
|
45
|
+
|
|
46
|
+
π‘ Tip: Use `atris brainstorm` if you're exploring options. Use `atris plan` when ready to build.
|
|
44
47
|
|
|
45
48
|
**Total time: Start building immediately**
|
|
46
49
|
|
|
@@ -54,7 +57,7 @@ You can also run:
|
|
|
54
57
|
atris activate
|
|
55
58
|
```
|
|
56
59
|
|
|
57
|
-
This shows today's journal, MAP.md, and
|
|
60
|
+
This shows today's journal, MAP.md, and TODO.md so you can browse and take notes offline. Authentication and agent selection are only required when you want to use `atris chat` with Atris cloud agents.
|
|
58
61
|
|
|
59
62
|
## Try the autopilot loop (optional)
|
|
60
63
|
|
|
@@ -111,7 +114,7 @@ Your quality gatekeeper. Runs after changes to:
|
|
|
111
114
|
- Run tests and type checks
|
|
112
115
|
- Report risks
|
|
113
116
|
|
|
114
|
-
###
|
|
117
|
+
### TODO.md
|
|
115
118
|
Auto-generated task bank with:
|
|
116
119
|
- Task complexity (Trivial β Epic)
|
|
117
120
|
- Exact file:line references
|
|
@@ -132,7 +135,7 @@ Once the files are populated, you can interact with your agents:
|
|
|
132
135
|
|
|
133
136
|
**Give tasks to the executor:**
|
|
134
137
|
```
|
|
135
|
-
@executor add rate limiting to the API (see
|
|
138
|
+
@executor add rate limiting to the API (see TODO.md T-005)
|
|
136
139
|
```
|
|
137
140
|
|
|
138
141
|
**Validate changes:**
|
|
@@ -156,7 +159,7 @@ This syncs your local `atris.md` and agent templates to the latest version. Re-r
|
|
|
156
159
|
1. **Let your AI agent generate MAP.md** (Step 2 above if you haven't already)
|
|
157
160
|
2. **Explore MAP.md** - Get familiar with your system's structure
|
|
158
161
|
3. **Try the pre-built agents** - Ask navigator questions, run executor tasks
|
|
159
|
-
4. **Pick a task** - Check
|
|
162
|
+
4. **Pick a task** - Check TODO.md for quick wins
|
|
160
163
|
|
|
161
164
|
## Need Help?
|
|
162
165
|
|
package/PERSONA.md
CHANGED
|
@@ -60,7 +60,7 @@ Delete when done. Clean workspace = clear mind.
|
|
|
60
60
|
|
|
61
61
|
## Collaboration
|
|
62
62
|
|
|
63
|
-
**Trust the system.** MAP.md is truth.
|
|
63
|
+
**Trust the system.** MAP.md is truth. TODO.md is current work (formerly `TODO.md`).
|
|
64
64
|
|
|
65
65
|
Navigator finds, executor builds, validator verifies. Stay in your lane.
|
|
66
66
|
|
|
@@ -86,7 +86,7 @@ Mistakes are fine if you learn and fix quickly.
|
|
|
86
86
|
|
|
87
87
|
β Make assumptions without checking MAP.md
|
|
88
88
|
|
|
89
|
-
β Leave TODOs scattered in code (put them in
|
|
89
|
+
β Leave TODOs scattered in code (put them in TODO.md)
|
|
90
90
|
|
|
91
91
|
β Overthink simple problems
|
|
92
92
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# atrisDev
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A better way to build with your coding agents.
|
|
4
4
|
|
|
5
5
|
## For Coding Agents
|
|
6
6
|
|
|
@@ -30,11 +30,14 @@ atris # Loads context, ready to build
|
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Then describe what you want to build. The agent will:
|
|
33
|
+
0. (Optional) Explore with `atris brainstorm` if uncertain
|
|
33
34
|
1. Show you a visualization
|
|
34
35
|
2. Wait for approval
|
|
35
|
-
3. Create `
|
|
36
|
+
3. Create `atris/features/[name]/idea.md` + `build.md`
|
|
36
37
|
4. Execute step by step
|
|
37
|
-
5. Review and update docs
|
|
38
|
+
5. Review and update docs (2-pass)
|
|
39
|
+
|
|
40
|
+
Commands: `brainstorm` (optional) β `plan` β `do` β `review`
|
|
38
41
|
|
|
39
42
|
Works with: Claude Code, Cursor, Windsurf, GitHub Copilot, any agent.
|
|
40
43
|
|
|
@@ -49,10 +52,6 @@ atris update
|
|
|
49
52
|
|
|
50
53
|
## Latest Updates
|
|
51
54
|
|
|
52
|
-
**v1.9.0** - Natural language interface. Just say what you want:
|
|
53
|
-
- `atris` - Load context
|
|
54
|
-
- `atris build dark mode` - Start building
|
|
55
|
-
- `atris fix the auth bug` - Start debugging
|
|
56
55
|
|
|
57
56
|
See [releases](https://github.com/atrislabs/atris.md/releases) for full changelog.
|
|
58
57
|
|
package/atris/GETTING_STARTED.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Getting Started with
|
|
1
|
+
# Getting Started with atrisDev
|
|
2
2
|
|
|
3
|
-
Welcome!
|
|
3
|
+
Welcome! atrisDev gives you a high-quality AI development workflow that works with any coding agent.
|
|
4
4
|
|
|
5
5
|
## What Just Happened?
|
|
6
6
|
|
|
@@ -9,50 +9,55 @@ You ran `atris init` and got this folder structure:
|
|
|
9
9
|
```
|
|
10
10
|
atris/
|
|
11
11
|
βββ GETTING_STARTED.md (you are here!)
|
|
12
|
-
βββ
|
|
13
|
-
βββ
|
|
14
|
-
βββ MAP.md (
|
|
15
|
-
|
|
16
|
-
βββ agent_team/
|
|
17
|
-
βββ navigator.md (pre-built template, ready to use)
|
|
18
|
-
βββ executor.md (pre-built template, ready to use)
|
|
19
|
-
βββ validator.md (pre-built template, ready to use)
|
|
12
|
+
βββ atris.md (atrisDev protocol + specs)
|
|
13
|
+
βββ CLAUDE.md (tells agents to follow atrisDev)
|
|
14
|
+
βββ MAP.md (navigation - AI will generate)
|
|
15
|
+
βββ agent_team/ (agent specs)
|
|
20
16
|
```
|
|
21
17
|
|
|
22
|
-
## Quick Start (
|
|
18
|
+
## Quick Start (2 Steps)
|
|
23
19
|
|
|
24
|
-
### Step 1:
|
|
25
|
-
Open `atris/atris.md` in your editor. This file contains detailed instructions for your AI agent.
|
|
20
|
+
### Step 1: Run atris
|
|
26
21
|
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
```bash
|
|
23
|
+
atris
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
This loads your workspace context and activates the atrisDev protocol.
|
|
27
|
+
|
|
28
|
+
### Step 2: Describe what you want
|
|
29
|
+
|
|
30
|
+
In your coding agent (Claude Code, Cursor, Windsurf, etc.), just describe what you want to build:
|
|
29
31
|
|
|
30
32
|
```
|
|
31
|
-
|
|
33
|
+
"I want to add dark mode to the settings page"
|
|
34
|
+
"Build a CSV export feature for the dashboard"
|
|
35
|
+
"Refactor the auth system to use OAuth"
|
|
32
36
|
```
|
|
33
37
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
The agent will:
|
|
39
|
+
0. (Optional) Explore with you conversationally (`atris brainstorm`)
|
|
40
|
+
1. Show you an **atris visualization** (diagram of the plan)
|
|
41
|
+
2. Wait for your approval
|
|
42
|
+
3. Create `atris/features/[name]/idea.md` + `build.md`
|
|
43
|
+
4. Execute step by step
|
|
44
|
+
5. Review and update docs (2-pass validation)
|
|
45
|
+
|
|
46
|
+
π‘ Tip: Use `atris brainstorm` if you're exploring options. Use `atris plan` when ready to build.
|
|
39
47
|
|
|
40
|
-
**
|
|
41
|
-
- **navigator.md** - Answers "where is X?" questions
|
|
42
|
-
- **executor.md** - Executes tasks with full context
|
|
43
|
-
- **validator.md** - Validates changes and updates docs
|
|
48
|
+
**Total time: Start building immediately**
|
|
44
49
|
|
|
45
|
-
|
|
50
|
+
## The atrisDev Protocol
|
|
46
51
|
|
|
47
|
-
|
|
52
|
+
When agents see `atris/CLAUDE.md`, they automatically follow the atrisDev workflow. No manual setup needed.
|
|
48
53
|
|
|
49
|
-
|
|
54
|
+
You can also run:
|
|
50
55
|
|
|
51
56
|
```bash
|
|
52
57
|
atris activate
|
|
53
58
|
```
|
|
54
59
|
|
|
55
|
-
This shows today's journal, MAP.md, and
|
|
60
|
+
This shows today's journal, MAP.md, and TODO.md so you can browse and take notes offline. Authentication and agent selection are only required when you want to use `atris chat` with Atris cloud agents.
|
|
56
61
|
|
|
57
62
|
## Try the autopilot loop (optional)
|
|
58
63
|
|
|
@@ -109,7 +114,7 @@ Your quality gatekeeper. Runs after changes to:
|
|
|
109
114
|
- Run tests and type checks
|
|
110
115
|
- Report risks
|
|
111
116
|
|
|
112
|
-
###
|
|
117
|
+
### TODO.md
|
|
113
118
|
Auto-generated task bank with:
|
|
114
119
|
- Task complexity (Trivial β Epic)
|
|
115
120
|
- Exact file:line references
|
|
@@ -130,7 +135,7 @@ Once the files are populated, you can interact with your agents:
|
|
|
130
135
|
|
|
131
136
|
**Give tasks to the executor:**
|
|
132
137
|
```
|
|
133
|
-
@executor add rate limiting to the API (see
|
|
138
|
+
@executor add rate limiting to the API (see TODO.md T-005)
|
|
134
139
|
```
|
|
135
140
|
|
|
136
141
|
**Validate changes:**
|
|
@@ -154,7 +159,7 @@ This syncs your local `atris.md` and agent templates to the latest version. Re-r
|
|
|
154
159
|
1. **Let your AI agent generate MAP.md** (Step 2 above if you haven't already)
|
|
155
160
|
2. **Explore MAP.md** - Get familiar with your system's structure
|
|
156
161
|
3. **Try the pre-built agents** - Ask navigator questions, run executor tasks
|
|
157
|
-
4. **Pick a task** - Check
|
|
162
|
+
4. **Pick a task** - Check TODO.md for quick wins
|
|
158
163
|
|
|
159
164
|
## Need Help?
|
|
160
165
|
|
package/atris/PERSONA.md
CHANGED
|
@@ -60,7 +60,7 @@ Delete when done. Clean workspace = clear mind.
|
|
|
60
60
|
|
|
61
61
|
## Collaboration
|
|
62
62
|
|
|
63
|
-
**Trust the system.** MAP.md is truth.
|
|
63
|
+
**Trust the system.** MAP.md is truth. TODO.md is current work (formerly `TODO.md`).
|
|
64
64
|
|
|
65
65
|
Navigator finds, executor builds, validator verifies. Stay in your lane.
|
|
66
66
|
|
|
@@ -86,7 +86,7 @@ Mistakes are fine if you learn and fix quickly.
|
|
|
86
86
|
|
|
87
87
|
β Make assumptions without checking MAP.md
|
|
88
88
|
|
|
89
|
-
β Leave TODOs scattered in code (put them in
|
|
89
|
+
β Leave TODOs scattered in code (put them in TODO.md)
|
|
90
90
|
|
|
91
91
|
β Overthink simple problems
|
|
92
92
|
|
|
@@ -11,8 +11,8 @@ When the human gives you an idea (messy, conversational, exploratory):
|
|
|
11
11
|
1. **Extract intent** β What are they trying to build? Why?
|
|
12
12
|
2. **Generate atris visualization** β Show them exactly what will happen (frontend boxes / backend flow / database tables)
|
|
13
13
|
3. **Confirm** β "Is THIS what you meant?" (y/n)
|
|
14
|
-
4. **Create idea.md** β Save their messy intent to `
|
|
15
|
-
5. **Generate build.md** β Create technical spec in `
|
|
14
|
+
4. **Create idea.md** β Save their messy intent to `atris/features/[name]/idea.md`
|
|
15
|
+
5. **Generate build.md** β Create technical spec in `atris/features/[name]/build.md`
|
|
16
16
|
|
|
17
17
|
**DO NOT execute.** You plan. Executor builds.
|
|
18
18
|
|
|
@@ -93,7 +93,7 @@ tests:
|
|
|
93
93
|
|
|
94
94
|
## Rules
|
|
95
95
|
|
|
96
|
-
1. **Check
|
|
96
|
+
1. **Check atris/features/README.md first** β See what features exist, avoid duplication
|
|
97
97
|
2. **Check MAP.md** β Find exact file:line references for code
|
|
98
98
|
3. **Visualization before build.md** β Human confirms visual before technical spec
|
|
99
99
|
4. **Be precise** β Exact files, exact lines, exact changes
|
|
@@ -101,7 +101,7 @@ tests:
|
|
|
101
101
|
6. **Free-flow works** β Even exploratory conversations go through this flow
|
|
102
102
|
|
|
103
103
|
**Before creating new feature:**
|
|
104
|
-
- Read
|
|
104
|
+
- Read atris/features/README.md
|
|
105
105
|
- Search keywords for similar features
|
|
106
106
|
- If exists: extend it, don't duplicate
|
|
107
107
|
- Show visualization: "Builds on X, new file Y"
|
|
@@ -78,7 +78,7 @@ Before approving, think 3 times:
|
|
|
78
78
|
|
|
79
79
|
1. **Always run tests** β Never approve without green tests
|
|
80
80
|
2. **Update MAP.md** β If files moved or architecture changed
|
|
81
|
-
3. **Update
|
|
81
|
+
3. **Update atris/features/README.md** β Add new feature entry with summary, files, keywords
|
|
82
82
|
4. **Check build.md** β Execution must match the spec exactly
|
|
83
83
|
5. **Block if broken** β Better to stop than ship bugs
|
|
84
84
|
6. **3-4 sentences** β Keep feedback tight, clear, actionable
|
package/atris/atris.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **Drop this markdown file anywhere. Scaffold and operate an AI agent team.**
|
|
4
4
|
|
|
5
|
-
This spec defines how to transform any system (codebase, product, sales process, research) into a self-documenting, AI-navigable workspace. Standard structure: `atris/` folder with MAP.md, agent_team/, and
|
|
5
|
+
This spec defines how to transform any system (codebase, product, sales process, research) into a self-documenting, AI-navigable workspace. Standard structure: `atris/` folder with MAP.md, agent_team/, and TODO.md.
|
|
6
6
|
|
|
7
7
|
**Workflow:** Daily logs β Navigator plans β Executor builds β Validator reviews.
|
|
8
8
|
|
|
@@ -36,7 +36,7 @@ This spec defines how to transform any system (codebase, product, sales process,
|
|
|
36
36
|
|
|
37
37
|
4. **DO NOT include this:**
|
|
38
38
|
- COMPLEX Architecture Flows unless specified (keep it simple to understand)
|
|
39
|
-
- TODOs/Improvements (those go in
|
|
39
|
+
- TODOs/Improvements (those go in TODO.md)
|
|
40
40
|
- Project stats (unnecessary metadata)
|
|
41
41
|
|
|
42
42
|
5. **Quality Checklist Before Outputting:**
|
|
@@ -116,7 +116,7 @@ ATRIS ships with pre-built agent templates in `/atris/agent_team/` (copied durin
|
|
|
116
116
|
- Ignore type errors or test failures
|
|
117
117
|
```
|
|
118
118
|
|
|
119
|
-
- **Knowledge Base:** MAP.md,
|
|
119
|
+
- **Knowledge Base:** MAP.md, TODO.md (generated), test suite, type definitions
|
|
120
120
|
- **Success Metric:** Tasks completed 95% first-try with zero regressions
|
|
121
121
|
|
|
122
122
|
### Agent 3: **validator.md** (in `/atris/agent_team/`)
|
|
@@ -146,7 +146,7 @@ ATRIS ships with pre-built agent templates in `/atris/agent_team/` (copied durin
|
|
|
146
146
|
|
|
147
147
|
---
|
|
148
148
|
|
|
149
|
-
## Phase 3: Task Context System (
|
|
149
|
+
## Phase 3: Task Context System (TODO.md in `/atris/`, formerly `TODO.md`)
|
|
150
150
|
|
|
151
151
|
**Goal:** Automatic task extraction with exact file/component context, so agents never guess.
|
|
152
152
|
|
|
@@ -216,9 +216,9 @@ ATRIS ships with pre-built agent templates in `/atris/agent_team/` (copied durin
|
|
|
216
216
|
- Include both quick wins (low-risk) and strategic work (high-impact)
|
|
217
217
|
- Map all dependencies explicitly
|
|
218
218
|
|
|
219
|
-
3. Output: `/atris/
|
|
219
|
+
3. Output: `/atris/TODO.md` (maintains and evolves as system changes)
|
|
220
220
|
|
|
221
|
-
4. On each MAP.md update, regenerate
|
|
221
|
+
4. On each MAP.md update, regenerate TODO.md to reflect new state
|
|
222
222
|
|
|
223
223
|
---
|
|
224
224
|
|
|
@@ -233,7 +233,7 @@ ATRIS ships with pre-built agent templates in `/atris/agent_team/` (copied durin
|
|
|
233
233
|
- β
`agent_team/executor.md` (pre-built template)
|
|
234
234
|
- β
`agent_team/validator.md` (pre-built template)
|
|
235
235
|
- β³ `MAP.md` (AI agent generates from codebase)
|
|
236
|
-
- β³ `
|
|
236
|
+
- β³ `TODO.md` (AI agent generates from MAP)
|
|
237
237
|
|
|
238
238
|
**Agent Enhancement:**
|
|
239
239
|
After MAP.md generation, agents receive project context injection (framework, key dirs, search patterns). This keeps base templates clean while adding project-specific accelerators.
|
|
@@ -263,7 +263,7 @@ After MAP.md generation, agents receive project context injection (framework, ke
|
|
|
263
263
|
|
|
264
264
|
1. **Brain Dump** β Run `atris log`, type thoughts into `## Inbox` section (unfiltered, no structure required)
|
|
265
265
|
|
|
266
|
-
2. **Navigator Reviews** β Processes inbox entries, identifies patterns, creates tasks in
|
|
266
|
+
2. **Navigator Reviews** β Processes inbox entries, identifies patterns, creates tasks in TODO.md with MAP.md context
|
|
267
267
|
|
|
268
268
|
3. **Executor Builds** β Takes task β ASCII visualization β get approval β build step-by-step β validate alignment
|
|
269
269
|
|
|
@@ -468,7 +468,7 @@ Enhanced sync logic with auto-pull and conflict resolution.
|
|
|
468
468
|
|
|
469
469
|
## Phase 5.2: atrisDev Protocol (Universal Workflow)
|
|
470
470
|
|
|
471
|
-
**The atrisDev Protocol** is a universal workflow that any coding agent can follow to produce high-quality output. When agents follow this protocol, they build features systematically with human approval gates and proper documentation.
|
|
471
|
+
**The atrisDev Protocol** is a universal workflow that any coding agent can follow to produce high-quality output. When agents follow this protocol, they build features systematically with human approval gates and proper documentation, using small, low-risk changes that compound over time.
|
|
472
472
|
|
|
473
473
|
**This protocol works with ANY agent:** Claude Code, Cursor, Windsurf, GitHub Copilot, or any LLM-based coding assistant.
|
|
474
474
|
|
|
@@ -496,6 +496,14 @@ The agent executes this workflow:
|
|
|
496
496
|
|
|
497
497
|
### atrisDev Workflow Steps
|
|
498
498
|
|
|
499
|
+
**0. (Optional) Explore the Idea**
|
|
500
|
+
|
|
501
|
+
If requirements are unclear, use `atris brainstorm` (or a structured conversation) to explore the problem and possible approaches *before* committing to any plan:
|
|
502
|
+
|
|
503
|
+
- Clarify the problem, constraints, and βwhat good looks likeβ.
|
|
504
|
+
- Decide whether this should become a feature folder (`atris/features/[name]/`) or a small, direct TODO.
|
|
505
|
+
- Capture the refined idea into `atris/features/[name]/idea.md` once it is clear enough.
|
|
506
|
+
|
|
499
507
|
**1. Show atris Visualization**
|
|
500
508
|
|
|
501
509
|
Before writing any code, the agent creates a visual diagram showing:
|
|
@@ -529,7 +537,7 @@ Agent **MUST NOT** proceed until the human confirms the plan is correct.
|
|
|
529
537
|
|
|
530
538
|
**3. Create idea.md**
|
|
531
539
|
|
|
532
|
-
Path: `
|
|
540
|
+
Path: `atris/features/[feature-name]/idea.md`
|
|
533
541
|
|
|
534
542
|
Contents:
|
|
535
543
|
- **Problem Statement** β What are we solving?
|
|
@@ -539,7 +547,7 @@ Contents:
|
|
|
539
547
|
|
|
540
548
|
**4. Create build.md**
|
|
541
549
|
|
|
542
|
-
Path: `
|
|
550
|
+
Path: `atris/features/[feature-name]/build.md`
|
|
543
551
|
|
|
544
552
|
Contents:
|
|
545
553
|
- **Step-by-step Implementation Plan** β Ordered list of tasks
|
|
@@ -557,7 +565,7 @@ Contents:
|
|
|
557
565
|
|
|
558
566
|
- Run all tests
|
|
559
567
|
- Verify success criteria from idea.md
|
|
560
|
-
- Update `
|
|
568
|
+
- Update `atris/features/README.md` with new feature entry
|
|
561
569
|
- Add completion to journal: `## Completed β
`
|
|
562
570
|
|
|
563
571
|
---
|
|
@@ -584,6 +592,65 @@ Contents:
|
|
|
584
592
|
|
|
585
593
|
---
|
|
586
594
|
|
|
595
|
+
## Phase 5.3: Claude Code Integration
|
|
596
|
+
|
|
597
|
+
Auto-inject ATRIS context into Claude Code sessions via skills and commands.
|
|
598
|
+
|
|
599
|
+
### Slash Command Setup
|
|
600
|
+
|
|
601
|
+
Create `.claude/commands/atris.md`:
|
|
602
|
+
|
|
603
|
+
```markdown
|
|
604
|
+
---
|
|
605
|
+
description: Activate ATRIS context - loads TODO.md, journal, and persona
|
|
606
|
+
allowed-tools: Read, Bash, Glob, Grep
|
|
607
|
+
---
|
|
608
|
+
|
|
609
|
+
# ATRIS Activate
|
|
610
|
+
|
|
611
|
+
Load these files:
|
|
612
|
+
1. @atris/PERSONA.md (communication style)
|
|
613
|
+
2. @atris/TODO.md (current tasks)
|
|
614
|
+
3. @atris/MAP.md (navigation)
|
|
615
|
+
|
|
616
|
+
Workflow: plan β do β review
|
|
617
|
+
Rules: 3-4 sentences max, ASCII visuals, check MAP.md first
|
|
618
|
+
```
|
|
619
|
+
|
|
620
|
+
### Skill Setup
|
|
621
|
+
|
|
622
|
+
Create `.claude/skills/atris/SKILL.md`:
|
|
623
|
+
|
|
624
|
+
```markdown
|
|
625
|
+
---
|
|
626
|
+
name: atris
|
|
627
|
+
description: ATRIS workspace navigation. Use when user mentions atris, TODO, tasks, MAP.md, or asks "where is X?"
|
|
628
|
+
allowed-tools: Read, Bash, Glob, Grep, Write, Edit
|
|
629
|
+
---
|
|
630
|
+
|
|
631
|
+
# ATRIS Skill
|
|
632
|
+
|
|
633
|
+
Detect: Project has `atris/` folder with MAP.md, TODO.md, PERSONA.md
|
|
634
|
+
|
|
635
|
+
Workflow: Navigator (plan) β Executor (build) β Validator (verify)
|
|
636
|
+
|
|
637
|
+
Key behaviors:
|
|
638
|
+
- Read PERSONA.md first (3-4 sentences, ASCII visuals)
|
|
639
|
+
- Check MAP.md for file:line refs
|
|
640
|
+
- Update TODO.md (claim tasks, delete when done)
|
|
641
|
+
```
|
|
642
|
+
|
|
643
|
+
### Checklist
|
|
644
|
+
|
|
645
|
+
- [ ] Create `.claude/commands/` directory
|
|
646
|
+
- [ ] Create `.claude/skills/atris/` directory
|
|
647
|
+
- [ ] Add `atris.md` command file
|
|
648
|
+
- [ ] Add `SKILL.md` skill file
|
|
649
|
+
- [ ] Test with `/atris` in Claude Code
|
|
650
|
+
- [ ] Verify skill triggers on "atris" or "tasks" mentions
|
|
651
|
+
|
|
652
|
+
---
|
|
653
|
+
|
|
587
654
|
## Phase 6: Future Roadmap (Vision)
|
|
588
655
|
|
|
589
656
|
**See [`ATRIS_NOTES.md`](./ATRIS_NOTES.md) for full roadmap. Preview:**
|
|
@@ -610,9 +677,9 @@ Contents:
|
|
|
610
677
|
- [ ] **Install:** `npm install -g atris` (instant)
|
|
611
678
|
- [ ] **Init:** `atris init` - creates atris/ with templates (instant)
|
|
612
679
|
- [ ] **Phase 1:** AI agent generates MAP.md from codebase (5 min)
|
|
613
|
-
- [ ] **Phase 3:** AI agent generates
|
|
680
|
+
- [ ] **Phase 3:** AI agent generates TODO.md from MAP (2 min)
|
|
614
681
|
- [ ] **Validate:** Test navigator/executor/validator workflows (1 min)
|
|
615
|
-
- [ ] **Ongoing:** Run `atris
|
|
682
|
+
- [ ] **Ongoing:** Run `atris update` to get template updates
|
|
616
683
|
|
|
617
684
|
**Total time to full instrumentation: ~8 minutes**
|
|
618
685
|
|
|
@@ -631,11 +698,11 @@ atris init
|
|
|
631
698
|
# Hand atris/atris.md to your AI agent with this prompt:
|
|
632
699
|
# "Read atris/atris.md. Execute Phase 1-4 to scaffold this system."
|
|
633
700
|
|
|
634
|
-
# Agent generates MAP.md, agent_team/, and
|
|
701
|
+
# Agent generates MAP.md, agent_team/, and TODO.md in atris/
|
|
635
702
|
# Your system is now fully instrumented for AI collaboration
|
|
636
703
|
|
|
637
704
|
# Keep atris.md updated
|
|
638
|
-
atris
|
|
705
|
+
atris update
|
|
639
706
|
```
|
|
640
707
|
|
|
641
708
|
---
|
|
@@ -643,7 +710,7 @@ atris sync
|
|
|
643
710
|
**Status:** Production ready. Run `atris init` in any project to get:
|
|
644
711
|
1. Pre-built agent templates (navigator, executor, validator)
|
|
645
712
|
2. AI generates MAP.md from your codebase in <5 minutes
|
|
646
|
-
3. AI generates
|
|
713
|
+
3. AI generates TODO.md with exact file:line context
|
|
647
714
|
4. Full workflow: activate β plan β build β validate
|
|
648
715
|
|
|
649
716
|
*Install once. Init anywhere. AI agents have instant context. Codebase becomes fully instrumented for AI collaboration.*
|