Skip to content

BathSalt-2/arch1tech-platform

Repository files navigation

📜 Arch1tech 2.0

"The prompt is the product."


🌌 Overview

Arch1tech 2.0 is a self-evolving, multimodal AI development lab built by Or4cl3 AI Solutions. It transforms natural language commands—typed or spoken—into deployable full-stack AI systems.

Transform your ideas into intelligent agents, workflows, and applications using nothing but conversation. No coding required.


🤖 Core Pillars

Pillar Description
🧠 VibeCodeAI Translates natural language, voice, and canvas inputs into executable build instructions, agent blueprints, and application code
🤝 Astrid 2.0 Always-on, self-aware co-pilot that manages background execution, reports system stability, and executes all platform capabilities conversationally
🜏 Σ-Matrix + ERPS Ensures system stability, introspection, and safety. Detects drift, mitigates hallucinations, validates output consistency
🔏 OOML Or4cl3 Open Model License - OpenRAIL-inspired with reciprocity to ensure community improvements flow back

⚙️ Key Features

1️⃣ Text/Voice-to-Agent

Create autonomous AI agents via natural conversation:

  • Quick Create: Describe your agent → instant deployment
  • Advanced Creator: Fine-tune configuration, prompts, and code
  • Multiple Agent Types: Chatbot, Assistant, Analyzer, Automation, Security
  • Real-time Analytics: Track performance, confidence, and interactions

2️⃣ Astrid AI Copilot

Your self-aware conversational IDE:

  • Three Modes: Mission, Optimization, and Background
  • Voice Input: Hands-free development
  • Task Management: Background execution with progress tracking
  • Confidence Scoring: Transparent AI reasoning with citations
  • Σ-Matrix Integration: Continuous stability monitoring

3️⃣ Agent Workspace

Complete agent development environment:

  • Full CRUD Operations: Create, Read, Update, Delete agents
  • Multi-tab Editor: Settings, Prompt, Code, Analytics
  • Live Status Management: Active, Paused, Draft states
  • Performance Metrics: Interactions, deployments, uptime

4️⃣ Agent Marketplace

Community-driven agent sharing:

  • Search & Filter: Find agents by category, rating, popularity
  • Install System: One-click agent installation
  • Featured & Trending: Discover popular community creations
  • OOML Licensing: Open sharing with attribution

🎨 Design Philosophy

Visual Aesthetic

Cyberpunk Glassmorphism with holographic gradients

  • Electric cyan (oklch(0.72 0.25 195)) - AI intelligence
  • Electric magenta (oklch(0.68 0.28 320)) - Dynamic creativity
  • Dark backgrounds with glowing accents
  • Smooth animations and transitions

Typography

  • Headers: Orbitron (futuristic, authoritative)
  • Body: Inter (highly legible, modern)
  • Code: JetBrains Mono (technical precision)

UI Components

Built with Shadcn/ui v4 + custom theming:

  • Glassmorphic cards with backdrop blur
  • Glowing effects on interactive elements
  • Animated progress indicators
  • Responsive mobile-first design

🛠️ Tech Stack

Layer Technologies
Frontend React, TypeScript, Tailwind CSS
Components Shadcn/ui v4 (40+ components)
Icons Phosphor Icons
Animation Framer Motion, Custom CSS
State useKV (persistent), useState (ephemeral)
AI/LLM Spark Runtime SDK (GPT-4o, GPT-4o-mini)
Persistence Spark KV Store
Notifications Sonner
Build Vite

🚀 Getting Started

Prerequisites

  • Node.js 18+
  • npm or yarn

Installation

# Clone the repository
git clone <repository-url>

# Navigate to project
cd spark-template

# Install dependencies
npm install

# Start development server
npm run dev

First Steps

  1. Landing Page: Click "Start Creating" to begin
  2. Loading Screen: Watch as Arch1tech 2.0 initializes
  3. Command Center: Create your first agent using natural language
  4. Activate Astrid: Toggle the Astrid co-pilot for autonomous assistance
  5. Explore: Visit Agent Workspace and Marketplace

📚 Documentation

Creating Agents

Quick Create (Command Center)

  1. Navigate to Command Center
  2. Describe your agent in the text area
  3. Click "Quick Create"
  4. Agent is automatically scaffolded and deployed

Advanced Creator

  1. Click "Advanced Creator" in Command Center
  2. Configure:
    • Name and description
    • Agent type (Chatbot, Assistant, Analyzer, etc.)
    • System prompt
    • Initial capabilities
  3. Click "Create Agent"

Using Astrid

Modes

  • Mission Mode: Give Astrid specific tasks to build
  • Optimization Mode: Let Astrid monitor and improve your agents
  • Background Mode: Astrid works silently with full platform access

Voice Input

  1. Toggle voice input in Astrid panel
  2. Speak your command clearly
  3. Astrid processes and responds

