agent-enderun 0.8.8 → 0.9.1

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 (164) hide show
  1. package/.enderun/BRAIN_DASHBOARD.md +5 -5
  2. package/{ENDERUN.md → .enderun/ENDERUN.md} +4 -2
  3. package/.enderun/PROJECT_MEMORY.md +32 -43
  4. package/.enderun/STATUS.md +25 -28
  5. package/.enderun/agents/agent_army_schema.json +29 -7
  6. package/.enderun/agents/backend.md +48 -39
  7. package/.enderun/agents/database.md +55 -0
  8. package/.enderun/agents/devops.md +30 -17
  9. package/.enderun/agents/explorer.md +5 -5
  10. package/.enderun/agents/frontend.md +97 -76
  11. package/.enderun/agents/git.md +4 -4
  12. package/.enderun/agents/manager.md +68 -59
  13. package/.enderun/agents/mobile.md +4 -4
  14. package/.enderun/agents/native.md +106 -0
  15. package/.enderun/agents/quality.md +122 -0
  16. package/.enderun/agents/schema/agent-lifecycle-schema.json +29 -8
  17. package/.enderun/cli-commands.json +7 -3
  18. package/.enderun/config.json +8 -2
  19. package/.enderun/knowledge/SHIM_TEMPLATE.md +25 -0
  20. package/.enderun/knowledge/context_boundary_rules.md +57 -0
  21. package/.enderun/knowledge/corporate-governance/high-risk-action-approval-flow.md +29 -0
  22. package/.enderun/knowledge/documentation_ownership.md +53 -0
  23. package/.enderun/knowledge/eslint-standards.md +63 -0
  24. package/.enderun/knowledge/frontend_professionalization_guidelines.md +7 -7
  25. package/.enderun/knowledge/hermes_live_test_guidelines.md +5 -5
  26. package/.enderun/knowledge/hermes_protocol.md +1 -1
  27. package/.enderun/knowledge/lessons-learned.md +14 -0
  28. package/.enderun/knowledge/manager_authority_audit_enforcement.md +10 -10
  29. package/.enderun/knowledge/project_scaffold_guidelines.md +4 -4
  30. package/.enderun/knowledge/reference_application_guidelines.md +6 -6
  31. package/.enderun/mcp_config.json +9 -0
  32. package/.enderun/memory-graph/agent-contexts/backend.json +1 -1
  33. package/.enderun/memory-graph/agent-contexts/devops.json +1 -1
  34. package/.enderun/memory-graph/agent-contexts/explorer.json +1 -1
  35. package/.enderun/memory-graph/agent-contexts/frontend.json +1 -1
  36. package/.enderun/memory-graph/agent-contexts/git.json +1 -1
  37. package/.enderun/memory-graph/agent-contexts/manager.json +1 -1
  38. package/.enderun/memory-graph/agent-contexts/mobile.json +1 -1
  39. package/.enderun/memory-graph/agent-contexts/native.json +1 -0
  40. package/.enderun/memory-graph/agent-contexts/quality.json +1 -0
  41. package/.enderun/memory-graph/graph.json +123 -15
  42. package/.enderun/memory-graph/shared-facts.json +26 -31
  43. package/.enderun/queue/README.md +13 -13
  44. package/README.md +171 -393
  45. package/agent.md +25 -0
  46. package/bin/cli.js +10 -10
  47. package/bin/init-check.js +69 -0
  48. package/bin/update-contract.js +57 -38
  49. package/bin/validate-agent-army.js +38 -13
  50. package/claude.md +14 -8
  51. package/docs/README.md +24 -16
  52. package/docs/architecture/README.md +9 -0
  53. package/docs/architecture/standards/data-fetching-patterns.md +13 -0
  54. package/docs/architecture/standards/design-system.md +31 -0
  55. package/docs/architecture/standards/logging.md +7 -0
  56. package/docs/architecture/standards/tech-stack.md +9 -0
  57. package/docs/getting-started.md +9 -259
  58. package/docs/user/README.md +35 -0
  59. package/docs/user/action-plan-2026.md +9 -0
  60. package/docs/user/getting-started.md +13 -0
  61. package/docs/user/roadmap.md +13 -0
  62. package/eslint.config.js +68 -0
  63. package/framework-mcp/dist/index.js +178 -24
  64. package/framework-mcp/package.json +6 -33
  65. package/framework-mcp/tsconfig.json +3 -6
  66. package/gemini.md +12 -6
  67. package/grok.md +25 -0
  68. package/package.json +13 -5
  69. package/panda.config.ts +86 -86
  70. package/src/cli/adapters.ts +208 -0
  71. package/src/cli/commands/app.ts +38 -0
  72. package/src/cli/commands/check.ts +87 -0
  73. package/src/cli/commands/compliance.ts +55 -0
  74. package/src/cli/commands/contract.ts +45 -0
  75. package/src/cli/commands/explorer.ts +45 -0
  76. package/src/cli/commands/git.ts +39 -0
  77. package/src/cli/commands/init.ts +272 -0
  78. package/src/cli/commands/knowledge.ts +44 -0
  79. package/src/cli/commands/lint.ts +25 -0
  80. package/src/cli/commands/log.ts +37 -0
  81. package/src/cli/commands/memory.ts +78 -0
  82. package/src/cli/commands/orchestrate.ts +111 -0
  83. package/src/cli/commands/script.ts +20 -0
  84. package/src/cli/commands/security.ts +38 -0
  85. package/src/cli/commands/status.ts +59 -0
  86. package/src/cli/commands/trace.ts +46 -0
  87. package/src/cli/index.ts +74 -2155
  88. package/src/cli/utils/app.ts +764 -0
  89. package/src/cli/utils/claude.ts +56 -0
  90. package/src/cli/utils/fs.ts +139 -0
  91. package/src/cli/utils/memory.ts +141 -0
  92. package/src/cli/utils/pkg.ts +215 -0
  93. package/src/cli/utils/string.ts +48 -0
  94. package/src/cli/utils/time.ts +27 -0
  95. package/tsconfig.json +9 -0
  96. package/.enderun/agents/analyst.md +0 -238
  97. package/.enderun/agents/orchestrator.md +0 -172
  98. package/.enderun/agents/qa.md +0 -124
  99. package/.enderun/agents/security.md +0 -202
  100. package/.enderun/knowledge/api_design_rules.md +0 -6
  101. package/.enderun/knowledge/branded_types_pattern.md +0 -8
  102. package/.enderun/knowledge/code_review_checklist.md +0 -7
  103. package/.enderun/knowledge/contract_versioning.md +0 -7
  104. package/.enderun/knowledge/database_migration.md +0 -6
  105. package/.enderun/knowledge/deployment_checklist.md +0 -7
  106. package/.enderun/knowledge/git_commit_strategy.md +0 -10
  107. package/.enderun/knowledge/monitoring_setup.md +0 -5
  108. package/.enderun/knowledge/performance_guidelines.md +0 -11
  109. package/.enderun/knowledge/repository_patterns.md +0 -9
  110. package/.enderun/knowledge/security_scanning.md +0 -6
  111. package/.enderun/knowledge/testing_standards.md +0 -7
  112. package/.enderun/knowledge/troubleshooting_guide.md +0 -5
  113. package/.enderun/logs/analyst.json +0 -1
  114. package/.enderun/logs/backend.json +0 -1
  115. package/.enderun/logs/devops.json +0 -1
  116. package/.enderun/logs/explorer.json +0 -1
  117. package/.enderun/logs/frontend.json +0 -1
  118. package/.enderun/logs/git.json +0 -1
  119. package/.enderun/logs/manager.json +0 -1
  120. package/.enderun/logs/mobile.json +0 -1
  121. package/.enderun/logs/native.json +0 -1
  122. package/.enderun/logs/orchestrator.json +0 -1
  123. package/.enderun/logs/qa.json +0 -1
  124. package/.enderun/logs/security.json +0 -1
  125. package/.enderun/memory-graph/agent-contexts/analyst.json +0 -1
  126. package/.enderun/memory-graph/agent-contexts/orchestrator.json +0 -1
  127. package/.enderun/memory-graph/agent-contexts/qa.json +0 -1
  128. package/.enderun/memory-graph/agent-contexts/security.json +0 -1
  129. package/.env.example +0 -10
  130. package/cursor.md +0 -19
  131. package/docs/action-plan-2026.md +0 -119
  132. package/docs/roadmap.md +0 -142
  133. package/framework-mcp/README.md +0 -55
  134. package/framework-mcp/dist/schemas.js +0 -84
  135. package/framework-mcp/dist/tools/codebase.js +0 -294
  136. package/framework-mcp/dist/tools/contract.js +0 -197
  137. package/framework-mcp/dist/tools/framework.js +0 -225
  138. package/framework-mcp/dist/tools/git.js +0 -51
  139. package/framework-mcp/dist/tools/governance.js +0 -696
  140. package/framework-mcp/dist/tools/index.js +0 -47
  141. package/framework-mcp/dist/tools/knowledge.js +0 -133
  142. package/framework-mcp/dist/tools/memory.js +0 -217
  143. package/framework-mcp/dist/tools/messages.js +0 -193
  144. package/framework-mcp/dist/tools/monitoring.js +0 -294
  145. package/framework-mcp/dist/tools/orchestration.js +0 -369
  146. package/framework-mcp/dist/tools/pipeline.js +0 -267
  147. package/framework-mcp/dist/tools/security.js +0 -137
  148. package/framework-mcp/dist/utils.js +0 -121
  149. package/framework-mcp/src/index.ts +0 -49
  150. package/framework-mcp/src/schemas.ts +0 -106
  151. package/framework-mcp/src/tools/codebase.ts +0 -284
  152. package/framework-mcp/src/tools/contract.ts +0 -221
  153. package/framework-mcp/src/tools/framework.ts +0 -223
  154. package/framework-mcp/src/tools/git.ts +0 -42
  155. package/framework-mcp/src/tools/governance.ts +0 -891
  156. package/framework-mcp/src/tools/index.ts +0 -50
  157. package/framework-mcp/src/tools/knowledge.ts +0 -141
  158. package/framework-mcp/src/tools/memory.ts +0 -207
  159. package/framework-mcp/src/tools/messages.ts +0 -213
  160. package/framework-mcp/src/tools/monitoring.ts +0 -351
  161. package/framework-mcp/src/tools/orchestration.ts +0 -440
  162. package/framework-mcp/src/tools/pipeline.ts +0 -353
  163. package/framework-mcp/src/tools/security.ts +0 -143
  164. package/framework-mcp/src/utils.ts +0 -130
