agent-enderun 1.0.5 → 1.0.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.
- package/.enderun/ENDERUN.md +15 -8
- package/.enderun/agents/analyst.md +6 -0
- package/.enderun/agents/backend.md +6 -0
- package/.enderun/agents/database.md +6 -0
- package/.enderun/agents/devops.md +6 -0
- package/.enderun/agents/explorer.md +6 -0
- package/.enderun/agents/frontend.md +6 -0
- package/.enderun/agents/git.md +6 -0
- package/.enderun/agents/manager.md +14 -13
- package/.enderun/agents/mobile.md +6 -0
- package/.enderun/agents/native.md +6 -0
- package/.enderun/agents/quality.md +6 -0
- package/.enderun/agents/security.md +6 -0
- package/.enderun/cli-commands.json +8 -6
- package/.enderun/knowledge/evaluation_engine.md +15 -0
- package/.enderun/knowledge/router_logic.md +29 -0
- package/.enderun/logs/manager.json +34 -6
- package/.enderun/memory/BUSINESS_CONTEXT.md +17 -0
- package/.enderun/memory/DECISIONS.md +24 -0
- package/.enderun/memory/LESSONS_LEARNED.md +12 -0
- package/.enderun/memory/PATTERNS.md +17 -0
- package/.enderun/{PROJECT_MEMORY.md → memory/PROJECT_MEMORY.md} +4 -1
- package/.enderun/observability/AUDIT_LOG.md +9 -0
- package/.enderun/observability/METRICS.md +10 -0
- package/.enderun/observability/TRACE_LOG.md +10 -0
- package/.enderun/registry/agents.yaml +69 -0
- package/GEMINI.md +20 -0
- package/GROK.md +20 -0
- package/README.md +31 -8
- package/bin/validate-agent-army.js +111 -36
- package/docs/getting-started.md +9 -0
- package/framework-mcp/package.json +1 -1
- package/package.json +2 -2
- package/src/cli/adapters.ts +23 -3
- package/src/cli/commands/check.ts +25 -5
- package/src/cli/commands/init.ts +19 -5
- package/src/cli/commands/orchestrate.ts +16 -4
- package/src/cli/index.ts +19 -7
- package/src/cli/utils/memory.ts +10 -2
- package/claude.md +0 -25
- package/gemini.md +0 -31
- package/grok.md +0 -25
package/claude.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Agent Enderun — Claude Code Adapter
|
|
2
|
-
|
|
3
|
-
This is the primary entry point when using Agent Enderun within the Claude Code (CLI & Desktop) ecosystem.
|
|
4
|
-
|
|
5
|
-
The framework operates under a unified governance structure located in the .enderun/ directory.
|
|
6
|
-
|
|
7
|
-
### Primary Constitution
|
|
8
|
-
All governance rules, agent checklists, and project memory live here:
|
|
9
|
-
|
|
10
|
-
👉 **[.enderun/ENDERUN.md](.enderun/ENDERUN.md)**
|
|
11
|
-
|
|
12
|
-
### 🤖 Agent Directive
|
|
13
|
-
You are operating under the Agent Enderun governance framework.
|
|
14
|
-
|
|
15
|
-
At the **start of every session**, before any work:
|
|
16
|
-
1. **Restore Memory:** Read `.enderun/PROJECT_MEMORY.md` to restore state, active Trace ID, and history.
|
|
17
|
-
2. **Load Identity:** Read the relevant agent definition under `.enderun/agents/{agent}.md` (default to `@manager`).
|
|
18
|
-
3. **Internalize Knowledge:** Reference the `.enderun/knowledge/` base for architectural and coding standards.
|
|
19
|
-
|
|
20
|
-
### 🛡️ Core Mandates
|
|
21
|
-
- **Surgical Edits:** Use `replace_text` or `patch_file` via MCP for precise changes.
|
|
22
|
-
- **Traceability:** Every action must inherit the active Trace ID from memory.
|
|
23
|
-
- **Contract First:** No implementation without verified types.
|
|
24
|
-
|
|
25
|
-
All paths and references inside the project must comply with the Supreme Constitution located at `.enderun/ENDERUN.md`.
|
package/gemini.md
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# Agent Enderun — Gemini CLI Adapter
|
|
2
|
-
|
|
3
|
-
This is the primary entry point when using Agent Enderun within the Gemini CLI ecosystem.
|
|
4
|
-
|
|
5
|
-
The framework operates under a unified governance structure located in the .enderun/ directory.
|
|
6
|
-
|
|
7
|
-
### Primary Constitution
|
|
8
|
-
All governance rules, agent checklists, and project memory live here:
|
|
9
|
-
|
|
10
|
-
👉 **[.enderun/ENDERUN.md](.enderun/ENDERUN.md)**
|
|
11
|
-
|
|
12
|
-
### 🤖 Agent Directive
|
|
13
|
-
You are operating under the Agent Enderun governance framework.
|
|
14
|
-
|
|
15
|
-
At the **start of every session**, before any work:
|
|
16
|
-
1. **Restore Memory:** Read `.enderun/PROJECT_MEMORY.md` to restore state, active Trace ID, and history.
|
|
17
|
-
2. **Load Identity:** Read the relevant agent definition under `.enderun/agents/{agent}.md` (default to `@manager`).
|
|
18
|
-
3. **Internalize Knowledge:** Reference the `.enderun/knowledge/` base for architectural and coding standards.
|
|
19
|
-
|
|
20
|
-
### 💾 Memory Tiers
|
|
21
|
-
- **Project Memory (Shared):** `.enderun/PROJECT_MEMORY.md` is the source of truth for task history, Trace IDs, and architectural decisions. **Update this at the end of every turn.**
|
|
22
|
-
- **Private Memory (User-Specific):** Use the local `.gitignored` memory directory (e.g. `.enderun/memory/`) for personal workflows or user-specific notes that should not be committed to Git. Never use the system's `/tmp` directory.
|
|
23
|
-
- **Project Instructions:** This `gemini.md` file contains the "Supreme Law" and coding standards.
|
|
24
|
-
|
|
25
|
-
### 🛡️ Core Mandates
|
|
26
|
-
- **Surgical Edits:** Use `replace_text` or `patch_file` via MCP for precise changes.
|
|
27
|
-
- **Traceability:** Every action must inherit the active Trace ID from memory.
|
|
28
|
-
- **Contract First:** No implementation without verified types.
|
|
29
|
-
- **NEVER FORGET:** @manager MUST update `.enderun/PROJECT_MEMORY.md` at the end of EVERY session without exception. This is a non-negotiable process integrity rule.
|
|
30
|
-
|
|
31
|
-
All paths and references inside the project must comply with the Supreme Constitution located at `.enderun/ENDERUN.md`.
|
package/grok.md
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Agent Enderun — Grok / X.ai Adapter
|
|
2
|
-
|
|
3
|
-
This is the primary entry point when using Agent Enderun within the Grok / X.ai ecosystem.
|
|
4
|
-
|
|
5
|
-
The framework operates under a unified governance structure located in the .enderun/ directory.
|
|
6
|
-
|
|
7
|
-
### Primary Constitution
|
|
8
|
-
All governance rules, agent checklists, and project memory live here:
|
|
9
|
-
|
|
10
|
-
👉 **[.enderun/ENDERUN.md](.enderun/ENDERUN.md)**
|
|
11
|
-
|
|
12
|
-
### 🤖 Agent Directive
|
|
13
|
-
You are operating under the Agent Enderun governance framework.
|
|
14
|
-
|
|
15
|
-
At the **start of every session**, before any work:
|
|
16
|
-
1. **Restore Memory:** Read `.enderun/PROJECT_MEMORY.md` to restore state, active Trace ID, and history.
|
|
17
|
-
2. **Load Identity:** Read the relevant agent definition under `.enderun/agents/{agent}.md` (default to `@manager`).
|
|
18
|
-
3. **Internalize Knowledge:** Reference the `.enderun/knowledge/` base for architectural and coding standards.
|
|
19
|
-
|
|
20
|
-
### 🛡️ Core Mandates
|
|
21
|
-
- **Surgical Edits:** Use `replace_text` or `patch_file` via MCP for precise changes.
|
|
22
|
-
- **Traceability:** Every action must inherit the active Trace ID from memory.
|
|
23
|
-
- **Contract First:** No implementation without verified types.
|
|
24
|
-
|
|
25
|
-
All paths and references inside the project must comply with the Supreme Constitution located at `.enderun/ENDERUN.md`.
|