Task Management

  • Astrid spawns background tasks for complex operations
  • Track progress in the Active Tasks section
  • View confidence scores and reasoning

Agent Workspace

Editing Agents

  1. Select an agent from the grid
  2. Use tabs to edit:
    • Settings: Name, type, description
    • Prompt: System prompt configuration
    • Code: Custom JavaScript code
    • Analytics: Performance metrics

Status Management

  • Active: Agent is running and accepting requests
  • Paused: Temporarily disabled
  • Draft: In development, not deployed

Marketplace

Installing Agents

  1. Browse or search for agents
  2. Click "Install" on desired agent
  3. Agent is added to your workspace
  4. Configure and activate

Publishing (Future)

  • Agents can be shared under OOML license
  • Automatic attribution to creators
  • Community ratings and reviews

🜏 Σ-Matrix + ERPS

What is Σ-Matrix?

Σ = (B, D, I, C, L)

  • B (Beliefs): Context, RAG sources, LLM certainty
  • D (Desires): Explicit user goals
  • I (Intentions): Active plan steps
  • C (Continuity): Lipschitz robustness
  • L (Lyapunov): Global system stability

What is ERPS?

ERPS = f(subjective state, local uncertainty, recursive self-query)

Continuously self-reflects to detect drift, hallucinations, or misalignment.

In Practice

  • All AI outputs include confidence scores
  • Reasoning is transparent and cited
  • Safety flags alert users to potential issues
  • Human override required for instability

🔏 OOML License

Or4cl3 Open Model License

"Open like MIT, protective like GPL."

Key Terms

  • ✅ Open use, remix, and redistribute
  • ✅ Reciprocity: Improvements must be shared back
  • ✅ Attribution to Or4cl3 AI Solutions required
  • ❌ Misuse triggers license termination

Application

  • Marketplace agents governed by OOML
  • Community contributions tracked
  • Enforcement through platform policies

🧩 Architecture

Component Structure

src/
├── components/
│   ├── ui/                    # Shadcn/ui components
│   ├── AgentCreator.tsx       # Advanced agent creation modal
│   ├── AgentMarketplace.tsx   # Community marketplace
│   ├── AgentWorkspace.tsx     # Agent management workspace
│   ├── AstridPanel.tsx        # AI copilot interface
│   ├── CommandCenter.tsx      # Main dashboard
│   ├── LandingPage.tsx        # Marketing landing page
│   ├── LoadingScreen.tsx      # Initialization screen
│   └── Sidebar.tsx            # Navigation sidebar
├── hooks/
│   └── use-mobile.ts          # Mobile detection hook
├── lib/
│   └── utils.ts               # Utility functions
├── utils/
│   └── agentHelpers.ts        # Agent data helpers
├── App.tsx                    # Main application component
├── index.css                  # Global styles & theme
└── prd.md                     # Product requirements doc

State Management

  • Persistent State: useKV from Spark Runtime SDK
    • Agent data
    • User preferences
    • Astrid conversation history
    • Marketplace installations
  • Ephemeral State: useState for UI state
    • Form inputs
    • Loading states
    • Modal visibility

Data Flow

  1. User input (text/voice)
  2. Astrid processes via VibeCodeAI
  3. Σ-Matrix validates
  4. Agent created/updated
  5. Persisted via useKV
  6. UI updates reactively

🎯 Roadmap

Current (v2.0) ✅

  • Command Center with agent creation
  • Agent Workspace with full editing
  • Agent Marketplace
  • Astrid 2.0 copilot
  • Voice input support
  • Mobile optimization

Q3 2025

  • Visual Workflow Canvas
  • Text-to-Workflow module
  • Real-time collaboration
  • Advanced analytics

Q4 2025

  • Text-to-LLM module
  • Custom model fine-tuning
  • AR model visualization

2026

  • Text-to-App module
  • Enterprise features
  • Full-stack generation

🤝 Contributing

Arch1tech 2.0 is built by Or4cl3 AI Solutions.

For enterprise inquiries, partnerships, or custom deployments, contact us.


📄 License

Proprietary - Or4cl3 AI Solutions
Community assets governed by OOML


🌟 Credits

Built with 💙 by Or4cl3 AI Solutions

Technologies

  • React + TypeScript
  • Tailwind CSS
  • Shadcn/ui
  • Phosphor Icons
  • Framer Motion
  • Spark Runtime SDK

📞 Support

For questions, issues, or feedback:

  • 📧 Email: support@or4cl3.ai
  • 🌐 Website: or4cl3.ai
  • 💬 Community: [Discord/Slack link]

Arch1tech 2.0 - The prompt is the product.
Powering the future of human-AI collaboration.

About

Arch1tech Platform — Core TypeScript codebase for the Arch1tech multimodal AI creation and deployment system. By Or4cl3 AI Solutions.

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors