atris 2.0.3 → 2.0.4

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.
@@ -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
 
@@ -71,6 +71,7 @@ Feature complete. Ready for review? (y/n)
71
71
  3. **Check MAP.md** — Verify file paths exist, update if structure changed
72
72
  4. **Run tests after changes** — Catch issues immediately
73
73
  5. **No shortcuts** — Follow the build.md steps exactly
74
+ 6. **Anti-slop aware** — Read `atris/policies/ANTISLOP.md` before writing. No sparkles, no filler, no purple prose.
74
75
 
75
76
  ---
76
77
 
@@ -26,12 +26,15 @@ After executor finishes:
26
26
  ├─────────────────────────────────────┤
27
27
  │ ✓ Matches build.md spec │
28
28
  │ ✓ All tests pass │
29
- │ ✓ No breaking changes
29
+ │ ✓ No breaking changes
30
30
  │ ✓ MAP.md updated (if needed) │
31
31
  │ ✓ Error handling present │
32
+ │ ✓ Anti-slop check (see below) │
32
33
  └─────────────────────────────────────┘
33
34
  ```
34
35
 
36
+ **Anti-slop gate:** Run `atris/policies/ANTISLOP.md` checklist on all output. Block if violations.
37
+
35
38
  **Final ASCII:**
36
39
  ```
37
40
  ┌─────────────────────────────────────┐
package/atris/atris.md CHANGED
@@ -434,7 +434,7 @@ After MAP.md generation, agents receive project context injection (framework, ke
434
434
  - **C1:** Fixed bidirectional journal sync
435
435
  - Problem: Web edits didn't sync to CLI
436
436
  - Solution: Added auto-pull when web is newer + local unchanged
437
- - Impact: Users can edit on web (mobile) and sync seamlessly
437
+ - Impact: Users can edit on web (mobile) and changes sync automatically
438
438
 
439
439
  ## In Progress 🔄
440
440
 
@@ -0,0 +1,66 @@
1
+ # ANTISLOP.md — Output Quality Checklist
2
+
3
+ > **Used by:** Validator (review gate), Executor (awareness before writing)
4
+
5
+ ---
6
+
7
+ ## The Checklist
8
+
9
+ Before shipping any output, verify:
10
+
11
+ ### Language
12
+ - [ ] No sparkles or decorative emoji (✨ 🚀 💡 🎯)
13
+ - [ ] No em dashes (—) unless direct quote or title separator
14
+ - [ ] No ellipsis for drama (...)
15
+ - [ ] No exclamation points unless error/warning
16
+
17
+ ### Words to Kill
18
+ - [ ] No "revolutionary" / "game-changing" / "cutting-edge"
19
+ - [ ] No "seamlessly" / "effortlessly" / "elegantly"
20
+ - [ ] No "robust" / "powerful" / "comprehensive"
21
+ - [ ] No "leverage" (use "use")
22
+ - [ ] No "utilize" (use "use")
23
+ - [ ] No "facilitate" (use "help" or "enable")
24
+
25
+ ### Filler Phrases to Cut
26
+ - [ ] No "It's worth noting that..."
27
+ - [ ] No "Importantly, ..."
28
+ - [ ] No "Interestingly, ..."
29
+ - [ ] No "As you can see..."
30
+ - [ ] No "In order to..." (just "to")
31
+ - [ ] No "Basically, ..." / "Essentially, ..."
32
+ - [ ] No "At the end of the day..."
33
+
34
+ ### Structure
35
+ - [ ] Max 3-4 sentences per response (unless code/data)
36
+ - [ ] No unnecessary headers in short responses
37
+ - [ ] No bullet points when a sentence works
38
+ - [ ] No "Here's what I found:" preambles - just show it
39
+
40
+ ### Tone
41
+ - [ ] Direct, not performative
42
+ - [ ] Statements, not hedging ("This might be..." → "This is...")
43
+ - [ ] No apologetic openings ("I apologize for...")
44
+ - [ ] No sycophantic praise ("Great question!")
45
+
46
+ ---
47
+
48
+ ## How to Use
49
+
50
+ **Validator:** Run through checklist during review. Block if violations found.
51
+
52
+ **Executor:** Read before writing. Internalize. Produce clean output first time.
53
+
54
+ ---
55
+
56
+ ## Examples
57
+
58
+ **Slop:**
59
+ > ✨ Great question! It's worth noting that this revolutionary approach seamlessly leverages our robust API to effortlessly facilitate user authentication. Essentially, at the end of the day, this is a game-changing solution!
60
+
61
+ **Clean:**
62
+ > Auth happens in `middleware/auth.ts:15-30`. Token validation, then user lookup. Returns 401 on failure.
63
+
64
+ ---
65
+
66
+ **Anti-slop = Respect for the reader's time.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atris",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "atrisDev - A new way to build and manage agents",
5
5
  "main": "bin/atris.js",
6
6
  "bin": {
@@ -15,7 +15,8 @@
15
15
  "atris.md",
16
16
  "GETTING_STARTED.md",
17
17
  "PERSONA.md",
18
- "atris/agent_team/"
18
+ "atris/agent_team/",
19
+ "atris/policies/"
19
20
  ],
20
21
  "scripts": {
21
22
  "test": "echo \"Error: no test specified\" && exit 1"