agent-enderun 0.6.1 → 0.6.6

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 (89) hide show
  1. package/.enderun/BRAIN_DASHBOARD.md +12 -12
  2. package/.enderun/PROJECT_MEMORY.md +17 -17
  3. package/.enderun/STATUS.md +11 -11
  4. package/.enderun/agents/README.md +40 -0
  5. package/.enderun/agents/analyst.md +238 -31
  6. package/.enderun/agents/backend.md +428 -18
  7. package/.enderun/agents/explorer.md +169 -31
  8. package/.enderun/agents/frontend.md +604 -76
  9. package/.enderun/agents/git.md +153 -62
  10. package/.enderun/agents/manager.md +433 -46
  11. package/.enderun/agents/mobile.md +143 -29
  12. package/.enderun/agents/native.md +191 -28
  13. package/.enderun/blueprints/README.md +82 -0
  14. package/.enderun/blueprints/backend/errors/config/meta.json +11 -0
  15. package/.enderun/blueprints/backend/errors/domain-error.ts +34 -55
  16. package/.enderun/docs/README.md +50 -0
  17. package/.enderun/docs/phase1-reference-app-execution-plan.md +177 -0
  18. package/.enderun/docs/structure-audit-2026-05-24.md +72 -0
  19. package/.enderun/knowledge/README.md +22 -0
  20. package/.enderun/knowledge/database_governance_guidelines.md +118 -0
  21. package/.enderun/knowledge/deployment_checklist.md +132 -6
  22. package/.enderun/knowledge/documentation_ownership.md +122 -0
  23. package/.enderun/knowledge/documentation_ownership_status.md +122 -0
  24. package/.enderun/knowledge/enterprise_capabilities_reference.md +149 -0
  25. package/.enderun/knowledge/enterprise_frontend_adaptation.md +232 -0
  26. package/.enderun/knowledge/enterprise_project_adaptation.md +168 -0
  27. package/.enderun/knowledge/framework_vs_user_project_boundary.md +52 -0
  28. package/.enderun/knowledge/frontend_professionalization_guidelines.md +111 -0
  29. package/.enderun/knowledge/frontend_real_battle_test_protocol.md +162 -0
  30. package/.enderun/knowledge/hermes_live_test_guidelines.md +90 -0
  31. package/.enderun/knowledge/manager_authority_audit_enforcement.md +104 -0
  32. package/.enderun/knowledge/project_scaffold_guidelines.md +99 -0
  33. package/.enderun/knowledge/reference_application_guidelines.md +90 -0
  34. package/ENDERUN.md +19 -5
  35. package/README.md +132 -657
  36. package/antigravity.md +15 -0
  37. package/bin/cli.js +92 -27
  38. package/bin/hermes-sandbox.js +136 -0
  39. package/docs/README.md +33 -3
  40. package/docs/action-plan-2026.md +119 -0
  41. package/docs/getting-started.md +271 -0
  42. package/docs/roadmap.md +142 -0
  43. package/framework-mcp/README.md +1 -1
  44. package/framework-mcp/dist/index.js +0 -0
  45. package/framework-mcp/dist/schemas.js +6 -0
  46. package/framework-mcp/dist/tools/academy.js +6 -8
  47. package/framework-mcp/dist/tools/codebase.js +6 -6
  48. package/framework-mcp/dist/tools/contract.js +94 -4
  49. package/framework-mcp/dist/tools/database.js +8 -3
  50. package/framework-mcp/dist/tools/framework.js +7 -11
  51. package/framework-mcp/dist/tools/git.js +2 -2
  52. package/framework-mcp/dist/tools/knowledge.js +5 -5
  53. package/framework-mcp/dist/tools/memory.js +5 -7
  54. package/framework-mcp/dist/tools/messages.js +76 -16
  55. package/framework-mcp/dist/tools/repository.js +4 -4
  56. package/framework-mcp/dist/tools/scaffold.js +6 -3
  57. package/framework-mcp/dist/tools/security.js +4 -4
  58. package/framework-mcp/dist/utils.js +2 -2
  59. package/framework-mcp/package.json +1 -1
  60. package/framework-mcp/src/schemas.ts +7 -0
  61. package/framework-mcp/src/tools/academy.ts +5 -9
  62. package/framework-mcp/src/tools/codebase.ts +6 -6
  63. package/framework-mcp/src/tools/contract.ts +114 -4
  64. package/framework-mcp/src/tools/database.ts +8 -3
  65. package/framework-mcp/src/tools/framework.ts +8 -11
  66. package/framework-mcp/src/tools/git.ts +2 -2
  67. package/framework-mcp/src/tools/knowledge.ts +6 -7
  68. package/framework-mcp/src/tools/memory.ts +5 -6
  69. package/framework-mcp/src/tools/messages.ts +94 -28
  70. package/framework-mcp/src/tools/repository.ts +5 -6
  71. package/framework-mcp/src/tools/scaffold.ts +9 -6
  72. package/framework-mcp/src/tools/security.ts +4 -4
  73. package/framework-mcp/src/utils.ts +19 -2
  74. package/framework-mcp/tsconfig.json +1 -1
  75. package/gemini.md +4 -4
  76. package/package.json +11 -7
  77. package/panda.config.ts +3 -1
  78. package/.enderun/benchmarks/.gitkeep +0 -0
  79. package/.enderun/blueprints/backend/middleware/error-handler.ts +0 -24
  80. package/.enderun/blueprints/backend/types/api.ts +0 -20
  81. package/.enderun/blueprints/backend/types/brands.ts +0 -12
  82. package/.enderun/blueprints/backend/types/constants.ts +0 -34
  83. package/.enderun/blueprints/backend/types/index.ts +0 -49
  84. package/.enderun/blueprints/backend/types/logs.ts +0 -16
  85. package/.enderun/blueprints/backend/types/models.ts +0 -65
  86. package/.enderun/blueprints/frontend/ui/Button.tsx +0 -60
  87. package/.enderun/blueprints/frontend/ui/Input.tsx +0 -43
  88. package/.enderun/monitoring/.gitkeep +0 -0
  89. package/gemini-extension.json +0 -13
package/README.md CHANGED
@@ -1,7 +1,9 @@
1
- # 🏛️ Agent Enderun (v0.6.1) — The Supreme AI Governance Framework
1
+ # 🏛️ Agent Enderun (v0.6.6) — The Supreme AI Governance & Orchestration Framework
2
2
 
3
3
  **The Supreme AI Governance & Orchestration Framework for Enterprise Development**
4
4
 