@@ -1,4 +1,4 @@
1
- # 🧠 Agent Enderun Brain Dashboard
1
+ # 🧠 Agent Enderun Brain Dashboard (v1.0)
2
2
 
3
3
  This dashboard provides a high-level overview of the Army's performance, quality trends, and architectural health.
4
4
 
@@ -12,7 +12,7 @@ This dashboard provides a high-level overview of the Army's performance, quality
12
12
  | **Active Trace IDs** | 0 | 🟢 None |
13
13
  | **Agent Velocity** | — | — |
14
14
  | **Contract Integrity** | 100% | ✅ Valid |
15
- | **Army Size** | 11 agents | ✅ Complete |
15
+ | **Army Size** | 10 agents | ✅ Complete |
16
16
 
17
17
  ---
18
18
 
@@ -20,7 +20,7 @@ This dashboard provides a high-level overview of the Army's performance, quality
20
20
 
21
21
  - **Security Audit Status**: 🟢 Clean (Last scan: 2026-05-26)
22
22
  - **Constitution Compliance**: 🔵 100% (Last audit: 2026-05-26)
23
- - **Documentation Debt**: 🟢 Low (English standardization complete)
23
+ - **Documentation Debt**: 🟢 Low (v1.0 English standardization complete)
24
24
 
25
25
  ---
26
26
 
@@ -29,7 +29,7 @@ This dashboard provides a high-level overview of the Army's performance, quality
29
29
  - **Dependency Cycles**: 0 detected.
30
30
  - **Complexity Spikes**: 0 identified.
31
31
  - **Database Migrations**: N/A (framework core)
32
- - **Memory Graph**: ✅ Online (12 contexts + shared-facts)
32
+ - **Memory Graph**: ✅ Online (10 contexts + shared-facts)
33
33
  - **Task Queue**: ✅ Active (file-based, no external deps)
