agent-enderun 0.1.10 → 0.2.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.
- 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 +292 -79
- package/package.json +42 -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.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/shared-types/README.md +28 -51
- 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/packages/framework-mcp/tsconfig.json +0 -15
- package/packages/shared-types/contract.version.json +0 -9
- package/packages/shared-types/tsconfig.json +0 -17
- package/panda.config.ts +0 -20
- /package/{docs → .enderun/docs}/project-docs.md +0 -0
|
@@ -1,94 +1,60 @@
|
|
|
1
|
-
# AI-Enderun MCP Server v0.
|
|
1
|
+
# AI-Enderun MCP Server (v0.2.0)
|
|
2
2
|
|
|
3
3
|
English | [Türkçe](#türkçe)
|
|
4
4
|
|
|
5
|
-
The `ai-enderun-mcp` package
|
|
5
|
+
The `ai-enderun-mcp` package is the core intelligence engine of the Agent Enderun framework, implementing the Model Context Protocol (MCP).
|
|
6
6
|
|
|
7
7
|
## English
|
|
8
8
|
|
|
9
|
-
###
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
-
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- `
|
|
24
|
-
- `
|
|
25
|
-
- `
|
|
26
|
-
- `
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
- `
|
|
30
|
-
- `
|
|
31
|
-
- `
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
- `.gemini/` or chosen adapter directories for agent SOPs and configuration.
|
|
48
|
-
- `docs/` for project requirements and API contract definitions.
|
|
49
|
-
- `packages/shared-types/` for contract-first type validation.
|
|
9
|
+
### 🛠️ Categorized Tools
|
|
10
|
+
|
|
11
|
+
#### 🛡️ Security & Compliance
|
|
12
|
+
- `security_audit_scan`: Scans for secrets, raw SQL, and unsafe patterns using AST.
|
|
13
|
+
- `analyze_constitution_compliance`: Verifies adherence to `ENDERUN.md` rules.
|
|
14
|
+
|
|
15
|
+
#### 🧠 Framework & Memory
|
|
16
|
+
- `get_framework_status`: Retrieves active phase and status.
|
|
17
|
+
- `update_project_memory`: Atomic updates to project brain sections.
|
|
18
|
+
- `bootstrap_legacy_memory`: Auto-generates memory for existing projects.
|
|
19
|
+
- `read_project_memory`: Safe read access to the project brain.
|
|
20
|
+
|
|
21
|
+
#### 🔍 Codebase Intelligence
|
|
22
|
+
- `search_codebase`: Regex-powered semantic search.
|
|
23
|
+
- `analyze_dependencies`: Deep import tracking and dependency mapping.
|
|
24
|
+
- `analyze_codebase_intelligence`: Detects complexity spikes and dead code.
|
|
25
|
+
- `generate_dependency_graph`: Creates Mermaid architecture maps.
|
|
26
|
+
- `analyze_database_schema`: Generates Mermaid ER diagrams from migration code.
|
|
27
|
+
|
|
28
|
+
#### 📜 Contract Management
|
|
29
|
+
- `verify_api_contract`: Checks shared-types integrity via hashing.
|
|
30
|
+
- `update_contract_hash`: Synchronizes the contract versioning.
|
|
31
|
+
- `verify_contract_integrity`: Ensures API docs and types are in sync.
|
|
32
|
+
|
|
33
|
+
#### 🎓 Academy & Orchestration
|
|
34
|
+
- `log_agent_action`: Records traceable agent activities.
|
|
35
|
+
- `get_academy_performance`: Aggregates success rates across the team.
|
|
36
|
+
- `send_agent_message`: Facilitates inter-agent collaboration.
|
|
37
|
+
- `read_agent_messages`: Inbox management for specialized agents.
|
|
38
|
+
- `generate_strategic_briefing`: High-level executive performance summary.
|
|
39
|
+
- `generate_academy_progress_report`: Narrative overview of project milestones.
|
|
40
|
+
|
|
41
|
+
#### 📦 Repository & Git
|
|
42
|
+
- `validate_repository_health`: Pre-commit health checks (lint/test/build).
|
|
43
|
+
- `analyze_documentation_debt`: Scans for missing JSDoc and READMEs.
|
|
44
|
+
- `generate_semantic_commit_message`: Automated commit messages based on diffs.
|
|
45
|
+
|
|
46
|
+
---
|
|
50
47
|
|
|
51
48
|
## Türkçe
|
|
52
49
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Ne sağlar?
|
|
56
|
-
|
|
57
|
-
- **Framework Durumu & Hafıza:** Aktif faz, trace ID'leri ve proje geçmişi değerlendirmesi.
|
|
58
|
-
- **Arama & Analiz:** AST destekli kod arama, bağımlılık analizi ve desen keşfi.
|
|
59
|
-
- **Kontrat Doğrulama:** Paylaşılan tipler ve API sözleşmelerinin kayıtlı hash ile uyumunu kontrol eder.
|
|
60
|
-
- **Güvenlik Denetimi:** Raw SQL, console.log ve `any` kullanımı gibi güvensiz modelleri tespit eder.
|
|
61
|
-
- **Yapısal Loglama:** Ajan eylemleri için merkezi JSON tabanlı takip.
|
|
62
|
-
|
|
63
|
-
### Araçlar
|
|
64
|
-
|
|
65
|
-
- `get_framework_status`
|
|
66
|
-
- `search_codebase`
|
|
67
|
-
- `analyze_dependencies`
|
|
68
|
-
- `get_memory_insights`
|
|
69
|
-
- `update_project_memory`
|
|
70
|
-
- `get_project_gaps`
|
|
71
|
-
- `security_audit_scan`
|
|
72
|
-
- `verify_api_contract`
|
|
73
|
-
- `update_contract_hash`
|
|
74
|
-
- `log_agent_action`
|
|
75
|
-
|
|
76
|
-
### Geliştirme
|
|
77
|
-
|
|
78
|
-
```bash
|
|
79
|
-
cd packages/framework-mcp
|
|
80
|
-
npm install
|
|
81
|
-
npm run build
|
|
82
|
-
npm run dev
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
### Entegrasyon rolü
|
|
86
|
-
|
|
87
|
-
Bu paket şunları yorumlar ve doğrular:
|
|
50
|
+
### 🛠️ Kategorize Edilmiş Araçlar
|
|
88
51
|
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
52
|
+
- **Güvenlik:** `security_audit_scan`, `analyze_constitution_compliance`.
|
|
53
|
+
- **Hafıza:** `get_framework_status`, `update_project_memory`, `bootstrap_legacy_memory`.
|
|
54
|
+
- **Zeka:** `search_codebase`, `analyze_dependencies`, `generate_dependency_graph`, `analyze_database_schema`.
|
|
55
|
+
- **Kontrat:** `verify_api_contract`, `update_contract_hash`, `verify_contract_integrity`.
|
|
56
|
+
- **Orkestrasyon:** `send_agent_message`, `log_agent_action`, `generate_strategic_briefing`.
|
|
57
|
+
- **Repo:** `validate_repository_health`, `analyze_documentation_debt`, `generate_semantic_commit_message`.
|
|
92
58
|
|
|
93
59
|
## License
|
|
94
60
|
|