|
|
8 сар өмнө | |
|---|---|---|
| .. | ||
| archive | 8 сар өмнө | |
| ARCHITECTURE-REVIEW.md | 8 сар өмнө | |
| BUILD-PLAN.md | 8 сар өмнө | |
| CORRECTED-ARCHITECTURE.md | 8 сар өмнө | |
| README.md | 8 сар өмнө | |
Status: READY TO BUILD
Date: 2025-10-29
Architecture: Approved & Simplified
The fundamental constraint and solution:
.opencode/agent/).nexusagent/context/).nexusagent/governance/)@../.nexusagent/context/file.mdRead this first - explains why the architecture is structured this way.
Comprehensive validation against guide documents:
Read this second - confirms the approach is sound and provides guidance.
Simple status document:
Read this last - quick reference for current status.
project/
├── .nexusagent/ # SHAREABLE (tool-agnostic)
│ ├── context/ # Domain knowledge (any tool reads)
│ │ ├── core/
│ │ ├── domain/
│ │ ├── processes/
│ │ └── standards/
│ │
│ └── governance/ # Data governance (any tool reads)
│ ├── metadata-index.json
│ ├── workflow-state.json
│ └── tmp/
│
└── .opencode/ # TOOL-SPECIFIC (OpenCode)
├── agent/ # OpenCode agents (MUST be here)
│ ├── main-orchestrator.md
│ ├── context-provider.md
│ └── subagents/
│ ├── quality-validator.md
│ └── lifecycle-manager.md
│
└── command/ # OpenCode commands (MUST be here)
└── validate-context.md
<!-- .opencode/agent/main-orchestrator.md -->
**Load shared context:**
@../.nexusagent/context/core/essential-patterns.md
@../.nexusagent/context/standards/quality-criteria.md
**Read governance data:**
Read: ../.nexusagent/governance/metadata-index.json
nexus/
├── install.sh # Simple installer
├── profiles/
│ └── default/ # Full system (not "basic")
│ ├── nexusagent/
│ │ ├── context/
│ │ └── governance/
│ └── opencode/
│ ├── agent/
│ └── command/
└── README.md
~/nexus/install.sh
# Creates in project:
.nexusagent/ # Shared resources
├── context/ # From profile
└── governance/ # From profile
.opencode/ # OpenCode integration
├── agent/ # From profile
└── command/ # From profile
Located in parent directory (.Building/):
BUILDING-CONTEXT-AWARE-SYSTEMS.md (2000+ lines)
DATA-GOVERNANCE-AGENT-SYSTEM.md (2000+ lines)
UNIFIED-ARCHITECTURE.md
These are THE SOURCE OF TRUTH - follow them exactly.
.nexusagent/ (any tool can read).opencode/ (tool-specific)Moved to archive/ folder:
00-MASTER-PLAN.md - Early planning, superseded01-TECHNICAL-SPECIFICATION.md - Details now in guides02-MULTI-TOOL-INTEGRATION.md - Covered in ARCHITECTURE-REVIEW03-SIMPLIFIED-ARCHITECTURE.md - Superseded by CORRECTED-ARCHITECTUREFINAL-ARCHITECTURE-DECISION.md - Merged into current docsPROJECT-STRUCTURE.md - Will be generated from actual buildThese are kept for historical reference but are no longer active.
Start with: Create repository structure in nexus/
nexus/ directoryinstall.shprofiles/default/ structureprofiles/default/nexusagent/context/profiles/default/nexusagent/governance/profiles/default/opencode/agent/profiles/default/opencode/command/Installation:
Functionality:
Documentation:
Quality:
Separation of Concerns
.nexusagent/) = tool-agnostic.opencode/) = tool-specificProgressive Enhancement
Proven Patterns
Production Focus
Review the three active documents in order:
Then refer to foundation guides for implementation details.