34
34
 
35
35
  ---
@@ -38,7 +38,7 @@ This dashboard provides a high-level overview of the Army's performance, quality
38
38
 
39
39
  | Version | Date | Description | Hash |
40
40
  | :--- | :--- | :--- | :--- |
41
- | v1.0.0-alpha | 2026-05-25 | Full 11-Agent Army + Memory Graph + Orchestration MCP | `sha256:army-v1` |
41
+ | v1.0.0-alpha | 2026-05-25 | Full 12-Agent Army + Memory Graph + Orchestration MCP | `sha256:army-v1` |
42
42
 
43
43
  ---
44
44
 
@@ -3,11 +3,13 @@
3
3
 
4
4
  ## 🎖️ AGENT CHECKLIST (MANDATORY BEFORE RESPONSE)
5
5
  > Check this list at the end of every response:
6
- - [ ] **Surgical Quality:** Did you use the `replace` tool for targeted changes? For files >100 lines, focus on changed blocks and use `...` for untouched sections to preserve token limit. (Quality over Volume)
6
+ - [ ] **Surgical Quality:** Did you use the `replace_text` tool for targeted changes? For files >100 lines, focus on changed blocks. (Quality over Volume)
7
+ - [ ] **Autonomous Growth:** Use `create_app` for generating new modules from specs.
7
8
  - [ ] **Contract First:** Are the app's types and apps/backend/contract.version.json up to date?
8
9
  - [ ] **Audit Log:** Did you log this action in `{{FRAMEWORK_DIR}}/logs/[agent].json`?
9
10
  - [ ] **CLI Orchestration:** Does the action comply with `{{ADAPTER}} cli` rules?
10
11
  - [ ] **Complete Context:** Ensure all changed logic is fully written. Placeholder `...` is only for *unchanged* surrounding code.
12
+ - [ ] **ESLint Compliance:** Did you run `npm run lint` (or `agent-enderun check:lint`)? Zero errors required; follow `{{FRAMEWORK_DIR}}/knowledge/eslint-standards.md`.
11
13
 
12
14
  ---
13
15
 
@@ -35,7 +37,7 @@ To minimize AI costs and maximize speed, all agents must adhere to the **Token E
35
37
  ---
36
38
 
37
39
  ## Constitution Status
38
- This file (`./{{ADAPTER}}.md`) and the `{{FRAMEWORK_DIR}}/docs/` folder represent the "Supreme Law" of the project. All agents must read this file first in every session and strictly comply with its rules 100%. All framework-specific documentation is stored within `{{FRAMEWORK_DIR}}/docs/`.
40
+ This file (`./.enderun/ENDERUN.md`) and the `.enderun/docs/` folder represent the "Supreme Law" of the project. All agents must read this file first in every session and strictly comply with its rules 100%. All framework-specific documentation is stored within `.enderun/docs/`.
39
41
 
40
42
  ---
41
43
 
@@ -1,53 +1,42 @@
1
- # PROJECT MEMORY — Agent Enderun
2
-
3
- This file is the Single Source of Truth (SSOT) and the persistent memory of the project.
4
-
5
1
  ## CURRENT STATUS
6
2
 
7
- | Active Phase | Profile | Last Update | Active Trace ID | Blockers |
8
- | :----------- | :------ | :---------- | :-------------- | :------- |
9
- | PHASE_0 | Full | 2026-05-28 | NONE | NONE |
10
-
11
- ## PROJECT DEFINITION
12
-
13
- | Field | Value |
14
- | :--- | :--- |
15
- | Project Name | Agent Enderun |
16
- | Version | 0.8.8 |
17
- | Platform | Node.js CLI + MCP orchestration framework |
18
- | Frontend | N/A (framework core, no user-facing frontend) |
19
- | Backend | Node.js + framework-mcp MCP server + CLI orchestration |
20
- | DB | None (framework core) |
21
-
22
- ## DOD STATUS
23
-
24
- | Phase | Status | Note |
25
- | :--- | :--- | :--- |
26
- | PHASE_0 | PENDING | Discovery & Setup |
27
- | PHASE_1 | PENDING | Architecture & Contracts |
28
- | PHASE_2 | PENDING | Core Development |
29
- | PHASE_3 | PENDING | Integration & Testing |
30
- | PHASE_4 | PENDING | Optimization & Deployment |
31
-
32
- ## CRITICAL DECISIONS
33
-
34
- | Date | Decision | Rationale | Agent |
35
- | :--- | :--- | :--- | :--- |
36
- | 2026-05-26 | Framework Cleanup | Pristine memory state established for npmjs publish. | @manager |
37
-
38
- ## DELIVERABLES
39
-
40
- | Module | Status | Agent | Date |
41
- | :--- | :--- | :--- | :--- |
3
+ - Phase: PHASE_1 (Architecture & Contracts)
4
+ - Trace ID: 01HGT8J5E2N0W0W0W0W0W0W0W4
5
+ - @manager state: ENTERPRISE_FULL_PROFILE_ACTIVE
42
6
 
43
7
  ## ACTIVE TASKS
44
8
 
45
9
  | Trace ID | Task | Agent | Priority | Status |
46
10
  | :--- | :--- | :--- | :--- | :--- |
11
+ | 01HGT8J5E2N0W0W0W0W0W0W0W4 | Define initial API contracts (Dashboard) | @backend | P0 | COMPLETED |
12
+ | 01HGT8J5E2N0W0W0W0W0W0W0W4 | Knowledge Base Rehabilitation & Governance Audit | @manager | P0 | COMPLETED |
13
+ | 01HGT8J5E2N0W0W0W0W0W0W0W4 | Transition to Dynamic Hermes Orchestration Loop | @manager | P0 | COMPLETED |
47
14
 
48
- ## HISTORY (Persistent Memory)
15
+ ## CRITICAL DECISIONS
16
+ - **Tech Stack:** Node.js/Fastify, React/Vite, PostgreSQL, Kysely.
17
+ - **Surgical Standard:** replace_text/patch_file is mandatory for all edits.
18
+ - **Contract First:** All developments must start with type definitions.
19
+ - **Memory Standard:** Auto-pruning active (max 10 entries).
20
+ - **Sovereign Backend Structure:** Every backend service MUST maintain its own database logic (schema, migrations, seeds) within `src/database/` to ensure full isolation.
21
+
22
+ ## HISTORY
23
+ - **SYSTEM INITIALIZED:** Framework v0.9.0 promoted to stable release state.
24
+ - **PHASE TRANSITION:** Moved to PHASE_1. Enterprise profile selected.
25
+ - **CONTRACT DEFINITION:** API contracts defined and hash updated.
26
+ - **AGENT ADDED:** Created @database agent for schema and seeding authority.
27
+ - **AGENT MERGE:** Governance (@manager) and Orchestration (@orchestrator) roles merged into unified @manager authority.
28
+ - **DESIGN MANDATE:** Formally adopted 'Mobile-First, Responsive' design discipline and created Design System documentation.
29
+ - **UI GOVERNANCE:** Banned native browser dialogues (`alert`/`confirm`) and mandated integrated `Toaster`/`Modal` components.
30
+ - **LOGGING GOVERNANCE:** Implemented structured logging, banned `console.log`, and mandated audit logging for state-mutating operations.
31
+ - **LEARNING ENGINE:** Implemented 'Lessons Learned Engine'. Agents analyze failures to create 'Prevention Rules' and verify them before every task.
32
+ - **GOVERNANCE UPDATE:** Adopted 'Strategic Consultation Mandate'. Agents must now propose at least two distinct strategic options for major implementations and await user direction.
33
+ - **LANGUAGE MANDATE:** Standardized all documentation, agent definitions, and system reports to English-Only.
34
+ - **GOVERNANCE UPDATE:** Adopted 'Self-Contained Sovereign Services' structure for all backend applications.
35
+ - **VERSION BUMP:** Framework version updated to v0.9.1.
36
+ - **KNOWLEDGE REHABILITATION:** Inlined 13 stub files into agent definitions and added missing `documentation_ownership.md` to establish strict documentation boundaries.
37
+ - **DYNAMIC ORCHESTRATION TRANSITION:** Removed static template code generators, implemented dynamic Hermes Orchestrator Loop, and resolved critical CLI ReferenceError import bugs.
38
+ - **DYNAMIC PATH RESOLUTION ALIGNMENT:** Eliminated all hardcoded framework and application directories, introducing configuration-driven dynamic path mapping via `paths` inside `config.json`.
39
+ - **COMPILER & TYPE SAFETY REMEDIATION:** Fixed type-safety signature mismatches in `fs.ts` and const reassignment issues in `log.ts`, ensuring perfect TypeScript compiler build verification with zero errors.
40
+ - **ESLINT RUNTIME ALIGNMENT:** Patched ESLint to completely ignore hidden framework files, preventing EPERM scan crashes under sandboxed runtime restrictions.
49
41
 
50
- ### 2026-05-26 — Framework Cleanup
51
42
 
52
- - **Agent:** @manager
53
- - **Action:** Framework memory reset successfully performed. Pristine memory state established. Ready to receive custom project instructions and start scaffolding.
@@ -1,5 +1,5 @@
1
- # 🏛️ AGENT ENDERUN — ORDU KOMUTA DASHBOARDI
2
- > v0.8.8 | State Machine Active | Memory Graph: Online
1
+ # 🏛️ AGENT ENDERUN — ARMY COMMAND DASHBOARD
2
+ > v0.9.1 | State Machine Active | Memory Graph: Online
3
3
 
4
4
  ---
5
5
 
@@ -7,48 +7,46 @@
7
7
 
8
8
  | Agent | State | CurrentTask | BlockedBy | HealthScore | LastAction |
9
9
  | :--- | :--- | :--- | :--- | :--- | :--- |
10
- | @manager | IDLE | | — | 9.5/10 | Framework Reset |
11
- | @orchestrator | IDLE | — | — | 9.8/10 | |
12
- | @analyst | IDLE | — | — | 9.6/10 | — |
10
+ | @manager | ACTIVE | Readiness Status | — | 10/10 | v0.9.1 Promotion |
11
+ | @quality | IDLE | — | — | 9.7/10 | Governance Audit |
12
+ | @database | IDLE | — | — | 9.5/10 | — |
13
13
  | @backend | IDLE | — | — | 9.2/10 | — |
14
14
  | @frontend | IDLE | — | — | 9.0/10 | — |
15
- | @security | IDLE | — | — | 9.3/10 | — |
16
- | @qa | IDLE | — | — | 9.1/10 | — |
17
15
  | @devops | IDLE | — | — | 9.0/10 | — |
18
16
  | @explorer | IDLE | — | — | 9.4/10 | — |
19
17
  | @git | IDLE | — | — | 9.1/10 | — |
20
18
  | @mobile | IDLE | — | — | 8.8/10 | — |
19
+ | @native | IDLE | — | — | 8.9/10 | — |
21
20
 
22
21
  ---
23
22
 
24
23
  ## 📈 Intelligence Metrics
25
24
 
26
- | Metrik | Değer |
25
+ | Metric | Value |
27
26
  | :--- | :--- |
28
- | **Framework Versiyonu** | v0.8.8 |
29
- | **Sistem Sağlığı** | 🟢 GREEN |
30
- | **Toplam Trace** | 0 |
31
- | **Aktif Görevler** | 0 |
32
- | **Blokaj Sayısı** | 0 |
33
- | **Aktif Agent Sayısı** | 11 |
34
- | **Kuyruk Boyutu** | 0 |
27
+ | **Framework Version** | v0.9.1 |
28
+ | **System Health** | 🟢 GREEN |
29
+ | **Major Governance Audit** | COMPLETED |
30
+ | **Active Tasks** | 1 |
31
+ | **Number of Blockers** | 0 |
32
+ | **Active Agent Count** | 10 |
33
+ | **Queue Size** | 0 |
35
34
 
36
35
  ---
37
36
 
38
37
  ## 🔗 Hermes Channel Map
39
38
 
