atris 1.4.2 → 1.4.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.
Files changed (2) hide show
  1. package/atris.md +19 -1
  2. package/package.json +1 -1
package/atris.md CHANGED
@@ -45,6 +45,21 @@ This spec defines how to transform any system (codebase, product, sales process,
45
45
 
46
46
  6. **Output:** `/atris/MAP.md` (target: 300-500 lines for large systems; scale to project size)
47
47
 
48
+ 7. **After MAP.md generation:** Append lightweight project context to agent templates
49
+ - Add `## Project Context` section to each agent (navigator, executor, validator)
50
+ - Include: framework, 3-5 key directories, 3-5 search accelerators
51
+ - Keep it minimal (5-10 lines max per agent) - avoid bloat
52
+ - Format:
53
+ ```markdown
54
+ ---
55
+ ## Project Context (Auto-generated from MAP.md)
56
+ - **Framework:** Next.js 14
57
+ - **Key dirs:** app/, components/, lib/
58
+ - **Search patterns:**
59
+ - Components: `rg "export default" components/`
60
+ - API routes: `rg "export async function" app/api/`
61
+ ```
62
+
48
63
  ---
49
64
 
50
65
  ## Phase 2: Foundational Agent Templates
@@ -220,11 +235,14 @@ ATRIS ships with pre-built agent templates in `/atris/agent_team/` (copied durin
220
235
  - ⏳ `MAP.md` (AI agent generates from codebase)
221
236
  - ⏳ `TASK_CONTEXTS.md` (AI agent generates from MAP)
222
237
 
238
+ **Agent Enhancement:**
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.
240
+
223
241
  **Agent Behavior Activates Automatically:**
224
242
 
225
243
  | Trigger | Agent | Action |
226
244
  |---------|-------|--------|
227
- | "Where is X?" | navigator | Answers with MAP.md:line reference |
245
+ | "Where is X?" | navigator | Answers with MAP.md:line reference + project patterns |
228
246
  | "Do task Y" | executor | Extracts context, plans execution, cites file:line |
229
247
  | After change | validator | Checks validity, updates docs, blocks unsafe changes |
230
248
  | New agent joins | navigator | Reads MAP.md, immediately productive (no ramp-up) |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atris",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Universal system instrumentation for AI agents - works for code, product, sales, and more",
5
5
  "main": "bin/atris.js",
6
6
  "bin": {