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/.enderun/skills/multi_agent_coordination.md +1 -1
- package/.enderun/skills/subagent_lifecycle.md +1 -1
- package/README.md +6 -6
- package/docs/api-referans.md +1137 -0
- package/docs/is_akislari.md +902 -0
- package/docs/mimari.md +926 -0
- package/docs/moduller.md +294 -0
- package/docs/proje.md +521 -0
- package/docs/yap/304/261.md +2150 -0
- package/gemini.md +1 -1
- package/package.json +2 -2
- package/src/cli/adapters.ts +8 -6
- package/src/cli/utils/fs.ts +1 -0
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
|
|
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
|
+
"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.
|
|
85
|
+
"version": "1.0.4",
|
|
86
86
|
"initializedAt": "2026-05-31T09:58:25.773Z"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {}
|
package/src/cli/adapters.ts
CHANGED
|
@@ -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 (
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
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
|