atris 2.0.6 → 2.0.7
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/README.md +3 -3
- package/atris/CLAUDE.md +26 -0
- package/atris/GEMINI.md +26 -0
- package/atris/GETTING_STARTED.md +1 -1
- package/atris/atris.md +75 -662
- package/atris/features/README.md +128 -0
- package/atris/features/_templates/build.md.template +124 -0
- package/atris/features/_templates/idea.md.template +78 -0
- package/atris/features/_templates/validate.md.template +38 -0
- package/atris/policies/ANTISLOP.md +90 -23
- package/atris/policies/atris-backend.md +60 -0
- package/atris/policies/atris-design.md +114 -0
- package/atris.md +75 -662
- package/bin/atris.js +154 -73
- package/commands/activate.js +60 -0
- package/commands/brainstorm.js +46 -16
- package/commands/init.js +58 -38
- package/commands/log.js +2 -3
- package/commands/workflow.js +355 -182
- package/lib/state-detection.js +168 -34
- package/package.json +19 -8
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# atris
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**atris** is a self improving context layer for your agent. Works with coding agents like Claude Code and Cursor.
|
|
4
4
|
|
|
5
5
|
## For Coding Agents
|
|
6
6
|
|
|
@@ -57,4 +57,4 @@ See [releases](https://github.com/atrislabs/atris.md/releases) for full changelo
|
|
|
57
57
|
|
|
58
58
|
---
|
|
59
59
|
|
|
60
|
-
**License:** MIT | **Repo:** [github.com/atrislabs/atris.md](https://github.com/atrislabs/atris.
|
|
60
|
+
**License:** MIT | **Repo:** [github.com/atrislabs/atris.md](https://github.com/atrislabs/atris.git)
|
package/atris/CLAUDE.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# CLAUDE.md — ATRIS Project Instructions
|
|
2
|
+
|
|
3
|
+
You are in an **ATRIS-managed project**.
|
|
4
|
+
|
|
5
|
+
## First
|
|
6
|
+
|
|
7
|
+
- Read `atris/PERSONA.md` (tone + operating rules).
|
|
8
|
+
- Run `atris activate` to load the current working context.
|
|
9
|
+
|
|
10
|
+
## Core Files
|
|
11
|
+
|
|
12
|
+
- `atris/MAP.md` — navigation (use file:line references)
|
|
13
|
+
- `atris/TODO.md` — current work queue (target state = 0)
|
|
14
|
+
- `atris/logs/YYYY/YYYY-MM-DD.md` — journal (Inbox + Completed)
|
|
15
|
+
- `atris/atris.md` — protocol/spec
|
|
16
|
+
|
|
17
|
+
## Default Loop
|
|
18
|
+
|
|
19
|
+
`atris plan` → `atris do` → `atris review`
|
|
20
|
+
|
|
21
|
+
## Rules (Non‑Negotiable)
|
|
22
|
+
|
|
23
|
+
- Plan = ASCII visualization + approval gate. Do not execute during planning.
|
|
24
|
+
- Execute step-by-step, verify as you go, update artifacts (`TODO.md`, `MAP.md`) when reality changes.
|
|
25
|
+
- Delete completed tasks (validator cleans to target state = 0).
|
|
26
|
+
|
package/atris/GEMINI.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# GEMINI.md — ATRIS Project Instructions
|
|
2
|
+
|
|
3
|
+
You are in an **ATRIS-managed project**.
|
|
4
|
+
|
|
5
|
+
## First
|
|
6
|
+
|
|
7
|
+
- Read `atris/PERSONA.md` (tone + operating rules).
|
|
8
|
+
- Run `atris activate` to load the current working context.
|
|
9
|
+
|
|
10
|
+
## Core Files
|
|
11
|
+
|
|
12
|
+
- `atris/MAP.md` — navigation (use file:line references)
|
|
13
|
+
- `atris/TODO.md` — current work queue (target state = 0)
|
|
14
|
+
- `atris/logs/YYYY/YYYY-MM-DD.md` — journal (Inbox + Completed)
|
|
15
|
+
- `atris/atris.md` — protocol/spec
|
|
16
|
+
|
|
17
|
+
## Default Loop
|
|
18
|
+
|
|
19
|
+
`atris plan` → `atris do` → `atris review`
|
|
20
|
+
|
|
21
|
+
## Rules
|
|
22
|
+
|
|
23
|
+
- Plan = ASCII visualization + approval gate. Do not execute during planning.
|
|
24
|
+
- Execute step-by-step, verify as you go, update artifacts (`TODO.md`, `MAP.md`) when reality changes.
|
|
25
|
+
- Delete completed tasks (validator cleans to target state = 0).
|
|
26
|
+
|
package/atris/GETTING_STARTED.md
CHANGED
|
@@ -43,7 +43,7 @@ The agent will:
|
|
|
43
43
|
4. Execute step by step
|
|
44
44
|
5. Review and update docs (2-pass validation)
|
|
45
45
|
|
|
46
|
-
Tip: Use `atris brainstorm` if you're exploring options. Use `atris plan` when ready to build.
|
|
46
|
+
💡 Tip: Use `atris brainstorm` if you're exploring options. Use `atris plan` when ready to build.
|
|
47
47
|
|
|
48
48
|
**Total time: Start building immediately**
|
|
49
49
|
|