agent-enderun 0.1.9 → 0.2.0
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/BRAIN_DASHBOARD.md +43 -0
- package/.enderun/ENDERUN.md +203 -0
- package/.enderun/PROJECT_MEMORY.md +137 -36
- package/.enderun/agents/analyst.md +21 -10
- package/.enderun/agents/backend.md +12 -11
- package/.enderun/agents/explorer.md +10 -7
- package/.enderun/agents/frontend.md +9 -20
- package/.enderun/agents/git.md +16 -12
- package/.enderun/agents/manager.md +14 -15
- package/.enderun/agents/mobile.md +5 -5
- package/.enderun/agents/native.md +5 -5
- package/.enderun/benchmarks/.gitkeep +0 -0
- package/.enderun/cli-commands.json +13 -1
- package/.enderun/config.json +1 -1
- package/.enderun/docs/api/README.md +10 -9
- package/.enderun/docs/api/auth.md +11 -0
- package/.enderun/docs/api/errors.md +7 -0
- package/.enderun/docs/error-handling.md +12 -0
- package/.enderun/docs/privacy.md +3 -0
- package/.enderun/docs/security.md +12 -0
- package/.enderun/docs/tech-stack.md +1 -0
- package/.enderun/docs/troubleshooting.md +7 -0
- package/.enderun/knowledge/api_design_rules.md +6 -0
- package/.enderun/knowledge/async_error_handling.md +18 -0
- package/.enderun/knowledge/branded_types_pattern.md +1 -0
- package/.enderun/knowledge/code_review_checklist.md +7 -0
- package/.enderun/knowledge/contract_versioning.md +7 -0
- package/.enderun/knowledge/database_migration.md +6 -0
- package/.enderun/knowledge/deployment_checklist.md +7 -0
- package/.enderun/knowledge/git_commit_strategy.md +10 -0
- package/.enderun/knowledge/legacy_onboarding.md +7 -0
- package/.enderun/knowledge/monitoring_setup.md +5 -0
- package/.enderun/knowledge/performance_guidelines.md +11 -0
- package/.enderun/knowledge/repository_patterns.md +9 -0
- package/.enderun/knowledge/security_scanning.md +6 -0
- package/.enderun/knowledge/testing_standards.md +7 -0
- package/.enderun/knowledge/troubleshooting_guide.md +5 -0
- package/.enderun/knowledge/zero_ui_library_policy.md +1 -0
- package/.enderun/logs/analyst.json +1 -0
- package/.enderun/logs/backend.json +1 -0
- package/.enderun/logs/explorer.json +1 -0
- package/.enderun/logs/frontend.json +1 -0
- package/.enderun/logs/git.json +1 -0
- package/.enderun/logs/manager.json +363 -0
- package/.enderun/logs/mobile.json +1 -0
- package/.enderun/logs/native.json +1 -0
- package/.enderun/monitoring/.gitkeep +0 -0
- package/ENDERUN.md +8 -8
- package/LICENSE +21 -0
- package/README.md +595 -195
- package/bin/cli.js +306 -79
- package/package.json +35 -2
- package/packages/framework-mcp/README.md +47 -81
- package/packages/framework-mcp/dist/index.js +13 -971
- package/packages/framework-mcp/dist/schemas.js +84 -0
- package/packages/framework-mcp/dist/tools/academy.js +184 -0
- package/packages/framework-mcp/dist/tools/codebase.js +294 -0
- package/packages/framework-mcp/dist/tools/contract.js +95 -0
- package/packages/framework-mcp/dist/tools/database.js +52 -0
- package/packages/framework-mcp/dist/tools/framework.js +161 -0
- package/packages/framework-mcp/dist/tools/git.js +53 -0
- package/packages/framework-mcp/dist/tools/index.js +42 -0
- package/packages/framework-mcp/dist/tools/knowledge.js +69 -0
- package/packages/framework-mcp/dist/tools/memory.js +94 -0
- package/packages/framework-mcp/dist/tools/messages.js +71 -0
- package/packages/framework-mcp/dist/tools/repository.js +76 -0
- package/packages/framework-mcp/dist/tools/security.js +122 -0
- package/packages/framework-mcp/dist/utils.js +82 -0
- package/packages/framework-mcp/package-lock.json +1836 -0
- package/packages/framework-mcp/package.json +1 -1
- package/packages/framework-mcp/src/index.ts +20 -970
- package/packages/framework-mcp/src/schemas.ts +106 -0
- package/packages/framework-mcp/src/tools/academy.ts +178 -0
- package/packages/framework-mcp/src/tools/codebase.ts +284 -0
- package/packages/framework-mcp/src/tools/contract.ts +91 -0
- package/packages/framework-mcp/src/tools/database.ts +49 -0
- package/packages/framework-mcp/src/tools/framework.ts +157 -0
- package/packages/framework-mcp/src/tools/git.ts +43 -0
- package/packages/framework-mcp/src/tools/index.ts +45 -0
- package/packages/framework-mcp/src/tools/knowledge.ts +68 -0
- package/packages/framework-mcp/src/tools/memory.ts +88 -0
- package/packages/framework-mcp/src/tools/messages.ts +70 -0
- package/packages/framework-mcp/src/tools/repository.ts +76 -0
- package/packages/framework-mcp/src/tools/security.ts +122 -0
- package/packages/framework-mcp/src/utils.ts +90 -0
- package/packages/framework-mcp/tests/mcp-server.test.ts +6 -0
- package/packages/shared-types/README.md +28 -51
- package/packages/shared-types/contract.version.json +4 -4
- package/packages/shared-types/dist/index.d.ts +80 -48
- package/packages/shared-types/dist/index.d.ts.map +1 -1
- package/packages/shared-types/dist/index.js +5 -8
- package/packages/shared-types/dist/index.js.map +1 -1
- package/packages/shared-types/package.json +1 -1
- package/packages/shared-types/src/index.ts +79 -51
- package/CHANGELOG.md +0 -97
- package/CLAUDE.md +0 -7
- package/CODEX.md +0 -7
- package/CURSOR.md +0 -7
- package/GEMINI.md +0 -7
- package/docs/tech-stack.md +0 -10
- package/gemini-extension.json +0 -5
- package/panda.config.ts +0 -20
- /package/{docs → .enderun/docs}/project-docs.md +0 -0
|
@@ -0,0 +1,363 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"timestamp": "2026-05-11T18:11:51.307Z",
|
|
4
|
+
"agent": "manager",
|
|
5
|
+
"action": "MODIFY",
|
|
6
|
+
"requestId": "01KR6EJA6GG3RPS849097KS37Q",
|
|
7
|
+
"status": "SUCCESS",
|
|
8
|
+
"summary": "Fixed nested console recursion by correcting CLI STDOUT and adding MCP command.",
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/cli.js"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"timestamp": "2026-05-11T18:13:30.513Z",
|
|
15
|
+
"agent": "manager",
|
|
16
|
+
"action": "MODIFY",
|
|
17
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
18
|
+
"status": "SUCCESS",
|
|
19
|
+
"summary": "Activated Zero-Request Logging mode and updated ENDERUN.md constitution.",
|
|
20
|
+
"files": [
|
|
21
|
+
".enderun/ENDERUN.md"
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"timestamp": "2026-05-11T18:15:57.320Z",
|
|
26
|
+
"agent": "manager",
|
|
27
|
+
"action": "MODIFY",
|
|
28
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
29
|
+
"status": "SUCCESS",
|
|
30
|
+
"summary": "Refocused framework on Agent Academy and updated Manager SOP for resilience.",
|
|
31
|
+
"files": [
|
|
32
|
+
".enderun/ENDERUN.md",
|
|
33
|
+
".enderun/agents/manager.md"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"timestamp": "2026-05-11T18:16:51.861Z",
|
|
38
|
+
"agent": "manager",
|
|
39
|
+
"action": "CREATE",
|
|
40
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
41
|
+
"status": "SUCCESS",
|
|
42
|
+
"summary": "Extended MCP server with get_agent_audit_report tool and synchronized all agent SOPs.",
|
|
43
|
+
"files": [
|
|
44
|
+
"packages/framework-mcp/src/index.ts",
|
|
45
|
+
".enderun/agents/*.md"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"timestamp": "2026-05-11T18:16:59.895Z",
|
|
50
|
+
"agent": "manager",
|
|
51
|
+
"action": "RESEARCH",
|
|
52
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
53
|
+
"status": "SUCCESS",
|
|
54
|
+
"summary": "Turn completed. Framework extended and SOPs synchronized. Ready for next agent development task."
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"timestamp": "2026-05-11T18:18:44.151Z",
|
|
58
|
+
"agent": "manager",
|
|
59
|
+
"action": "MODIFY",
|
|
60
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
61
|
+
"status": "SUCCESS",
|
|
62
|
+
"summary": "Automated Procedural Continuity Audit by adding analyze_procedural_continuity tool and updating Analyst SOP.",
|
|
63
|
+
"files": [
|
|
64
|
+
"packages/framework-mcp/src/index.ts",
|
|
65
|
+
".enderun/agents/analyst.md"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"timestamp": "2026-05-11T18:18:58.998Z",
|
|
70
|
+
"agent": "manager",
|
|
71
|
+
"action": "MODIFY",
|
|
72
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
73
|
+
"status": "SUCCESS",
|
|
74
|
+
"summary": "Turn completed. Automated QA gate enabled via procedural continuity tool."
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"timestamp": "2026-05-11T18:19:59.951Z",
|
|
78
|
+
"agent": "manager",
|
|
79
|
+
"action": "CREATE",
|
|
80
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
81
|
+
"status": "SUCCESS",
|
|
82
|
+
"summary": "Implemented Global Academy Performance Audit tool to aggregate multi-agent logs.",
|
|
83
|
+
"files": [
|
|
84
|
+
"packages/framework-mcp/src/index.ts"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"timestamp": "2026-05-11T18:20:13.906Z",
|
|
89
|
+
"agent": "manager",
|
|
90
|
+
"action": "MODIFY",
|
|
91
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
92
|
+
"status": "SUCCESS",
|
|
93
|
+
"summary": "Turn completed. Global performance audit tool active. Framework now supports data-driven management."
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"timestamp": "2026-05-11T18:21:09.657Z",
|
|
97
|
+
"agent": "manager",
|
|
98
|
+
"action": "CREATE",
|
|
99
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
100
|
+
"status": "SUCCESS",
|
|
101
|
+
"summary": "Empowered Explorer agent with Codebase Intelligence tools for complexity and dead code detection.",
|
|
102
|
+
"files": [
|
|
103
|
+
"packages/framework-mcp/src/index.ts",
|
|
104
|
+
".enderun/agents/explorer.md"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"timestamp": "2026-05-11T18:21:30.222Z",
|
|
109
|
+
"agent": "manager",
|
|
110
|
+
"action": "MODIFY",
|
|
111
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
112
|
+
"status": "SUCCESS",
|
|
113
|
+
"summary": "Turn completed. Explorer agent is now equipped with codebase intelligence tools."
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"timestamp": "2026-05-11T18:22:32.013Z",
|
|
117
|
+
"agent": "manager",
|
|
118
|
+
"action": "CREATE",
|
|
119
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
120
|
+
"status": "SUCCESS",
|
|
121
|
+
"summary": "Implemented Smart Commit Engine for Git agent and updated Git SOP.",
|
|
122
|
+
"files": [
|
|
123
|
+
"packages/framework-mcp/src/index.ts",
|
|
124
|
+
".enderun/agents/git.md"
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"timestamp": "2026-05-11T18:22:46.416Z",
|
|
129
|
+
"agent": "manager",
|
|
130
|
+
"action": "MODIFY",
|
|
131
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
132
|
+
"status": "SUCCESS",
|
|
133
|
+
"summary": "Turn completed. Git agent is now powered by the Smart Commit Engine."
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"timestamp": "2026-05-11T18:23:39.360Z",
|
|
137
|
+
"agent": "manager",
|
|
138
|
+
"action": "CREATE",
|
|
139
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
140
|
+
"status": "SUCCESS",
|
|
141
|
+
"summary": "Activated Contract Integrity Shield for automated API and type synchronization checks.",
|
|
142
|
+
"files": [
|
|
143
|
+
"packages/framework-mcp/src/index.ts",
|
|
144
|
+
".enderun/agents/analyst.md"
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"timestamp": "2026-05-11T18:23:54.893Z",
|
|
149
|
+
"agent": "manager",
|
|
150
|
+
"action": "MODIFY",
|
|
151
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
152
|
+
"status": "SUCCESS",
|
|
153
|
+
"summary": "Turn completed. Contract Integrity Shield is active and integrated into Analyst SOP."
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"timestamp": "2026-05-11T18:24:51.700Z",
|
|
157
|
+
"agent": "manager",
|
|
158
|
+
"action": "CREATE",
|
|
159
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
160
|
+
"status": "SUCCESS",
|
|
161
|
+
"summary": "Implemented Agent Collaboration System with send_agent_message and read_agent_messages tools.",
|
|
162
|
+
"files": [
|
|
163
|
+
"packages/framework-mcp/src/index.ts",
|
|
164
|
+
".enderun/agents/*.md"
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"timestamp": "2026-05-11T18:25:03.860Z",
|
|
169
|
+
"agent": "manager",
|
|
170
|
+
"action": "MODIFY",
|
|
171
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
172
|
+
"status": "SUCCESS",
|
|
173
|
+
"summary": "Turn completed. Agent Collaboration System is live across the Academy."
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"timestamp": "2026-05-11T18:26:03.176Z",
|
|
177
|
+
"agent": "manager",
|
|
178
|
+
"action": "CREATE",
|
|
179
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
180
|
+
"status": "SUCCESS",
|
|
181
|
+
"summary": "Implemented Pre-Commit QA Guard with validate_repository_health tool and updated Git SOP.",
|
|
182
|
+
"files": [
|
|
183
|
+
"packages/framework-mcp/src/index.ts",
|
|
184
|
+
".enderun/agents/git.md"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"timestamp": "2026-05-11T18:26:13.123Z",
|
|
189
|
+
"agent": "manager",
|
|
190
|
+
"action": "MODIFY",
|
|
191
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
192
|
+
"status": "SUCCESS",
|
|
193
|
+
"summary": "Turn completed. Pre-Commit QA Guard is active and enforced by @git agent."
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"timestamp": "2026-05-11T18:27:22.802Z",
|
|
197
|
+
"agent": "manager",
|
|
198
|
+
"action": "CREATE",
|
|
199
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
200
|
+
"status": "SUCCESS",
|
|
201
|
+
"summary": "Implemented Documentation Debt Scanner for Analyst agent and updated Analyst SOP.",
|
|
202
|
+
"files": [
|
|
203
|
+
"packages/framework-mcp/src/index.ts",
|
|
204
|
+
".enderun/agents/analyst.md"
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"timestamp": "2026-05-11T18:27:31.014Z",
|
|
209
|
+
"agent": "manager",
|
|
210
|
+
"action": "MODIFY",
|
|
211
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
212
|
+
"status": "SUCCESS",
|
|
213
|
+
"summary": "Turn completed. Documentation Debt Scanner is live and enforced by @analyst agent."
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"timestamp": "2026-05-11T18:28:47.706Z",
|
|
217
|
+
"agent": "manager",
|
|
218
|
+
"action": "CREATE",
|
|
219
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
220
|
+
"status": "SUCCESS",
|
|
221
|
+
"summary": "Implemented Automated Academy Progress Report and integrated it into Analyst SOP.",
|
|
222
|
+
"files": [
|
|
223
|
+
"packages/framework-mcp/src/index.ts",
|
|
224
|
+
".enderun/agents/analyst.md"
|
|
225
|
+
]
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"timestamp": "2026-05-11T18:28:58.131Z",
|
|
229
|
+
"agent": "manager",
|
|
230
|
+
"action": "MODIFY",
|
|
231
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
232
|
+
"status": "SUCCESS",
|
|
233
|
+
"summary": "Turn completed. Automated Progress Reporting is live and enforced by @analyst agent."
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"timestamp": "2026-05-11T18:30:18.124Z",
|
|
237
|
+
"agent": "manager",
|
|
238
|
+
"action": "CREATE",
|
|
239
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
240
|
+
"status": "SUCCESS",
|
|
241
|
+
"summary": "Implemented Visual Architecture Mapping for Explorer agent and updated Explorer SOP.",
|
|
242
|
+
"files": [
|
|
243
|
+
"packages/framework-mcp/src/index.ts",
|
|
244
|
+
".enderun/agents/explorer.md"
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"timestamp": "2026-05-11T18:30:24.852Z",
|
|
249
|
+
"agent": "manager",
|
|
250
|
+
"action": "MODIFY",
|
|
251
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
252
|
+
"status": "SUCCESS",
|
|
253
|
+
"summary": "Turn completed. Explorer agent can now generate visual dependency graphs."
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"timestamp": "2026-05-11T18:31:59.054Z",
|
|
257
|
+
"agent": "manager",
|
|
258
|
+
"action": "CREATE",
|
|
259
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
260
|
+
"status": "SUCCESS",
|
|
261
|
+
"summary": "Implemented Internal Knowledge Base (IKB) for collective Academy intelligence.",
|
|
262
|
+
"files": [
|
|
263
|
+
"packages/framework-mcp/src/index.ts",
|
|
264
|
+
"bin/cli.js",
|
|
265
|
+
".enderun/agents/backend.md"
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"timestamp": "2026-05-11T18:32:10.387Z",
|
|
270
|
+
"agent": "manager",
|
|
271
|
+
"action": "MODIFY",
|
|
272
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
273
|
+
"status": "SUCCESS",
|
|
274
|
+
"summary": "Turn completed. Internal Knowledge Base is live and integrated into specialist SOPs."
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"timestamp": "2026-05-11T18:33:50.670Z",
|
|
278
|
+
"agent": "manager",
|
|
279
|
+
"action": "CREATE",
|
|
280
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
281
|
+
"status": "SUCCESS",
|
|
282
|
+
"summary": "Implemented Constitution Compliance Guard with analyze_constitution_compliance tool and updated Git SOP.",
|
|
283
|
+
"files": [
|
|
284
|
+
"packages/framework-mcp/src/index.ts",
|
|
285
|
+
".enderun/agents/git.md"
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"timestamp": "2026-05-11T18:34:02.812Z",
|
|
290
|
+
"agent": "manager",
|
|
291
|
+
"action": "MODIFY",
|
|
292
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
293
|
+
"status": "SUCCESS",
|
|
294
|
+
"summary": "Turn completed. Constitution Compliance Guard is live and enforced by @git agent."
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"timestamp": "2026-05-11T18:36:28.928Z",
|
|
298
|
+
"agent": "manager",
|
|
299
|
+
"action": "CREATE",
|
|
300
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
301
|
+
"status": "SUCCESS",
|
|
302
|
+
"summary": "Implemented Academy Strategic Briefing system for executive reporting.",
|
|
303
|
+
"files": [
|
|
304
|
+
"packages/framework-mcp/src/index.ts",
|
|
305
|
+
".enderun/agents/analyst.md"
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"timestamp": "2026-05-11T18:39:23.811Z",
|
|
310
|
+
"agent": "manager",
|
|
311
|
+
"action": "CREATE",
|
|
312
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
313
|
+
"status": "SUCCESS",
|
|
314
|
+
"summary": "Implemented Legacy Codebase Onboarding Protocol to scan pre-existing projects and bootstrap project memory.",
|
|
315
|
+
"files": [
|
|
316
|
+
"packages/framework-mcp/src/index.ts",
|
|
317
|
+
".enderun/agents/manager.md",
|
|
318
|
+
".enderun/agents/explorer.md"
|
|
319
|
+
]
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"timestamp": "2026-05-11T18:39:35.423Z",
|
|
323
|
+
"agent": "manager",
|
|
324
|
+
"action": "MODIFY",
|
|
325
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
326
|
+
"status": "SUCCESS",
|
|
327
|
+
"summary": "Turn completed. Legacy Onboarding Protocol is active."
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"timestamp": "2026-05-11T18:40:47.170Z",
|
|
331
|
+
"agent": "manager",
|
|
332
|
+
"action": "CREATE",
|
|
333
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
334
|
+
"status": "SUCCESS",
|
|
335
|
+
"summary": "Implemented Database Schema Mapper for Explorer agent to autonomously visualize backend data structures.",
|
|
336
|
+
"files": [
|
|
337
|
+
"packages/framework-mcp/src/index.ts",
|
|
338
|
+
".enderun/agents/explorer.md"
|
|
339
|
+
]
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
"timestamp": "2026-05-11T18:46:17.209Z",
|
|
343
|
+
"agent": "manager",
|
|
344
|
+
"action": "MODIFY",
|
|
345
|
+
"requestId": "01KRC3WPMGXW2G3A4B0FVABKX0",
|
|
346
|
+
"status": "SUCCESS",
|
|
347
|
+
"summary": "Implemented adapter-specific initialization for Gemini, Claude, Cursor, and Codex in bin/cli.js.",
|
|
348
|
+
"files": [
|
|
349
|
+
"bin/cli.js"
|
|
350
|
+
]
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"timestamp": "2026-05-11T19:57:30.000Z",
|
|
354
|
+
"agent": "manager",
|
|
355
|
+
"action": "PREPARE",
|
|
356
|
+
"requestId": "01KR6EJA6GG3RPS849097KS37Q",
|
|
357
|
+
"status": "SUCCESS",
|
|
358
|
+
"summary": "Prepared repository for npmjs publishing and initiated Git history cleanup for v0.2.0 release.",
|
|
359
|
+
"files": [
|
|
360
|
+
"package.json"
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
File without changes
|
package/ENDERUN.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# Agent Enderun (v0.
|
|
1
|
+
# Agent Enderun (v0.2.0)
|
|
2
2
|
# Place in project root. This file is the single source of truth for Base Project AI Extensions.
|
|
3
3
|
|
|
4
4
|
## 🎖️ AGENT CHECKLIST (MANDATORY BEFORE RESPONSE)
|
|
5
5
|
> Check this list at the end of every response:
|
|
6
6
|
> - [ ] **Zero Mock:** Did you use fake data or placeholders? (Strictly Forbidden)
|
|
7
7
|
> - [ ] **Contract First:** Are `shared-types` and `contract.version.json` up to date?
|
|
8
|
-
> - [ ] **Audit Log:** Did you log this action in `.
|
|
8
|
+
> - [ ] **Audit Log:** Did you log this action in `.enderun/logs/[agent].json`?
|
|
9
9
|
> - [ ] **CLI Orchestration:** Does the action comply with `gemini cli` rules?
|
|
10
10
|
> - [ ] **No "..." allowed:** Did you write the code completely without omitting parts?
|
|
11
11
|
|
|
@@ -37,7 +37,7 @@ This file (`./{{ADAPTER}}.md`) and the `{{FRAMEWORK_DIR}}/docs/` folder represen
|
|
|
37
37
|
- **CLI-First Policy:** Due to the AI CLI Assistant focus, all outputs must be user-friendly (using Chalk, Clack, etc.) and stream-based. All commands must support the `--output json` flag and produce machine-readable output.
|
|
38
38
|
- **Audit Logging Necessity:** Every critical action must be logged traceably under the `{{FRAMEWORK_DIR}}/logs/` folder.
|
|
39
39
|
- **File Ownership Rule:** Each file is the responsibility of a single agent.
|
|
40
|
-
- **CLI Command Mapping:** All CLI commands in the project must be defined in the `.
|
|
40
|
+
- **CLI Command Mapping:** All CLI commands in the project must be defined in the `.enderun/cli-commands.json` file and assigned to the relevant agent.
|
|
41
41
|
- **Exit Code Standard:** Standard exit codes (e.g., 64: User Error, 70: Internal Error) must be used in error situations.
|
|
42
42
|
- **Phase-Based Execution:** The development process must progress through defined Phases. You cannot move to the next phase until the current one is completed.
|
|
43
43
|
- **CLI-Driven Orchestration:** All agent interactions and task delegations must be traceable via `{{ADAPTER}} cli`.
|
|
@@ -47,7 +47,7 @@ This file (`./{{ADAPTER}}.md`) and the `{{FRAMEWORK_DIR}}/docs/` folder represen
|
|
|
47
47
|
|
|
48
48
|
## STEP 1 — VALIDATE BEFORE ACTING
|
|
49
49
|
|
|
50
|
-
Before writing any code or design, check `.
|
|
50
|
+
Before writing any code or design, check `.enderun/docs/tech-stack.md`:
|
|
51
51
|
|
|
52
52
|
| Unknown | Action |
|
|
53
53
|
|---|---|
|
|
@@ -144,7 +144,7 @@ This file is the single source of truth for API stability. `@backend-architect`
|
|
|
144
144
|
|
|
145
145
|
The development process follows a strict State Machine. Transition to the next phase is prohibited until the "Success Criteria" of the current phase is met.
|
|
146
146
|
|
|
147
|
-
- **[STATE: PHASE_0] Discovery & Setup:** Profile selection (Lightweight/Full), requirement analysis, and validating `.
|
|
147
|
+
- **[STATE: PHASE_0] Discovery & Setup:** Profile selection (Lightweight/Full), requirement analysis, and validating `.enderun/docs/tech-stack.md`.
|
|
148
148
|
- **[STATE: PHASE_1] Architecture & Contracts:** Setup of data models, API schemas, and `packages/shared-types`. Cannot proceed until Frontend and Backend approve these schemas.
|
|
149
149
|
- **[STATE: PHASE_2] Core Development:** Active agents build core features in parallel based on the selected profile. (Under the apps/ folder)
|
|
150
150
|
- **[STATE: PHASE_3] Integration & Testing:** System integration.
|
|
@@ -162,13 +162,13 @@ Every agent must produce a response for their assigned task within a maximum of
|
|
|
162
162
|
|
|
163
163
|
## CLI STANDARDS & CONFIGURATION
|
|
164
164
|
|
|
165
|
-
### 1. CLI Command Map (`.
|
|
165
|
+
### 1. CLI Command Map (`.enderun/cli-commands.json`)
|
|
166
166
|
All CLI commands are centrally managed in this file. Each command must have a designated owner agent.
|
|
167
167
|
|
|
168
|
-
### 2. Configuration (`.
|
|
168
|
+
### 2. Configuration (`.enderun/config.json`)
|
|
169
169
|
CLI behaviors (logLevel, outputFormat, defaultProfile) are managed through this file.
|
|
170
170
|
|
|
171
|
-
**Priority Rule:** CLI Flags > `.
|
|
171
|
+
**Priority Rule:** CLI Flags > `.enderun/config.json` > `.env` > Default Values.
|
|
172
172
|
|
|
173
173
|
### 3. Exit Codes
|
|
174
174
|
- `0`: Success
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Yusuf BEKAR
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|