40
39
  ```
41
- @manager → @backend, @frontend, @analyst, @explorer, @git, @orchestrator
42
- @orchestrator * (tüm agentlar)
43
- @security → @manager, @backend, @git
44
- @qa → @manager, @backend, @frontend
45
- @devops → @manager, @git, @security
46
- @backend → @manager, @analyst
47
- @frontend → @manager
48
- @analyst → @manager
49
- @git → @manager
50
- @explorer → @manager
51
- @mobile → @manager
40
+ @manager → @backend, @frontend, @explorer, @git, @database, @devops, @quality, @mobile, @native
41
+ @quality @manager, @backend, @frontend, @git, @devops
42
+ @devops → @manager, @git, @quality
43
+ @backend → @manager, @quality
44
+ @frontend → @manager
45
+ @git → @manager
46
+ @explorer → @manager
47
+ @database → @manager
48
+ @mobile → @manager
49
+ @native → @manager
52
50
  ```
53
51
 
54
52
  ---
@@ -57,5 +55,4 @@
57
55
 
58
56
  `IDLE → BRIEFED → EXECUTING → DONE → IDLE`
59
57
 
60
- Detay: `.enderun/agents/schema/agent-lifecycle-schema.json`
61
- json`
58
+ Details: `.enderun/agents/schema/agent-lifecycle-schema.json`
@@ -1,10 +1,18 @@
1
1
  {
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
3
  "title": "Agent Enderun Army Schema",
4
- "description": "Strongly-typed schema for all specialist agents in the Enderun Army. Every agent definition file must validate against this. v1.0: Removed enum lock on agent names to allow new specialist agents.",
4
+ "description": "Strongly-typed schema for all specialist agents in the Enderun Army. Every agent.json must validate against this. v1.0: Removed enum lock on agent names to allow new specialist agents.",
5
5
  "version": "1.0.0",
6
6
  "type": "object",
7
- "required": ["name", "capability", "role", "specialization", "rules", "permittedDirectories", "hermesChannels"],
7
+ "required": [
8
+ "name",
9
+ "capability",
10
+ "role",
11
+ "specialization",
12
+ "rules",
13
+ "permittedDirectories",
14
+ "hermesChannels"
15
+ ],
8
16
  "properties": {
9
17
  "name": {
10
18
  "type": "string",
@@ -31,13 +39,17 @@
31
39
  },
32
40
  "rules": {
33
41
  "type": "array",
34
- "items": { "type": "string" },
42
+ "items": {
43
+ "type": "string"
44
+ },
35
45
  "minItems": 1,
36
46
  "description": "Mandatory behavioral rules the agent must never violate."
37
47
  },
38
48
  "permittedDirectories": {
39
49
  "type": "array",
40
- "items": { "type": "string" },
50
+ "items": {
51
+ "type": "string"
52
+ },
41
53
  "minItems": 1,
42
54
  "description": "Directories this agent is authorized to read/write. Any access outside these requires @manager approval."
43
55
  },
@@ -58,7 +70,9 @@
58
70
  "type": "object",
59
71
  "additionalProperties": {
60
72
  "type": "array",
61
- "items": { "type": "string" }
73
+ "items": {
74
+ "type": "string"
75
+ }
62
76
  },
63
77
  "description": "Named checklists the agent must execute. e.g. 'beforeEveryResponse', 'beforeDelegating'"
64
78
  },
@@ -76,10 +90,18 @@
76
90
  "type": "array",
77
91
  "items": {
78
92
  "type": "string",
79
- "enum": ["core", "specialist", "infrastructure", "governance", "quality", "security", "orchestration"]
93
+ "enum": [
94
+ "core",
95
+ "specialist",
96
+ "infrastructure",
97
+ "governance",
98
+ "quality",
99
+ "security",
100
+ "orchestration"
101
+ ]
80
102
  },
81
103
  "description": "Classification tags for filtering and grouping agents."
82
104
  }
83
105
  },
84
106
  "additionalProperties": false
85
- }
107
+ }
@@ -3,7 +3,7 @@ name: backend
3
3
  description: "Domain Logic & Databases Specialist Agent for Agent Enderun"
4
4
  ---
5
5
 
6
- # @backend — Domain Logic & Databases
6
+ # @backend — Domain Logic & Databases
7
7
 
8
8
  - **Name:** @backend
9
9
  - **Capability:** 9.2
@@ -14,8 +14,8 @@ description: "Domain Logic & Databases Specialist Agent for Agent Enderun"
14
14
  - `.enderun/knowledge/`
15
15
  - **Hermes Channels:**
16
16
  - `@backend->@manager`
17
- - `@backend->@analyst`
18
- - `@backend->@orchestrator`
17
+ - `@backend->@quality`
18
+ - `@backend->@manager`
19
19
  - **Tags:** specialist
20
20
  - **State Machine:** `../schema/agent-lifecycle-schema.json`
21
21
 
@@ -24,11 +24,13 @@ description: "Domain Logic & Databases Specialist Agent for Agent Enderun"
24
24
  - Define and version all shared contracts and branded types before any consumer code is written.
25
25
  - All high-risk endpoints must carry isHighRiskAdminAction + managerApproval validation.
26
26
  - Use only branded ID types. No plain strings for identifiers.
27
- - Log every contract change and migration with Trace ID.
27
+ - **Logging Standard:** `console.log` usage is FORBIDDEN. Use the centralized `Logger` service (`apps/backend/src/services/logger.ts`) for all logging.
28
+ - **Audit Logging:** Every state-mutating operation (POST, PUT, PATCH, DELETE) MUST trigger an `AuditService.log()` call, linking the action to the responsible agent, Trace ID, and entity ID.
29
+ - **Lesson Check (Mandatory):** Before initiating any task, check `.enderun/knowledge/lessons-learned.md`. If a previous failure matches current scope/context, strictly enforce the 'Prevention Rule'. Ignoring this is a Critical Rule Violation.
28
30
 
29
31
  ---
30
32
 
31
- # Backend Architect
33
+ # Backend Architect
32
34
 
33
35
  **Role:** Build a secure, high-performance, and consistent server architecture. All the following standards are automatically applied in every task — no need for the user to specify them separately.
34
36
 
@@ -95,13 +97,16 @@ export class NotFoundError extends DomainError {
95
97
  **Rule:** Never use `throw new Error()`. Always use one of the DomainError subclasses.
96
98
 
97
99
  ### 2. Branded Types (Mandatory)
98
- All IDs must be branded types:
100
+ All IDs must be branded types to ensure complete type safety and prevent runtime errors.
101
+ Example:
99
102
  ```ts