5
+ **Author:** Yusuf BEKAR
6
+
5
7
  [English](#english) | [Türkçe](#türkçe)
6
8
 
7
9
  ---
@@ -10,757 +12,230 @@
10
12
 
11
13
  ## Executive Summary
12
14
 
13
- Agent Enderun, yazılım ekipleri için tasarlanmış, **Anayasal Yönetişim (Constitutional Governance)** ve **Çoklu Ajan Orkestrasyonu (Multi-Agent Orchestration)** sağlayan kurumsal düzeyde bir framework'tür.
14
-
15
- ### 🚀 v0.5.9: Adaptive Discovery & Token Economy Protocol
16
-
17
- - **Architecture Discovery Protocol (ADP):** Seamlessly ingest and adapt to existing (legacy) projects without rigid directory requirements.
18
- - **Token Economy & Context Management:** Advanced rules to optimize AI context usage, reducing token costs by up to 40%.
19
- - **Choice-Based Scaffolding:** Empowering users with consent-driven project setup and architectural blueprints.
20
- - **Modular MCP Ecosystem:** 30+ enterprise-grade intelligence tools for AST-based analysis and security.
21
- - **Zero Temporary Storage:** All task logs, plans, and state are strictly saved in persistent workspace directories; OS temp directories are completely forbidden.
22
- - **Session Memory Recovery:** Non-negotiable automatic first-turn state restoration and role initialization across all adapters.
15
+ **Agent Enderun** is a production-grade constitutional governance and multi-agent orchestration framework designed for engineering teams that need to use AI assistants at scale while maintaining control, traceability, auditability, and professional discipline.
23
16
 
24
- ### 🚀 v0.5.3: Zero-Config & Auto-Wiring
25
- - **Auto-Wiring:** CLI automatically configures `gemini-extension.json` for MCP.
26
- - **Automated Build:** Framework now compiles itself during initialization.
27
- - **Smart Directory Logic:** Enhanced separation between framework and project docs.
17
+ Most AI coding tools optimize for speed and generation volume. Agent Enderun optimizes for **risk-aware, auditable, and continuously improving software development processes**. It converts chaotic AI output into structured, enterprise-ready work through mandatory rules, specialized agents, persistent memory, and a living risk management system.
28
18
 
29
- ### 🚀 v0.5.1: The Academy & Hermes Upgrade
19
+ ### v0.6.6 Strategic Focus (May 2026)
30
20
 
31
- Bu sürümle birlikte Agent Enderun, basit bir yönetişim aracından otonom bir **Ajan Akademisi**'ne dönüşmüştür:
21
+ This release focuses on **professionalization and language standardization**:
32
22
 
33
- - **📡 Hermes Messaging Protocol:** Ajanlar arası kategorize edilmiş (Action/Delegation/Info) ve önceliklendirilmiş iletişim bus'ı.
34
- - **📚 Obsidian-Style LLM Wiki:** YAML metadata destekli, ilişkisel ve graf tabanlı teknik bilgi bankası yönetimi.
35
- - **🛡️ Contract-First Automation:** API ve tip kontratlarının SHA-256 ile otomatik doğrulanması.
36
- - **🤖 MCP Intelligence:** Bilgi grafiği üretme, inbox istatistikleri ve anlık sistem sağlığı denetimi sağlayan gelişmiş MCP araçları.
23
+ - Full conversion of the framework to English as the primary language (all agent prompts, knowledge base, and internal documentation).
24
+ - Honest technical debt and governance gap assessment completed.
25
+ - Foundation laid for build health, test coverage, and empirical validation of governance rules.
37
26
 
38
- Agent Enderun is a **production-grade AI governance framework** designed for engineering teams that must maintain control, traceability, and discipline when using AI assistants for code generation. It transforms chaotic AI output into structured, auditable, enterprise-ready deliverables through:
39
-
40
- - **Agent-Led Orchestration**: 8 specialized AI agent roles with defined responsibilities
41
- - **Contract-First Development**: Shared TypeScript types as the single source of truth
42
- - **Phase-Based Execution**: Strict workflow progression (PHASE_0 → PHASE_4)
43
- - **Enterprise Auditability**: Every decision, action, and commit is logged and traceable
44
- - **Modular MCP Intelligence**: 40+ tools across 12 categories for code analysis, security, and automation
27
+ > **📋 Full Risk Tracking Dashboard & Roadmap**
28
+ > See the live status of all active risks: [docs/roadmap.md](docs/roadmap.md)
45
29
 
46
30
  ---
47
31
 
48
- ## 5-Minute Quick Start
49
-
50
- ### Prerequisites
51
- - **Node.js**: 20+ (LTS recommended)
52
- - **npm**: 9+
53
- - **Git**: Initialized in your project root
54
- - **Any AI Adapter**: Gemini, Claude, Cursor, or Codex (optional but recommended)
55
-
56
- ### Installation Steps
32
+ ## 🎯 Core Philosophy
57
33
 
58
- #### Step 1: Clone or Initialize
59
- ```bash
60
- # Option A: Clone this framework repository
61
- git clone https://github.com/ybekar/agent-enderun.git
62
- cd agent-enderun
63
-
64
- # Option B: Or use as npm package (when published)
65
- npx agent-enderun init gemini
66
- ```
34
+ Agent Enderun is built on four non-negotiable principles:
67
35
 
68
- #### Step 2: Install Dependencies
69
- ```bash
70
- npm install
71
- ```
72
-
73
- #### Step 3: Build Framework
74
- ```bash
75
- npm run enderun:build
76
- ```
77
-
78
- #### Step 4: Verify Setup
79
- ```bash
80
- agent-enderun check
81
- ```
82
-
83
- Expected output:
84
- ```
85
- ✅ Framework active (v0.5.8)
86
- ✅ MCP Server ready
87
- ✅ Shared types compiled
88
- ✅ Agent logs initialized
89
- ✅ PROJECT_MEMORY.md found
90
- ```
36
+ 1. **Single Point of Authority** — In enterprise projects, `@manager` is the only authorized entry point. No specialist agent may act without an official briefing.
37
+ 2. **Risk-First Mindset** — Every significant action is preceded by risk assessment. High-risk operations require explicit approval and full audit trails.
38
+ 3. **Continuous Agent Improvement** — All agents have maturity targets (minimum 8.0/10). “Good enough” is not accepted in critical areas.
39
+ 4. **Zero Tolerance for Bypass** — Any attempt to circumvent governance (Hermes protocol, briefings, memory discipline, high-risk controls) is treated as a serious process violation.
91
40
 
92
41
  ---
93
42
 
94
- ## 🤖 Adapter Automation Levels
43
+ ## 📊 Active Risk Tracking Dashboard (May 2026)
95
44
 
96
- Choose your AI adapter when running `init`. Each has a different automation level:
45
+ We are actively managing the following critical risks with dedicated improvement programs:
97
46
 
98
- | Adapter | Command | Automation | Notes |
99
- | :--- | :--- | :---: | :--- |
100
- | **Gemini** | `init gemini` | Full | MCP auto-wired into `gemini-extension.json`. One command, done. |
101
- | **Cursor** | `init cursor` | Full | `cursor.md` auto-synced to `.cursorrules`. One command, done. |
102
- | **Codex** | `init codex` | Full | Framework files placed in `.enderun/`. One command, done. |
103
- | **Claude** | `init claude` | ⚠️ Semi | After init, run one extra command shown in the terminal to register MCP tools. |
47
+ | Risk | Current Status | Progress | Owner |
48
+ |-----------------------------------------|---------------------------------------------|-----------------------------------|-----------|
49
+ | No Production-Grade Reference Application | Highest priority gap | Guidance + execution plan defined | @manager |
50
+ | @frontend Weakness | Component architecture & accessibility weak | 8-week Professionalization Program active | @manager |
51
+ | Hermes “Defined on Paper” | Protocol defined but not battle-tested | 4 mandatory live scenarios defined | @manager |
52
+ | Limited Real-World Usage Data | No long-term usage in real enterprise projects | 0% | @manager |
53
+ | Corporate Governance in Practice | Strong on paper, empirical proof still needed | ~85% | @manager |
104
54
 
105
- > **Claude Note:** Claude Code requires explicit user approval for MCP tools due to its security model.
106
- > After `init claude`, copy and run the `claude config add ...` command shown in the terminal output.
55
+ Each risk has a dedicated knowledge file and a clear improvement roadmap.
107
56
 
108
57
  ---
109
58
 
110
- ## 🎯 What You Can Do Right Now
111
-
112
- ### Initialize Your Project
113
- ```bash
114
- # Creates {{FRAMEWORK_DIR}}/ directory with governance files
115
- npx agent-enderun init gemini
116
- ```
117
-
118
- ### Check Project Health
119
- ```bash
120
- # Runs security audit, compliance check, and dependency analysis
121
- agent-enderun check
122
-
123
- # Just security
124
- agent-enderun check:security
125
-
126
- # Just compliance
127
- agent-enderun check:compliance
128
- ```
129
-
130
- ### View Project Status
131
- ```bash
132
- # Shows current phase, active agents, and blockers
133
- agent-enderun status
134
- ```
135
-
136
- ### Create a New Task
137
- ```bash
138
- # Creates a ULID-based trace for a new feature
139
- agent-enderun trace:new "Implement User Authentication" backend P1
140
- ```
141
-
142
- ### Verify API Contracts
143
- ```bash
144
- # Ensures shared-types and API docs are synchronized
145
- agent-enderun verify-contract
146
- ```
147
-
148
- ---
149
-
150
- ## 🏗️ Core Architecture
151
-
152
- Agent Enderun consists of **4 integrated layers**:
153
-
154
- ### Layer 1: Governance ({{FRAMEWORK_DIR}}/)
155
- ```
156
- {{FRAMEWORK_DIR}}/
157
- ├── ENDERUN.md ← The "Supreme Law" (read this first!)
158
- ├── PROJECT_MEMORY.md ← Single source of truth for state
159
- ├── STATUS.md ← Agent status dashboard
160
- ├── cli-commands.json ← CLI ownership mapping
161
- ├── agents/ ← 8 agent role definitions
162
- ├── logs/ ← Audit trail (agent.json files)
163
- ├── knowledge/ ← 16+ technical knowledge articles
164
- └── docs/api/ ← API contract specifications
165
- ```
166
-
167
- ### Layer 2: Framework Core (bin/ + framework-mcp/)
168
- ```
169
- bin/cli.js ← CLI bootstrapper
170
- framework-mcp/ ← 40+ MCP tools (13 categories) including Scaffolding
171
- ```
172
-
173
- ### Layer 3: Documentation (docs/)
174
- ```
175
- docs/
176
- ├── tech-stack.md ← Approved technology stack
177
- ├── project-docs.md ← Product requirements (template)
178
- └── [your project files] ← Your documents (agents will read these)
179
- ```
180
-
181
- ### Layer 4: Application (apps/) — YOURS
182
- ```
183
- apps/
184
- ├── backend/ ← Your backend app (create this)
185
- ├── web/ ← Your frontend app (create this)
186
- └── [other apps]/ ← Mobile, desktop, etc.
187
- ```
188
-
189
- ---
59
+ ## 🤖 Agent Maturity Program (Target: All Agents ≥ 8.0)
190
60
 
191
- ## 🎓 The Agent Academy 8 Specialized Roles
61
+ We run a structured professionalization program. Current maturity levels (May 2026):
192
62
 
193
- Each agent has a defined **Standard Operating Procedure (SOP)** and reads the constitution before every action.
63
+ | Agent | Current | Target | Priority | Status |
64
+ |--------------|---------|--------|------------|--------|
65
+ | **@manager** | 8.0 | 9.5 | High | Authority Audit & Enforcement active |
66
+ | **@backend** | 7.5 | 9.0 | High | Test culture & resilience being strengthened |
67
+ | **@frontend**| 6.5 | 9.0 | **Critical** | 8-week Professionalization Program running |
68
+ | **@analyst** | 6.5 | 8.5 | Medium | Governance audit capability improving |
69
+ | **@explorer**| 6.5 | 8.5 | Medium | Enterprise Discovery Protocol enforced |
70
+ | **@git** | 6.0 | 8.0 | Medium | High-risk commit control + workflows added |
71
+ | **@mobile** | 2.0 | 8.0 | Low (future) | Dormant (Baseline SOP added) |
72
+ | **@native** | 2.0 | 8.0 | Low (future) | Dormant (Baseline SOP added) |
194
73
 
195
- | Agent | Specialty | What They Do |
196
- |---|---|---|
197
- | **@manager** | Orchestration | Runs the phase machine, creates trace IDs, delegates tasks, updates PROJECT_MEMORY |
198
- | **@analyst** | Quality Control | Security audits, compliance checks, documentation debt, code review |
199
- | **@backend** | Data Architecture | Database schema, API contracts, shared-types integrity, Kysely standards |
200
- | **@frontend** | UI Development | React components, Panda CSS styling, Zero-UI Library enforcement, responsive design |
201
- | **@explorer** | Code Intelligence | Dependency graphs, complexity analysis, dead code detection, legacy code mapping |
202
- | **@git** | Repository Master | Semantic commits, branch management, conflict resolution, merge strategies |
203
- | **@mobile** | Mobile Apps | React Native, Expo, iOS/Android specifics, performance optimization |
204
- | **@native** | Native Apps | Tauri, Electron, native performance, IPC protocols, system integration |
74
+ Full weekly plans are maintained in the Risk Tracking Dashboard.
205
75
 
206
76
  ---
207
77
 
208
- ## 🛠️ MCP Tools Reference
78
+ ## 🛡️ Key Governance Innovations (v0.6.6)
209
79
 
210
- The framework provides **40+ tools** organized in 12 categories. Agents use these automatically.
80
+ ### 1. Manager Authority Audit & Enforcement
81
+ Formal system requiring `@manager` to regularly audit its own control over all agents and enforce violations through a defined escalation ladder.
211
82
 
212
- ### Framework Tools
213
- - `get_framework_status` Check framework health
214
- - `get_project_gaps` — Identify missing files/structure
215
- - `get_memory_insights` — Analyze PROJECT_MEMORY
216
- - `bootstrap_legacy_memory` — Auto-detect existing projects
83
+ ### 2. Hermes Live Test Program
84
+ Four mandatory real-world scenarios to move the Hermes protocol from “defined on paper” to “proven in practice”.
217
85
 
218
- ### Codebase Tools
219
- - `search_codebase` Find code patterns
220
- - `analyze_dependencies` — Map imports/exports
221
- - `analyze_codebase_intelligence` — Find complexity & dead code
222
- - `generate_dependency_graph` — Mermaid diagrams
86
+ ### 3. @frontend Professionalization Program
87
+ Eight-week intensive program covering component architecture (slots, composition), WCAG 2.2 AA accessibility, performance engineering, testing discipline, and high-risk admin + Hermes integration.
223
88
 
224
- ### Security & Compliance
225
- - `security_audit_scan` Check for secrets, SQL injection, console.log
226
- - `analyze_constitution_compliance` — Enforce ENDERUN.md rules
89
+ ### 4. Corporate CRUD & Administrative Governance
90
+ All high-risk operations (user/permission management, bulk deletion, system configuration, audit access, etc.) now require explicit `@manager` briefing, a `managerApproval` object, and complete before/after audit logging.
227
91
 
228
- ### Contract Management
229
- - `verify_api_contract` Hash verification
230
- - `verify_contract_integrity` — Type synchronization
231
- - `update_contract_hash` — Sync shared-types
232
-
233
- ### Git & Commits
234
- - `generate_semantic_commit_message` — Auto-generate commit messages
235
-
236
- ### Academy Intelligence
237
- - `get_academy_performance` — Agent success rates
238
- - `generate_strategic_briefing` — High-level reports
239
- - `log_agent_action` — Structured logging
240
-
241
- ### Repository Health
242
- - `validate_repository_health` — Run lint/test/build
243
- - `analyze_documentation_debt` — Find missing JSDoc/READMEs
244
-
245
- ### Agent Collaboration
246
- - `send_agent_message` — Inter-agent communication
247
- - `read_agent_messages` — Check agent inbox
248
-
249
- ### Database & Knowledge
250
- - `analyze_database_schema` — Extract ER diagrams
251
- - `search_knowledge_base` — Find technical guides
252
- - `update_knowledge_base` — Add knowledge entries
92
+ ### 5. English-First Standardization (v0.6.6)
93
+ The entire framework (agent prompts, knowledge base, internal documentation, and core files) has been converted to professional English. Bilingual support is retained only for top-level user-facing documents.
253
94
 
254
95
  ---
255
96
 
256
- ## 📖 How Agents Read Your Project
97
+ ## 🏗️ Architecture Overview
257
98
 
258
- When you add documentation to `docs/`, agents automatically discover and use it:
99
+ Agent Enderun is built on four layers:
259
100
 
260
- ```
261
- docs/
262
- ├── project-docs.md ← Agents read here for requirements
263
- ├── tech-stack.md ← Technology decisions
264
- ├── design-system.md ← (optional) UI patterns
265
- ├── api-guide.md ← (optional) API examples
266
- └── architecture.md ← (optional) System design
267
- ```
268
-
269
- Agents use the `search_knowledge_base` tool to find answers to common questions.
101
+ - **Governance Layer** (`{{FRAMEWORK_DIR}}/`) — Constitution (ENDERUN.md), persistent memory (PROJECT_MEMORY.md), agent definitions, knowledge base, logs
102
+ - **Intelligence Layer** (`framework-mcp/`) — 40+ MCP tools for analysis, scaffolding, contract verification, and inter-agent communication
103
+ - **CLI Layer** (`bin/`) Project initialization and adapter automation
104
+ - **Application Layer** (`apps/`) — Where user applications live (reference application development paused in favor of agent capability hardening — Decision D004)
270
105
 
271
106
  ---
272
107
 
273
- ## Complete Installation Checklist
274
-
275
- - [ ] **Node.js 20+** installed (`node --version`)
276
- - [ ] **npm 9+** installed (`npm --version`)
277
- - [ ] **Git** initialized (`git init`)
278
- - [ ] **Framework installed** (`npm install && npm run enderun:build`)
279
- - [ ] **Health check passed** (`agent-enderun check` shows ✅)
280
- - [ ] **First task created** (`agent-enderun trace:new "Your task" backend P1`)
281
- - [ ] **Docs created** (add files to `docs/` for agents to read)
282
- - [ ] **MCP connected** (agents can now use tools)
283
-
284
- ---
285
-
286
- ## 🚀 First Real Task
287
-
288
- Once everything is installed, try this:
108
+ ## Quick Start
289
109
 
290
110
  ```bash
291
- # Step 1: Create a real project requirement
292
- echo "# User Authentication
293
-
294
- Implement JWT-based authentication with refresh tokens.
295
- - Email/password login
296
- - Logout endpoint
297
- - Token refresh mechanism
298
- " > docs/requirements.md
299
-
300
- # Step 2: Create a task
301
- agent-enderun trace:new "Implement Auth Module" backend P1
302
-
303
- # Step 3: Agents read requirements and build
304
- # (They will automatically read docs/requirements.md)
305
- ```
306
-
307
- ---
308
-
309
- ## 📁 Project Structure
310
-
311
- ```
312
- agent-enderun/
313
- ├── README.md ← This file
314
- ├── package.json ← Root npm config
315
- ├── bin/
316
- │ └── cli.js ← CLI entry point
317
- ├── docs/ ← Your project docs (agents read these)
318
- ├── framework-mcp/ ← MCP server (40+ tools)
319
- │ └── src/tools/
320
- │ ├── scaffold.ts ← Blueprint construction
321
- │ ├── academy.ts
322
- │ ├── codebase.ts
323
- │ └── [10 more...]
324
- ├── apps/ ← Your applications (start here)
325
- │ ├── backend/
326
- │ │ ├── src/types/ ← App-local contract types
327
- │ │ └── contract.version.json ← SHA-256 integrity hash
328
- │ └── web/
329
- │ └── src/types/ ← Frontend mirrors of backend types
330
- └── {{FRAMEWORK_DIR}}/ ← Framework governance
331
- ├── ENDERUN.md ← Constitution (MANDATORY READ)
332
- ├── PROJECT_MEMORY.md ← State machine
333
- ├── STATUS.md ← Agent dashboard
334
- ├── cli-commands.json ← Command ownership
335
- ├── config.json ← Configuration
336
- ├── agents/ ← 8 agent role docs
337
- │ ├── manager.md
338
- │ ├── analyst.md
339
- │ ├── backend.md
340
- │ ├── frontend.md
341
- │ ├── explorer.md
342
- │ ├── git.md
343
- │ ├── mobile.md
344
- │ └── native.md
345
- ├── logs/ ← Audit trail
346
- │ ├── manager.json
347
- │ ├── backend.json
348
- │ ├── frontend.json
349
- │ ├── analyst.json
350
- │ ├── explorer.json
351
- │ ├── git.json
352
- │ ├── mobile.json
353
- │ └── native.json
354
- ├── knowledge/ ← 16+ technical guides
355
- │ ├── branded_types_pattern.md
356
- │ ├── async_error_handling.md
357
- │ ├── security_scanning.md
358
- │ ├── contract_versioning.md
359
- │ ├── git_commit_strategy.md
360
- │ ├── testing_standards.md
361
- │ └── [12 more...]
362
- ├── messages/ ← Inter-agent communication
363
- └── docs/
364
- ├── api/ ← API contracts
365
- │ ├── auth.md
366
- │ ├── errors.md
367
- │ └── README.md
368
- └── [other docs]
369
- ```
370
-
371
- ---
372
-
373
- ## 💡 Frequently Asked Questions
374
-
375
- ### Q: What does "contract-first" mean?
376
- **A:** All API shapes and domain models are defined in `packages/shared-types/src/index.ts` **before** any code is written. Frontend and backend must both use these types, ensuring perfect alignment.
377
-
378
- ### Q: Do agents actually understand all this?
379
- **A:** Yes. Before every action, agents read:
380
- 1. `ENDERUN.md` (the constitution)
381
- 2. `{{FRAMEWORK_DIR}}/PROJECT_MEMORY.md` (project state)
382
- 3. `docs/` files (your requirements)
383
- 4. `{{FRAMEWORK_DIR}}/knowledge/` (technical guidelines)
111
+ # 1. Initialize the framework (creates .enderun/ structure)
112
+ npx agent-enderun init
384
113
 
385
- ### Q: What if I don't use an AI adapter?
386
- **A:** The framework still works as a **collaborative development platform**. You and your team use it to enforce:
387
- - Phase progression
388
- - Audit logging
389
- - Shared type discipline
390
- - API contract verification
391
-
392
- ### Q: Can I extend the MCP tools?
393
- **A:** Yes. Add new tool files in `packages/framework-mcp/src/tools/`, define the schema, and export the handler. The CLI will automatically discover them.
394
-
395
- ### Q: How do I add my own agents?
396
- **A:** Create a markdown file in `{{FRAMEWORK_DIR}}/agents/your-agent.md`, define the SOP, and add a CLI mapping in `{{FRAMEWORK_DIR}}/cli-commands.json`.
397
-
398
- ### Q: Is this production-ready?
399
- **A:** The **framework** is production-ready. Individual features (like `apps/`) depend on what you build. Start with `apps/backend` or `apps/web`.
400
-
401
- ---
402
-
403
- ## 🔗 Key Files to Read First
404
-
405
- 1. **`{{FRAMEWORK_DIR}}/ENDERUN.md`** — The constitution (rules all agents must follow)
406
- 2. **`{{FRAMEWORK_DIR}}/PROJECT_MEMORY.md`** — Current project state and history
407
- 3. **`docs/tech-stack.md`** — Technology decisions
408
- 4. **`packages/shared-types/src/index.ts`** — The contract (types)
409
- 5. **`README.md`** (this file) — How to use the framework
410
-
411
- ---
412
-
413
- ## 📞 Support & Contribution
414
-
415
- ### Report Issues
416
- File issues with clear reproduction steps and framework version.
417
-
418
- ### Contribute
419
- 1. Read `{{FRAMEWORK_DIR}}/ENDERUN.md`
420
- 2. Follow the agent role guidelines
421
- 3. Submit PRs with semantic commit messages
422
- 4. Ensure tests pass: `npm run enderun:build`
423
-
424
- ### License
425
- MIT © 2026 Yusuf BEKAR
426
-
427
- ---
428
-
429
- # Türkçe
430
-
431
- ## Genel Özet
432
-
433
- Agent Enderun, **kurumsal-grade bir yapay zeka yönetim çerçevesidir** ve yapay zeka asistanlarını kontrol altında tutmanız, izlenebilir olmasını sağlamanız ve disiplinli kod üretimini garantilamanız için tasarlanmıştır.
434
-
435
- - **Ajan Orkestrasyonu**: 8 uzmanlaşmış yapay zeka rolü
436
- - **Sözleşme-İlk Geliştirme**: Paylaşılan TypeScript türleri
437
- - **Faz Tabanlı Yürütme**: Sıkı iş akışı (PHASE_0 → PHASE_4)
438
- - **Kurumsal Denetim**: Her karar, işlem ve commit kaydedilir
439
- - **Modüler MCP Zekası**: 40+ araç, 12 kategori
440
-
441
- ---
442
-
443
- ## ⚡ 5 Dakikalık Hızlı Başlangıç
444
-
445
- ### Gereksinimler
446
- - **Node.js**: 20+ (LTS önerilir)
447
- - **npm**: 9+
448
- - **Git**: Proje kökünde başlatılmış
449
- - **AI Adaptörü** (opsiyonel): Gemini, Claude, Cursor veya Codex
450
-
451
- ### Kurulum Adımları
452
-
453
- #### Adım 1: Clone veya İnit
454
- ```bash
455
- # Seçenek A: Framework repository'sini klonla
456
- git clone https://github.com/ybekar/agent-enderun.git
457
- cd agent-enderun
458
-
459
- # Seçenek B: veya npm paketi olarak kullan
460
- npx agent-enderun init gemini
461
- ```
462
-
463
- #### Adım 2: Bağımlılıkları Yükle
464
- ```bash
114
+ # 2. Install dependencies
465
115
  npm install
466
- ```
467
116
 
468
- #### Adım 3: Framework'ü Derle
469
- ```bash
117
+ # 3. Build the framework
470
118
  npm run enderun:build
471
- ```
472
-
473
- #### Adım 4: Kurulumu Doğrula
474
- ```bash
475
- agent-enderun check
476
- ```
477
-
478
- Beklenen çıktı:
479
- ```
480
- ✅ Framework aktif (v0.5.8)
481
- ✅ MCP Sunucu hazır
482
- ✅ Paylaşılan türler derlenmiş
483
- ✅ Agent logları başlatılmış
484
- ✅ PROJECT_MEMORY.md bulundu
485
- ```
486
-
487
- ---
488
119
 
489
- ## 🎯 Şu Anda Yapabileceğiniz İşler
490
-
491
- ### Projeyi Başlat
492
- ```bash
493
- npx agent-enderun init gemini
120
+ # 4. Verify installation
121
+ npx agent-enderun check
494
122
  ```
495
123
 
496
- ### Sağlık Durumunu Kontrol Et
497
- ```bash
498
- agent-enderun check # Tam kontrol
499
- agent-enderun check:security # Sadece güvenlik
500
- agent-enderun check:compliance # Sadece uyum
501
- ```
124
+ **Custom Adapter Option:**
125
+ You can also initialize with a specific AI assistant/editor adapter:
126
+ `npx agent-enderun init [antigravity | claude | cursor | codex | gemini]`
502
127
 
503
- ### Proje Durumunu Görüntüle
504
- ```bash
505
- agent-enderun status
506
- ```
507
-
508
- ### Yeni Görev Oluştur
509
- ```bash
510
- agent-enderun trace:new "Kullanıcı Doğrulama Uygulaması" backend P1
511
- ```
512
-
513
- ### API Kontratlarını Doğrula
514
- ```bash
515
- agent-enderun verify-contract
516
- ```
128
+ For the complete step-by-step guide, see: [docs/getting-started.md](docs/getting-started.md)
517
129
 
518
130
  ---
519
131
 
520
- ## 🤖 Adaptör Otomasyon Seviyeleri
521
-
522
- `init` komutunu çalıştırırken adaptörünüzü seçin. Her adaptörün otomasyon seviyesi farklıdır:
523
-
524
- | Adaptör | Komut | Otomasyon | Not |
525
- | :--- | :--- | :---: | :--- |
526
- | **Gemini** | `init gemini` | ✅ Tam | MCP `gemini-extension.json`'a otomatik yazılır. Tek komut, bitti. |
527
- | **Cursor** | `init cursor` | ✅ Tam | `cursor.md` otomatik olarak `.cursorrules`'a kopyalanır. Tek komut, bitti. |
528
- | **Codex** | `init codex` | ✅ Tam | Framework dosyaları `.enderun/` dizinine yerleştirilir. Tek komut, bitti. |
529
- | **Claude** | `init claude` | ⚠️ Yarı | Init sonrası terminalde gösterilen `claude config add ...` komutunu çalıştırmanız gerekir. |
530
-
531
- > **Claude Notu:** Claude Code, güvenlik modeli gereği MCP araçlarının kullanıcı tarafından açıkça onaylanmasını zorunlu kılar.
532
- > `init claude` sonrası terminal çıktısındaki `claude config add ...` komutunu kopyalayıp çalıştırın.
533
-
534
- ---
535
-
536
- ## 🏗️ Temel Mimari
537
-
538
- Agent Enderun **4 entegre katmandan** oluşur:
132
+ ## 🧠 Current Honest Status (May 2026)
539
133
 
540
- ### Katman 1: Yönetişim ({{FRAMEWORK_DIR}}/)
541
- - `ENDERUN.md` Anayasa (bunu ilk oku!)
542
- - `PROJECT_MEMORY.md` Proje durumu
543
- - `agents/` 8 ajan rolü tanımları
544
- - `logs/` Denetim kaydı
545
- - `knowledge/` 16+ teknik rehberi
546
- - `docs/api/` API sözleşmeleri
134
+ **Strong Areas:**
135
+ - Constitutional governance and mandatory rules
136
+ - Risk management and agent professionalization system
137
+ - Hermes protocol technical foundation + stateful messaging
138
+ - Backend patterns and contract-first discipline
139
+ - Memory discipline and audit logging
140
+ - Advanced enterprise adaptation guidelines (D004)
547
141
 
548
- ### Katman 2: Framework Çekirdeği
549
- - `packages/framework-mcp/` 40+ MCP aracı
550
- - `packages/shared-types/` Paylaşılan türler (sözleşme)
551
- - `bin/cli.js` CLI başlatıcısı
552
-
553
- ### Katman 3: Dokümantasyon
554
- - `docs/tech-stack.md` Teknoloji kararları
555
- - `docs/project-docs.md` — Ürün gereksinimleri
556
- - Ajanlar bu dosyaları okurlar
557
-
558
- ### Katman 4: Uygulamalarınız
559
- - `apps/backend/` — Backend uygulaması (siz oluşturun)
560
- - `apps/web/` — Frontend uyguması (siz oluşturun)
561
-
562
- ---
563
-
564
- ## 🎓 Ajan Akademisi — 8 Uzman Rol
565
-
566
- | Ajan | Uzmanlık | Görev |
567
- |---|---|---|
568
- | **@manager** | Orkestrasyoun | Faz yönetimi, trace ID, görev delegasyonu |
569
- | **@analyst** | Kalite Kontrol | Güvenlik denetimi, uyum kontrolü, kod incelemesi |
570
- | **@backend** | Veri Mimarisi | Veritabanı, API kontratları, Kysely standartları |
571
- | **@frontend** | UI Geliştirme | React, Panda CSS, bileşen tasarımı |
572
- | **@explorer** | Kod Zekası | Bağımlılıklar, karmaşıklık, ölü kod |
573
- | **@git** | Repository Ustası | Semantik commit'ler, branch yönetimi |
574
- | **@mobile** | Mobil Uygulamalar | React Native, Expo, iOS/Android |
575
- | **@native** | Yerel Uygulamalar | Tauri, Electron, sistem entegrasyonu |
142
+ **Areas Requiring Significant Work:**
143
+ - Build and test infrastructure currently broken (critical P0)
144
+ - No complete reference application (highest priority)
145
+ - Hermes protocol has not been executed in real multi-agent flows
146
+ - Real long-term usage data is very limited
147
+ - Governance rules are strong on paper but lack empirical validation in live systems
148
+ - Mobile and Native agents remain early-stage
576
149
 
577
150
  ---
578
151
 
579
- ## Komple Kurulum Kontrol Listesi
152
+ ## 📍 Next Major Milestones
580
153
 
581
- - [ ] **Node.js 20+** yüklü (`node --version`)
582
- - [ ] **npm 9+** yüklü (`npm --version`)
583
- - [ ] **Git** başlatılmış (`git init`)
584
- - [ ] **Framework yüklü** (`npm install && npm run enderun:build`)
585
- - [ ] **Sağlık kontrolü geçti** (`agent-enderun check` gösteriyor)
586
- - [ ] **İlk görev oluşturuldu** (`agent-enderun trace:new "Görev" backend P1`)
587
- - [ ] **Doklar oluşturuldu** (`docs/` klasörüne dosya ekledim)
588
- - [ ] **MCP bağlandı** (ajanlar araçları kullanabiliyor)
154
+ 1. Fix build, lint, and test pipeline (P0)
155
+ 2. Execute at least one full Hermes Live Test scenario in a real agent session
156
+ 3. Complete @frontend Professionalization Program (target: 9.0)
157
+ 4. Raise all core agents to minimum 8.0 maturity with measurable evidence
158
+ 5. Produce a minimal but complete reference application proving Kurumsal CRUD + managerApproval + Hermes in practice
589
159
 
590
160
  ---
591
161
 
592
- ## 🚀 İlk Gerçek Görev
593
-
594
- Kurulum tamamlandıktan sonra bunu deneyin:
595
-
596
- ```bash
597
- # Adım 1: Gerçek gereksinim yazın
598
- echo "# Kullanıcı Doğrulaması
599
-
600
- JWT tabanlı kimlik doğrulama sistemi kurun.
601
- - Email/şifre girişi
602
- - Oturumu kapat endpoint'i
603
- - Token yenileme mekanizması
604
- " > docs/requirements.md
605
-
606
- # Adım 2: Görev oluşturun
607
- agent-enderun trace:new "Auth Modülü Uygula" backend P1
162
+ ## 📚 Further Reading
608
163
 
609
- # Adım 3: Ajanlar sizin için çalışır
610
- # (Otomatik olarak docs/requirements.md okurlar)
611
- ```
164
+ - **[docs/roadmap.md](docs/roadmap.md)** Full Risk Tracking Dashboard and development roadmap
165
+ - **[docs/action-plan-2026.md](docs/action-plan-2026.md)** — Strategic execution plan (Phase 1–3)
166
+ - **.enderun/agents/** — Detailed Standard Operating Procedures for all 8 agents
167
+ - **.enderun/knowledge/** — Specialized technical and governance guides
612
168
 
613
169
  ---
614
170
 
615
- ## 📁 Proje Yapısı
616
-
617
- ```
618
- agent-enderun/
619
- ├── docs/ ← Ajanların okuyacağı dokümantasyon
620
- ├── framework-mcp/ ← MCP sunucusu (40+ araç)
621
- ├── apps/ ← Uygulamalarınız (siz oluşturun)
622
- ├── {{FRAMEWORK_DIR}}/ ← Yönetişim dosyaları
623
- └── bin/
624
- └── cli.js ← CLI giriş noktası
625
- ```
171
+ **Agent Enderun is not just a tool.**
172
+ **It is a complete operating system for professional, risk-aware, AI-assisted software development.**
626
173
 
627
174
  ---
628
175
 
629
- ## 💡 Sıkça Sorulan Sorular
630
-
631
- ### S: "Sözleşme-ilk" ne demek?
632
- **C:** Tüm API şekilleri ve alan modelleri `packages/shared-types` içinde **kod yazılmadan önce** tanımlanır. Frontend ve backend aynı türleri kullanır.
633
-
634
- ### S: Ajanlar bütün bunları anlıyor mu?
635
- **C:** Evet. Her işlem öncesi şunları okurlar:
636
- 1. `ENDERUN.md` (anayasa)
637
- 2. `{{FRAMEWORK_DIR}}/PROJECT_MEMORY.md` (proje durumu)
638
- 3. `docs/` dosyaları (gereksinimler)
639
- 4. `{{FRAMEWORK_DIR}}/knowledge/` (teknik rehberler)
176
+ # Türkçe
640
177
 
641
- ### S: AI adaptörü kullanmak zorunlu mu?
642
- **C:** Hayır. Framework, AI'sız da işlev görür. Faz ilerleme, denetim kaydı ve tür disiplini zorunludur.
178
+ **Geliştirici:** Yusuf BEKAR
643
179
 
644
- ### S: MCP araçlarını genişletebilir miyim?
645
- **C:** Evet. `packages/framework-mcp/src/tools/` klasörüne yeni dosya ekleyin.
180
+ ## Yönetici Özeti
646
181
 
647
- ### S: Kendi ajanlarımı ekleyebilir miyim?
648
- **C:** Evet. `{{FRAMEWORK_DIR}}/agents/` klasörüne `.md` dosyası oluşturun ve CLI mapping'ini güncelleyin.
182
+ Agent Enderun, yazılım ekipleri için tasarlanmış **Anayasal Yönetişim** ve **Çoklu Ajan Orkestrasyonu** odaklı kurumsal düzeyde bir yapay zeka yönetim ve orkestrasyon framework’üdür.
649
183
 
650
- ### S: Üretim için hazır mı?
651
- **C:** Framework hazır. `apps/` klasörü tamamen sizin.
184
+ Çoğu AI kod aracı hız ve üretim kapasitesine odaklanırken, Agent Enderun **risk bilinci, denetlenebilirlik, izlenebilirlik ve sürekli profesyonel gelişim** üzerine kuruludur.
652
185
 
653
- ---
186
+ ### v0.6.6 Stratejik Odak
654
187
 
655
- ## 🔗 Önce Okumanız Gereken Dosyalar
188
+ Bu sürümün ana konusu **profesyonelleşme ve dil standardizasyonu**dur:
189
+ - Tüm ajan prompt’ları, bilgi tabanı ve iç dokümantasyon profesyonel İngilizceye dönüştürülmüştür.
190
+ - Teknik borç ve yönetişim boşlukları dürüstçe analiz edilmiştir.
191
+ - Build sağlığı, test kapsamı ve yönetişim kurallarının ampirik doğrulanması için temel atılmıştır.
656
192
 
657
- 1. **`{{FRAMEWORK_DIR}}/ENDERUN.md`** — Anayasa
658
- 2. **`{{FRAMEWORK_DIR}}/PROJECT_MEMORY.md`** — Proje durumu
659
- 3. **`docs/tech-stack.md`** — Teknoloji kararları
660
- 4. **`packages/shared-types/src/index.ts`** — Sözleşme (türler)
661
- 5. **`README.md`** — Bu dosya
193
+ Tüm aktif risklerin güncel durumu için: [docs/roadmap.md](docs/roadmap.md)
662
194
 
663
195
  ---
664
196
 
665
- ## 📞 Destek & Katkı
666
-
667
- ### Sorun Bildir
668
- Net adımlarla ve versiyon numarası ile sorun bildir.
669
-
670
- ### Katkıda Bulun
671
- 1. `{{FRAMEWORK_DIR}}/ENDERUN.md` oku
672
- 2. Agent rolü yönergelerine uyun
673
- 3. Semantik commit'ler gönder
674
- 4. Testleri geç: `npm run enderun:build`
675
-
676
- ### Lisans
677
- MIT © 2026 Yusuf BEKAR
678
- ```bash
679
- agent-enderun status
680
- ```
681
-
682
- ### 4. Advanced Intelligence Commands
683
- ```bash
684
- # Run Security Audit
685
- agent-enderun check:security
197
+ ## 🎯 Temel Felsefe
686
198
 
687
- # Generate Dependency Graph
688
- agent-enderun explorer:graph
199
+ Dört vazgeçilmez ilke üzerine inşa edilmiştir:
689
200
 
690
- # Get Commit Suggestion
691
- agent-enderun git:commit [TRACE-ID]
692
- ```
201
+ 1. **Tek Yetki Noktası** — Kurumsal projelerde `@manager` tek yetkili giriş noktasıdır.
202
+ 2. **Risk Öncelikli Yaklaşım** — Her önemli işlem öncesi risk değerlendirmesi zorunludur.
203
+ 3. **Sürekli Ajan Geliştirme** — Tüm ajanların olgunluk hedefi minimum **8.0/10**’dur.
204
+ 4. **Sıfır Tolerans** — Yönetişimi bypass eden her girişim ciddi süreç ihlali olarak kabul edilir.
693
205
 
694
206
  ---
695
207
 
696
- ## 📂 Consolidated Framework Structure (`{{FRAMEWORK_DIR}}/`)
697
-
698
- All governance and engineering assets are consolidated under the framework directory for a clean project root.
699
-
700
- ```text
701
- .
702
- ├── {{FRAMEWORK_DIR}}/
703
- │ ├── ENDERUN.md # Supreme Law (Constitution)
704
- │ ├── PROJECT_MEMORY.md # Working Memory & History
705
- │ ├── BRAIN_DASHBOARD.md # Intelligence & Performance Stats
706
- │ ├── cli-commands.json # Agent-to-CLI Mapping
707
- │ ├── agents/ # 8 Specialized Agent SOPs
708
- │ ├── knowledge/ # 17+ Enterprise Knowledge Articles
709
- │ ├── docs/ # API Contracts, Security, Privacy, Strategy
710
- │ ├── logs/ # Traceable structured JSON logs
711
- │ ├── benchmarks/ # Performance metrics
712
- │ └── monitoring/ # System health hooks
713
- ├── bin/ # CLI Entry Point
714
- ├── packages/ # Shared Types & MCP Engine
715
- └── apps/ # Production Modules (Backend, Web, Mobile)
716
- ```
208
+ ## 🛡️ Önemli Yönetişim Yenilikleri (v0.6.6)
717
209
 
718
- ---
719
-
720
- ## 🛡️ Engineering Standards
721
-
722
- - **Zero Mock Policy:** Placeholders are forbidden. Every line of code must be functional.
723
- - **Branded Types:** IDs must be type-safe (e.g., `UserID` vs `string`).
724
- - **Panda CSS Only:** Zero-runtime CSS-in-JS for high-performance UI.
725
- - **Contract-First:** Schemas are defined in `shared-types` BEFORE implementation.
210
+ - Manager Authority Audit & Enforcement
211
+ - Hermes Live Test Program (4 zorunlu senaryo)
212
+ - @frontend Profesyonelleşme Programı (8 hafta)
213
+ - Kurumsal CRUD ve Yönetimsel İşlem Yönetişimi (`managerApproval`)
214
+ - **v0.6.6:** Tüm framework İngilizce standardizasyonu
726
215
 
727
216
  ---
728
217
 
729
- ## 📜 License
730
- MIT © 2026 Yusuf BEKAR — **Agent Enderun: The Future of AI Governance.**
731
- unctional.
732
- - **Branded Types:** IDs must be type-safe (e.g., `UserID` vs `string`).
733
- - **Panda CSS Only:** Zero-runtime CSS-in-JS for high-performance UI.
734
- - **Contract-First:** Schemas are defined in `shared-types` BEFORE implementation.
218
+ ## 🧠 Dürüst Durum (Mayıs 2026)
735
219
 
736
- ---
220
+ **Güçlü Yönler:** Anayasal yönetişim, risk yönetimi, Hermes protokolü temeli, contract-first disiplin, ileri düzey kurumsal adaptasyon kuralları.
737
221
 
738
- ## 📜 License
739
- MIT © 2026 Yusuf BEKAR — **Agent Enderun: The Future of AI Governance.**
740
- / # CLI Entry Point
741
- ├── packages/ # Shared Types & MCP Engine
742
- └── apps/ # Production Modules (Backend, Web, Mobile)
743
- ```
222
+ **Geliştirilmesi Gereken Alanlar:** Build ve test altyapısı kırık, referans uygulama yok, Hermes henüz canlı test edilmemiş, gerçek kullanım verisi sınırlı, yönetişim kuralları kağıt üzerinde güçlü ancak pratikte kanıtlanmamış.
744
223
 
745
224
  ---
746
225
 
747
- ## 🛡️ Engineering Standards
226
+ ## 📍 Önümüzdeki Önemli Hedefler
748
227
 
749
- - **Zero Mock Policy:** Placeholders are forbidden. Every line of code must be functional.
750
- - **Branded Types:** IDs must be type-safe (e.g., `UserID` vs `string`).
751
- - **Panda CSS Only:** Zero-runtime CSS-in-JS for high-performance UI.
752
- - **Contract-First:** Schemas are defined in `shared-types` BEFORE implementation.
228
+ 1. Build, lint ve test pipeline’ını düzeltmek (P0)
229
+ 2. En az bir Hermes Live Test senaryosunu gerçek ajan oturumunda çalıştırmak
230
+ 3. @frontend Profesyonelleşme Programını tamamlamak
231
+ 4. Tüm ajanları ölçülebilir şekilde 8.0+ olgunluğa çıkarmak
232
+ 5. Kurumsal CRUD + managerApproval + Hermes’i kanıtlayan minimal referans uygulama üretmek
753
233
 
754
234
  ---
755
235
 
756
- ## 📜 License
757
- MIT © 2026 Yusuf BEKAR **Agent Enderun: The Future of AI Governance.**
758
- lders are forbidden. Every line of code must be functional.
759
- - **Branded Types:** IDs must be type-safe (e.g., `UserID` vs `string`).
760
- - **Panda CSS Only:** Zero-runtime CSS-in-JS for high-performance UI.
761
- - **Contract-First:** Schemas are defined in `shared-types` BEFORE implementation.
236
+ **Agent Enderun yalnızca bir araç değildir.**
237
+ **Profesyonel, risk farkındalıklı, yapay zeka destekli yazılım geliştirme süreçleri için eksiksiz bir işletim sistemidir.**
762
238
 
763
239
  ---
764
240
 
765
- ## 📜 License
766
- MIT © 2026 Yusuf BEKAR — **Agent Enderun: The Future of AI Governance.**
241
+ **v0.6.6 English Standardization Release**