agent-enderun 1.0.3 → 1.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.
package/gemini.md CHANGED
@@ -19,7 +19,7 @@ At the **start of every session**, before any work:
19
19
 
20
20
  ### 💾 Memory Tiers
21
21
  - **Project Memory (Shared):** `.enderun/PROJECT_MEMORY.md` is the source of truth for task history, Trace IDs, and architectural decisions. **Update this at the end of every turn.**
22
- - **Private Memory (User-Specific):** Use the system's temporary directory memory folder for personal workflows or user-specific notes that should not be committed to Git.
22
+ - **Private Memory (User-Specific):** Use the local `.gitignored` memory directory (e.g. `.enderun/memory/`) for personal workflows or user-specific notes that should not be committed to Git. Never use the system's `/tmp` directory.
23
23
  - **Project Instructions:** This `gemini.md` file contains the "Supreme Law" and coding standards.
24
24
 
25
25
  ### 🛡️ Core Mandates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -82,7 +82,7 @@
82
82
  "zod": "^3.24.2"
83
83
  },
84
84
  "enderun": {
85
- "version": "1.0.3",
85
+ "version": "1.0.4",
86
86
  "initializedAt": "2026-05-31T09:58:25.773Z"
87
87
  },
88
88
  "dependencies": {}
@@ -124,15 +124,17 @@ export function remapFrameworkContent(
124
124
  ): string {
125
125
  let result = content;
126
126
 
127
- // 1. Dynamic Agent Folder Mapping based on adapter
127
+ // 1. Dynamic Agent Folder Mapping based on adapter (Only remap if NOT in unified .enderun mode)
128
128
  let agentFolder = "agents";
129
129
  let knowledgeFolder = "knowledge";
130
130
 
131
- if (adapterId === "antigravity") {
132
- agentFolder = "skills";
133
- knowledgeFolder = "rules";
134
- } else if (adapterId === "grok") {
135
- agentFolder = "plugins";
131
+ if (frameworkDir !== ".enderun") {
132
+ if (adapterId === "antigravity") {
133
+ agentFolder = "skills";
134
+ knowledgeFolder = "rules";
135
+ } else if (adapterId === "grok") {
136
+ agentFolder = "plugins";
137
+ }
136
138
  }
137
139
 
138
140
  // 2. Replacements
@@ -9,6 +9,7 @@ export function updateGitIgnore(targetPath: string, frameworkDir = ".gemini", dr
9
9
  "# AI-Enderun",
10
10
  `${frameworkDir}/logs/*.json`,
11
11
  `${frameworkDir}/*.lock`,
12
+ `${frameworkDir}/memory/`,
12
13
  ".env",
13
14
  ".DS_Store",
14
15
  ];