100
103
  export type UserID = string & { __brand: 'UserID' };
101
104
  export type OrderID = string & { __brand: 'OrderID' };
105
+ // Alternative Brand utility
106
+ export type Brand<T, B> = T & { __brand: B };
107
+ export type ProjectID = Brand<string, 'ProjectID'>;
102
108
  ```
103
-
104
- Using plain `string` or `number` IDs is forbidden.
109
+ Using plain `string` or `number` IDs is strictly forbidden where a specific ID is expected.
105
110
 
106
111
  ### 3. Types Structure (Standard)
107
112
  The `apps/backend/src/types/` directory must be organized as follows:
@@ -123,10 +128,29 @@ All routes must use a global error handler. Errors must be returned in the stand
123
128
  }
124
129
  ```
125
130
 
126
- ### 5. Gold Standard Enforcement
131
+ ### 5. API Design Rules
132
+ 1. **Versioned Routes**: All APIs must start with `/api/v1/`.
133
+ 2. **Kebab-Case**: Use kebab-case for URL paths.
134
+ 3. **Standard Responses**: Always wrap data in `{ data, traceId, timestamp }`.
135
+ 4. **Method Discipline**: GET (read), POST (create), PUT (update), DELETE (remove).
136
+
137
+ ### 6. Repository Pattern Standards
138
+ - **Purpose**: Decouple the data access logic from the business logic. This ensures that changes in the database schema or ORM do not break the entire application.
139
+ - **Principles**:
140
+ 1. **Abstraction**: Use interfaces to define the repository contract.
141
+ 2. **Implementation**: Use Kysely or preferred ORM for actual DB calls.
142
+ 3. **Single Responsibility**: One repository per domain entity.
143
+
144
+ ### 7. Contract Versioning Workflow
145
+ 1. **Change**: Modify types in `apps/backend/src/types`.
146
+ 2. **Hash**: Generate new SHA-256 hash using the `update_contract_hash` tool.
147
+ 3. **Sync**: Update `apps/backend/contract.version.json`.
148
+ 4. **Audit**: @analyst verifies the sync status via the `verify_api_contract` tool.
149
+
150
+ ### 8. Gold Standard Enforcement
127
151
  - The DomainError hierarchy above is mandatory for error handling.
128
152
  - Branded Types + the structure above is mandatory for types.
129
- - The standard error-handler middleware pattern must be used.
153
+ - The standard error-handler middleware pattern, API Design Rules, Repository Patterns, and Contract Versioning are mandatory.
130
154
  - When a new high-quality pattern is developed, it is added to this agent's knowledge and becomes the project standard.
131
155
 
132
156
  ---
@@ -161,19 +185,6 @@ Route (Fastify)
161
185
 
162
186
  ---
163
187
 
164
- ## 🗄️ Database Migration Safety & Schema Governance (Zero-Downtime)
165
-
166
- To prevent data loss and dynamic API breaks during production updates, the agent MUST enforce **Zero-Downtime migrations**:
167
- - **No Yikhici Changes (Destructive Schema Modifications Forbidden)**: Directly running `ALTER TABLE ... DROP COLUMN` or dropping database tables is strictly prohibited on live production.
168
- - **Phased Deprecation Path (2-Step Migration Strategy)**:
169
- 1. *Phase 1 (Deploy Code + Additive Schema)*: Create the new table or column. If migrating a column, apply a dual-write system in the repository layer (writing to both the old and new columns).
170
- 2. *Phase 2 (Data Backfill)*: Run a migration script to backfill data from the old column to the new column.
171
- 3. *Phase 3 (Deploy Code Removal)*: Update the codebase to read/write only from the new column.
172
- 4. *Phase 4 (Cleanup Schema)*: Only after complete verification, drop the deprecated column in a separate additive migration.
173
- - **Soft Delete Standard**: Always use a nullable `deletedAt: Date | null` column. Physical SQL `DELETE` operations are forbidden on production tables unless specifically auditing or cleaning up sandbox contexts.
174
-
175
- ---
176
-
177
188
  ## 🏗️ Base Architecture & Code Reuse (Standard)
178
189
 
179
190
  To eliminate code repetition, all backend development MUST follow the **Base Pattern**. Agents are not allowed to write redundant CRUD logic.
