agent-enderun 0.7.5 โ†’ 0.8.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/claude.md ADDED
@@ -0,0 +1,19 @@
1
+ # Agent Enderun โ€” Claude Code CLI Adapter
2
+
3
+ This file is the entry point when using Agent Enderun with Claude Code CLI.
4
+
5
+ The framework installs into the `.claude/` folder for Claude users.
6
+
7
+ ### Primary Constitution
8
+ All governance rules, agent checklists, and project memory live here:
9
+
10
+ ๐Ÿ‘‰ **[.claude/ENDERUN.md](.claude/ENDERUN.md)**
11
+
12
+ ### ๐Ÿค– Agent Directive (Claude Code CLI users)
13
+ You are operating under the Agent Enderun governance framework.
14
+
15
+ At the **start of every session**, before any work:
16
+ 1. Read `.claude/PROJECT_MEMORY.md` to restore state, active Trace ID, and history.
17
+ 2. Read the relevant agent definition under `.claude/agents/{agent}/agent.json` (especially `@manager`).
18
+
19
+ All paths and references inside `.claude/` use the Claude adapter structure. No migration to other CLIs is required.
package/cursor.md ADDED
@@ -0,0 +1,19 @@
1
+ # Agent Enderun โ€” Cursor / Codex Adapter
2
+
3
+ This file is the entry point when using Agent Enderun with Cursor Composer / Codex CLI.
4
+
5
+ The framework installs into the `.cursor/` folder for Cursor users.
6
+
7
+ ### Primary Constitution
8
+ All governance rules, agent checklists, and project memory live here:
9
+
10
+ ๐Ÿ‘‰ **[.cursor/ENDERUN.md](.cursor/ENDERUN.md)**
11
+
12
+ ### ๐Ÿค– Agent Directive (Cursor users)
13
+ You are operating under the Agent Enderun governance framework.
14
+
15
+ At the **start of every session**, before any work:
16
+ 1. Read `.cursor/PROJECT_MEMORY.md` to restore state, active Trace ID, and history.
17
+ 2. Read the relevant agent definition under `.cursor/agents/{agent}/agent.json` (especially `@manager`).
18
+
19
+ All paths and references inside `.cursor/` use the Cursor adapter structure. No migration to other CLIs is required.
@@ -23,7 +23,6 @@ The `ai-enderun-mcp` package is the core intelligence engine of the Agent Enderu
23
23
  - `analyze_dependencies`: Deep import tracking and dependency mapping.
24
24
  - `analyze_codebase_intelligence`: Detects complexity spikes and dead code.
25
25
  - `generate_dependency_graph`: Creates Mermaid architecture maps.
26
- - `analyze_database_schema`: Generates Mermaid ER diagrams from migration code.
27
26
 
28
27
  #### ๐Ÿ“œ Contract Management
29
28
  - `verify_api_contract`: Checks shared-types integrity via hashing.
@@ -32,15 +31,10 @@ The `ai-enderun-mcp` package is the core intelligence engine of the Agent Enderu
32
31
 
33
32
  #### ๐ŸŽ“ Academy & Orchestration
34
33
  - `log_agent_action`: Records traceable agent activities.
35
- - `get_academy_performance`: Aggregates success rates across the team.
36
34
  - `send_agent_message`: Facilitates inter-agent collaboration.
37
35
  - `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
36
 
41
37
  #### ๐Ÿ“ฆ Repository & Git
42
- - `validate_repository_health`: Pre-commit health checks (lint/test/build).
43
- - `analyze_documentation_debt`: Scans for missing JSDoc and READMEs.
44
38
  - `generate_semantic_commit_message`: Automated commit messages based on diffs.
45
39
 
46
40
  ---
@@ -51,10 +45,10 @@ The `ai-enderun-mcp` package is the core intelligence engine of the Agent Enderu
51
45
 
52
46
  - **Gรผvenlik:** `security_audit_scan`, `analyze_constitution_compliance`.
53
47
  - **Hafฤฑza:** `get_framework_status`, `update_project_memory`, `bootstrap_legacy_memory`.
54
- - **Zeka:** `search_codebase`, `analyze_dependencies`, `generate_dependency_graph`, `analyze_database_schema`.
48
+ - **Zeka:** `search_codebase`, `analyze_dependencies`, `generate_dependency_graph`.
55
49
  - **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`.
50
+ - **Orkestrasyon:** `send_agent_message`, `log_agent_action`.
51
+ - **Repo:** `generate_semantic_commit_message`.
58
52
 
59
53
  ## License
