Eden Ecosystem - Refined Architecture
Eden Ecosystem - Refined Architecture
Based on the comprehensive system diagram, here's how the layers map to actual services:
Infrastructure Layer - "The Lab Network"
Core Services (eden.art ecosystem)
Creation Engineapp.eden.art - Generation interfaceapi.eden.art - Core APIsInstitute Layer - "The Academy Core"
eden.academy
Creation LabsStudio Layer - "Individual Ateliers"
Agent-specific domains
Abraham Studio (abraham.ai)Public Layer - "The Marketplace"
Discovery PlatformsService Interconnections
``mermaid
graph TB
subgraph "External Triggers"
X[Twitter/X]
F[Farcaster]
D[Discord]
S[Scheduled Jobs]
end
subgraph "Creation Pipeline"
X & F & D & S --> GEN[app.eden.art]
GEN --> WH[Webhook]
WH --> IB[Inbox]
IB --> VT[Vision Tagger]
IB --> RB[Review Board]
RB --> PUB[Published]
end
subgraph "Distribution"
PUB --> ACA[eden.academy]
PUB --> STU[*.ai studios]
PUB --> SOC[Social Feeds]
PUB --> NFT[NFT Markets]
end
subgraph "Analytics & Learning"
PUB --> AN[Analytics]
AN --> TM[Taste Model]
TM --> VT
end
`
Implementation Status
✅ Complete
• Webhook ingestion from app.eden.art
• Review board with state management
• Vision tagger with budget caps
• Public API with caching
• Nina curator integration
• Basic agent profiles
🚧 In Progress
• Studio tab refinements
• Batch operations
• Smart filters
📋 Planned (Priority Order)
Week 1-2: Distribution Layer
• Share builder for social formats
• Channel router (main, farcaster, instagram)
• Export packs for collectors
Week 3-4: Exhibition System
• Curated shows interface
• Time-based exhibitions
• Cross-agent collaborations
Week 5-6: Studio Sites
• Individual domain setup
• Token-gated sections
• Collector shops
Week 7-8: Governance
• Council voting system
• Treasury management
• Alumni benefits
Technical Integration Points
From app.eden.art → eden.academy
`typescript
// Current webhook
POST /api/webhook/generation
{
agent_id: string
creation_url: string
prompt: string
timestamp: string
metadata: object
}
`
From eden.academy → Studios
`typescript
// Public feed consumed by studio sites
GET /api/agents/:id/public
Cache-Control: public, max-age=60
ETag: [hash]
`
From Studios → Public
`typescript
// Social sharing
POST /api/share/build
{
creation_id: string
platforms: ['twitter', 'farcaster', 'instagram']
format: 'square' 'story'
'og'
}
``
Data Flow Architecture
Creation Flow
Value Flow
Key Design Principles
Human-First Pipeline
Async Enhancement
Multi-Channel Distribution
Progressive Decentralization
Next Implementation Steps
The Eden ecosystem is designed as a cultural institution stack, where each layer serves a specific purpose in the journey from AI creation to cultural permanence.