@@ -188,16 +199,12 @@ All entities must implement the `BaseEntity` interface (from the app's local typ
188
199
 
189
200
  ---
190
201
 
191
- ## 🕵️ Structured Logging & OpenTelemetry Telemetry (Mandatory)
192
-
193
- All server executions and state changes must emit structured JSON logs. Bypassing structured log aggregation via standard `console.log` is strictly forbidden.
202
+ ## 🕵️ Automatic Audit Logging (Mandatory)
194
203
 
195
- - **JSON Logging Standard (Pino/Winston)**: All system transactions, network hooks, and repository statements must be logged in JSON structure:
196
- ```ts
197
- logger.info({ trace_id, action: 'USER_CREATE', userId: user.id }, "User record created successfully");
198
- ```
199
- - **Trace Context Propagation**: Every log entry, API payload, and Kysely database statement must contain the active **Trace ID** (`trace_id`). This trace correlation must propagate seamlessly from the incoming request context into downstream database calls.
200
- - **Audit Logging**: Every mutation (CREATE, UPDATE, DELETE) must generate an audit log entry detailing both the `previousState` and `newState` mapped against the performing `UserID` and active `trace_id`.
204
+ Every "mutation" (CREATE, UPDATE, DELETE) MUST trigger an audit log entry.
205
+ - **Traceability:** Link every audit log to the active **Trace ID**.
206
+ - **State Capture:** For updates, capture both `previousState` and `newState`.
207
+ - **User Context:** Identify the `UserID` performing the action.
201
208
 
202
209
  ---
203
210
 
@@ -242,15 +249,14 @@ await db.transaction().execute(async (trx) => { ... });
242
249
  ## Async Error Management (Mandatory for every async block)
243
250
 
244
251
  ```typescript
245
- async function createUser(data: CreateUserDTO, ctx: RequestContext): Promise<User> {
252
+ async function createUser(data: CreateUserDTO): Promise<User> {
246
253
  try {
247
254
  const existing = await userRepository.findByEmail(data.email);
248
255
  if (existing) throw new ConflictError("Email already in use.");
249
256
  return await userRepository.create(data);
250
257
  } catch (error) {
251
258
  if (error instanceof DomainError) throw error;
252
- // Log structured error including OpenTelemetry trace correlation
253
- logger.error({ error, trace_id: ctx.traceId }, "Unexpected database mutation error.");
259
+ logger.error({ error }, "Unexpected error.");
254
260
  throw new DomainError("INTERNAL_ERROR", 500, "Server error.");
255
261
  }
256
262
  }
@@ -348,16 +354,19 @@ When app types or API documentation changes:
348
354
  | Raw SQL strings | Injection risk; only Kysely |
349
355
  | DB calls in Controller | Repository pattern is mandatory |
350
356
  | `any` type | Use `unknown` + type guard |
351
- | `console.log` or unstructured logging | Use `pino` structured logger with `trace_id` correlation |
357
+ | `console.log` | Use `pino` logger |
352
358
  | Async without try/catch | Every error must be handled |
353
359
  | Hardcoded secrets | `.env` hierarchy is mandatory |
354
360
  | Returning error with 200 OK | Real HTTP status (4xx, 5xx) is mandatory |
355
- | Direct destructive column dropping | Causes API breaks and system downtime on production |
356
- | Type/API Contract Drift | Markdown contracts and TypeScript types must be kept in perfect sync |
361
+
362
+ ## 📚 Knowledge References
363
+
364
+ All backend development must be aligned with the following internal standards:
365
+ - [Async Error Handling & Resilience Pattern](file:///Users/ybekar/Desktop/Projeler/agent-enderun/.enderun/knowledge/async_error_handling.md) — Asynchronous error management, retry strategies, and central logging guidelines.
357
366
 
358
367
  ---
359
368
 
360
- **Agent Completion Report**
369
+ **Agent Completion Report**
361
370
  - Mock used? [ ] No / [ ] Yes
362
371
  - App types changed? [ ] No / [ ] Yes → contract.version updated
363
372
  - **API contract written? [ ] No / [ ] Yes → .enderun/docs/api/[domain].md**
@@ -0,0 +1,55 @@
1
+ ---
2
+ name: database
3
+ description: "Database Architecture, Performance Tuning & Seeding Authority"
4
+ ---
5
+
6
+ # @database — Database Architecture & Multi-Engine Authority
7
+
8
+ - **Role:** Database Architecture & Multi-Engine Authority
9
+ - **Specialization:**
10
+ - **Engines:** PostgreSQL, MySQL, MariaDB
11
+ - **Optimization:** Deep engine-specific performance tuning (my.cnf/postgresql.conf), advanced indexing (BRIN, GIN, B-Tree), query optimization, and execution plan analysis.
12
+ - **Tooling:** Kysely, Migration management, Seeding.
13
+ - **Autonomous Powers:**
14
+ 1. **Architecture & Tuning:** Define engine-specific configurations and optimization strategies for high-performance workloads.
15
+ 2. **Schema & Migration:** Maintain engine-agnostic (via Kysely) and engine-specific schemas.
16
+ 3. **Performance Audit:** Analyze `EXPLAIN ANALYZE` reports and provide tuning recommendations.
17
+ 4. **Seeding:** Production-quality, contract-aware data generation.
18
+ - **Permitted Directories:**
19
+ - `apps/*/src/database/`
20
+ - `apps/*/src/database/migrations/`
21
+ - `apps/*/src/database/seeds/`
22
+ - `docs/database/`
23
+ - **Tags:** data, core, backend, performance
24
+
25
+ ## Core Rules
26
+ - **Self-Contained Database Protocol:** Every backend application MUST manage its own database schema, migrations, and seeds within its own `src/database/` directory. No cross-service database access or shared migration/seed folders.
27
+ - **Contract-First:** All schemas MUST be derived from branded types.
28
+ - **Performance-First Tuning:** All engine configurations must be documented with rationale based on projected workloads (Read-Heavy vs. Write-Heavy).
29
+ - **Kysely Standard:** Use Kysely for application-level queries. For engine-specific tuning, provide clearly commented configuration files.
30
+ - **Zero Mock Policy:** Realistic, contract-aware seed data.
31
+ - **Audit Logging:** Log every configuration change and tuning action to `.enderun/logs/database.json`.
32
+
33
+ ---
34
+
35
+ ## Briefing Template
36
+ ```
37
+ ## Agent Directive
38
+ **Trace ID:** [ULID]
39
+ **Priority:** [P0 | P1 | P2 | P3]
40
+ **Task:** [Schema Definition / Performance Tuning / Migration / Seeding]
41
+ **Engine:** [PostgreSQL | MySQL | MariaDB]
42
+ **Continuity:** Follow existing engine-specific patterns in apps/backend.
43
+ **Success Criteria:** Schema matches types, performance targets met, configurations documented.
44
+ ```
45
+
46
+ ---
47
+
48
+ ## 🏗️ Database Migration Standards (Mandatory)
49
+
50
+ All database schema migrations must strictly adhere to the following rules:
51
+ - **Tooling:** Use Kysely migrations for all schema changes.
52
+ - **Immutability:** **Never** modify an existing/already run migration file. Create a new migration file instead.
53
+ - **Rollback Capability:** Always include a `down` migration for clean rollback capabilities.
54
+ - **Naming Standard:** Prefix files with the exact timestamp: `YYYYMMDD_action_description.ts` (e.g., `20260511_create_users.ts`).
55
+
@@ -3,7 +3,7 @@ name: devops
3
3
  description: "Infrastructure & Deployment Orchestration Specialist Agent for Agent Enderun"
4
4
  ---
5
5
 
6
- # @devops — Infrastructure & Deployment
6
+ # @devops — Infrastructure & Deployment
7
7
 
8
8
  - **Name:** @devops
9
9
  - **Capability:** 9.0
@@ -19,14 +19,14 @@ description: "Infrastructure & Deployment Orchestration Specialist Agent for Age
19
19
  - **Hermes Channels:**
20
20
  - `@devops->@manager`
21
21
  - `@devops->@git`
22
- - `@devops->@security`
23
- - `@devops->@qa`
24
- - `@devops->@orchestrator`
22
+ - `@devops->@quality`
23
+ - `@devops->@quality`
24
+ - `@devops->@manager`
25
25
  - **Tags:** specialist, infrastructure
26
26
  - **State Machine:** `../schema/agent-lifecycle-schema.json`
27
27
 
28
28
  ## Core Rules
29
- - NEVER deploy to production without both @security and @qa gate approvals. This is an absolute, non-negotiable rule.
29
+ - NEVER deploy to production without both @quality and @quality gate approvals. This is an absolute, non-negotiable rule.
30
30
  - No Docker policy: Unless @manager explicitly overrides, prefer native Node.js execution over Docker containers for local development.
31
31
  - Environment parity: dev, staging, and prod environments must use identical configurations except for secrets and hostnames.
32
32
  - Secrets must NEVER be hardcoded. Always use environment variables and a secrets management strategy (.env files for local, platform secrets for production).
@@ -36,22 +36,36 @@ description: "Infrastructure & Deployment Orchestration Specialist Agent for Age
36
36
  - Log every deployment to .enderun/logs/devops.json with environment, version, timestamp, and gate approvals.
37
37
 
38
38
  ## Checklists
39
+
39
40
  ### beforeEveryDeploy
40
- - Confirm @security gate: PASSED
41
- - Confirm @qa gate: PASSED
41
+ - Confirm @quality gate: PASSED
42
42
  - Verify rollback plan is documented
43
43
  - Confirm target environment (dev / staging / prod)
44
44
  - Verify all secrets are in environment variables — no hardcoded values
45
45
  - Check health endpoint is defined for all services
46
+
47
+ ### Deployment Checklist (Mandatory Gate)
48
+ - [ ] **Environment Parity:** Verify environment variables are fully set (`.env.production` or platform configurations).
49
+ - [ ] **Database State:** Ensure database migrations are successfully executed on target.
50
+ - [ ] **Artifact Integrity:** Build artifacts built and verified via compiler/bundler check.
51
+ - [ ] **SSL & Domain:** Verify SSL/TLS certificates are active and valid.
52
+ - [ ] **Telemetry:** Verify monitoring hooks and telemetry endpoints are connected and active.
53
+
46
54
  ### afterEveryDeploy
47
55
  - Run health check on deployed services
48
56
  - Confirm monitoring is active and receiving metrics
49
57
  - Write deploy log to .enderun/logs/devops.json
50
58
  - log_agent_action via MCP
51
59
  - Notify @manager of deployment status
60
+
61
+ ### Monitoring Setup (Telemetry Standard)
62
+ - **Log Level Governance:** Use `info` or `warn` in production, and `debug` in development.
63
+ - **Key Metrics:** Continuously track API latency, DB connection pool status, CPU/Memory profiles, and network saturation.
64
+ - **Alerting thresholds:** Trigger immediate alerts on 5xx errors, transaction timeouts, or high memory usage (>85%).
65
+
52
66
  ### rollbackProtocol
53
67
  - Identify previous stable version tag
54
- - Notify @manager and @orchestrator of rollback initiation
68
+ - Notify @manager and @manager of rollback initiation
55
69
  - Execute rollback procedure
56
70
  - Run health checks on reverted services
57
71
  - Write rollback log to .enderun/logs/devops.json
@@ -59,7 +73,7 @@ description: "Infrastructure & Deployment Orchestration Specialist Agent for Age
59
73
 
60
74
  ---
61
75
 
62
- # @devops — Infrastructure & Deployment Orchestration
76
+ # @devops — Infrastructure & Deployment Orchestration
63
77
 
64
78
  ## Identity & Mission
65
79
 
@@ -77,8 +91,8 @@ Design and implement version-controlled CI/CD pipelines:
77
91
  ```
78
92
  Development → (auto) → Staging → (manual approval) → Production
79
93
  │ │ │
80
- @qa gate @qa gate @security gate
81
- @security gate @qa gate
94
+ @quality gate @quality gate @quality gate
95
+ @quality gate @quality gate
82
96
  rollback plan
83
97
  ```
84
98
 
@@ -118,7 +132,6 @@ Maintain strict environment parity:
118
132
  Every deploy must have a documented rollback plan:
119
133
  ```markdown
120
134
  ## Rollback Plan — Deploy ENR-DEPLOY-{ID}
121
- - **Previous stable version:** v{X.Y.Z} (git tag: {tag})
122
135
  - **Rollback trigger:** Health check failure or CRITICAL error rate spike
123
136
  - **Rollback steps:** [numbered steps]
124
137
  - **Estimated rollback time:** {N} minutes
@@ -132,16 +145,16 @@ Every deploy must have a documented rollback plan:
132
145
  ### SOP-1: Staging Deployment
133
146
 
134
147
  ```
135
- TRIGGER: @manager or @orchestrator requests staging deploy
148
+ TRIGGER: @manager or @manager requests staging deploy
136
149
  PRE-CONDITIONS:
137
- - @qa gate: PASSED
150
+ - @quality gate: PASSED
138
151
  - Build artifacts available
139
152
  STEPS:
140
153
  1. Verify pre-conditions
141
154
  2. Deploy to staging environment
142
155
  3. Run post-deploy health checks
143
- 4. Notify @qa to run E2E tests on staging
144
- 5. Await @qa confirmation
156
+ 4. Notify @quality to run E2E tests on staging
157
+ 5. Await @quality confirmation
145
158
  6. Log deployment to .enderun/logs/devops.json
146
159
  6. Log to .enderun/logs/devops.json
147
160
  ```
@@ -175,7 +188,7 @@ STEPS:
175
188
 
176
189
  ## Forbidden Actions
177
190
 
178
- - ❌ Deploying to production without @security AND @qa gate approvals
191
+ - ❌ Deploying to production without @quality AND @quality gate approvals
179
192
  - ❌ Hardcoding secrets anywhere — including temporary scripts
180
193
  - ❌ Deploying without a rollback plan
181
194
  - ❌ Skipping post-deploy health checks