60
54
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-enderun-mcp",
3
- "version": "0.7.5",
3
+ "version": "0.8.0",
4
4
  "description": "Enterprise-grade MCP Server for AI Agent Framework",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -56,14 +56,6 @@ export const UPDATE_KNOWLEDGE_BASE_ARGS_SCHEMA = z.object({
56
56
  tags: z.array(z.string().min(1)).default([]),
57
57
  });
58
58
 
59
- export const ANALYZE_DATABASE_SCHEMA_ARGS_SCHEMA = z.object({
60
- path: z.string().default("apps/backend"),
61
- });
62
-
63
- export const GENERATE_STRATEGIC_BRIEFING_ARGS_SCHEMA = z.object({
64
- focusArea: z.string().optional(),
65
- });
66
-
67
59
  export const ANALYZE_CONSTITUTION_COMPLIANCE_ARGS_SCHEMA = z.object({
68
60
  path: z.string().min(1),
69
61
  });
@@ -73,18 +65,6 @@ export const GENERATE_DEPENDENCY_GRAPH_ARGS_SCHEMA = z.object({
73
65
  format: z.enum(["mermaid", "json"]).default("mermaid"),
74
66
  });
75
67
 
76
- export const GENERATE_ACADEMY_PROGRESS_REPORT_ARGS_SCHEMA = z.object({
77
- days: z.number().default(7),
78
- });
79
-
80
- export const ANALYZE_DOCUMENTATION_DEBT_ARGS_SCHEMA = z.object({
81
- path: z.string().default("."),
82
- });
83
-
84
- export const VALIDATE_REPOSITORY_HEALTH_ARGS_SCHEMA = z.object({
85
- scope: z.enum(["full", "lint", "test", "build"]).default("full"),
86
- });
87
-
88
68
  export const READ_AGENT_MESSAGES_ARGS_SCHEMA = z.object({
89
69
  agent: z.string().min(1),
90
70
  traceId: z.string().min(1).optional(),
@@ -102,20 +82,11 @@ export const ANALYZE_CODEBASE_INTELLIGENCE_ARGS_SCHEMA = z.object({
102
82
  path: z.string().default("."),
103
83
  });
104
84
 
105
- export const GET_ACADEMY_PERFORMANCE_ARGS_SCHEMA = z.object({
106
- periodDays: z.number().default(30),
107
- });
108
-
109
85
  export const ANALYZE_PROCEDURAL_CONTINUITY_ARGS_SCHEMA = z.object({
110
86
  targetPath: z.string().min(1),
111
87
  referencePath: z.string().min(1),
112
88
  });
113
89
 
114
- export const GET_AGENT_AUDIT_REPORT_ARGS_SCHEMA = z.object({
115
- agent: z.string().min(1),
116
- days: z.number().default(7),
117
- });
118
-
119
90
  export const GET_AGENT_INBOX_STATS_ARGS_SCHEMA = z.object({
120
91
  agent: z.string().min(1),
121
92
  });
@@ -132,17 +103,4 @@ export const VERIFY_FRAMEWORK_HEALTH_ARGS_SCHEMA = z.object({
132
103
  detailed: z.boolean().default(false),
133
104
  });
134
105
 
135
- export const INSTANTIATE_BLUEPRINT_ARGS_SCHEMA = z.object({
136
- blueprintPath: z.string().min(1),
137
- targetPath: z.string().min(1),
138
- });
139
-
140
- export const LIST_BLUEPRINTS_ARGS_SCHEMA = z.object({
141
- category: z.enum(["backend", "frontend"]).optional(),
142
- });
143
106
 
144
- export const SAVE_AS_BLUEPRINT_ARGS_SCHEMA = z.object({
145
- blueprintPath: z.string().min(1),
146
- content: z.string().min(1),
147
- description: z.string().optional(),
148
- });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-enderun",
3
- "version": "0.7.5",
3
+ "version": "0.8.1",
4
4
  "description": "The Supreme AI Governance & Orchestration Framework for Enterprise Development",
5
5
  "author": "Yusuf BEKAR",
6
6
  "license": "MIT",
@@ -32,6 +32,7 @@
32
32
  },
33
33
  "files": [
34
34
  "bin",
35
+ "src",
35
36
  "framework-mcp/dist",
36
37
  "framework-mcp/src",
37
38
  "framework-mcp/package.json",
@@ -44,6 +45,8 @@
44
45
  "tsconfig.json",
45
46
  "panda.config.ts",
46
47
  "gemini.md",
48
+ "claude.md",
49
+ "cursor.md",
47
50
  "docs"
48
51
  ],
49
52
  "scripts": {