@emeraldemperaur/apotheosis-ux
v1.0.1
Published

Readme
Apotheosis UX
Neumorphic Design System, UI Component Library & MCP (Model Context Protocol) Server
Beyond aesthetics, Apotheosis UX pioneers an AI-ready architecture—tailored for agent-driven experiences like RAG pipelines, conversational interfaces & generative UI. Built for seamless integration into AI coding environments via the Model Context Protocol (MCP).
Private Monorepository (Request Access) 🔐
Access to the core source code is currently restricted. Apotheosis UX Repository
Quick Start
Usage
Install Apotheosis UX Component Library
npm install @emeraldemperaur/apotheosis-uxConnect with AI Developer via MCP Server
Option A: Remote Enterprise Connection (Frictionless Authentication)
{
"mcpServers": {
"mito-ui": {
"url": "https://apotheosis-ux.onrender.com/mcp",
"transport": "http"
}
}
}Option B: Local CLI Connection (Authentication Key)
npm install -g @emeraldemperaur/mito-ui-mcp{
"mcpServers": {
"mito-ui-local": {
"command": "npx",
"args": ["@emeraldemperaur/apotheosis-ux-mcp", "--local"]
}
}
}Design System Tenets
System Architecture Overview
Build Tools
🎨 Frontend & Design Tools
🛠 Dev Tools & Workflow
🖥️ UI Component Library Deployment
☁️ Backend Templates & Build Tools
📡 MCP Server Integration
Monorepo Footnotes
Global install PNPM via NPM
npm install -g pnpmPublishing PNPM Workflow
NPM Authenticate
npm loginPublish using PNPM Filters
pnpm --filter package1name publish --access public
pnpm --filter package2name publish --access publicnpm login
pnpm --filter @emeraldemperaur/apotheosis-ux publish --access public
pnpm --filter @emeraldemperaur/apotheosis-ux-mcp publish --access publicInit Husky
# Install Husky in tandem with lint-staged at the workspace root
pnpm add -wD husky lint-staged
# Initialize Husky in workspace root to create .husky folder and update package.json scripts
pnpm exec husky initpnpm exec lint-stagedChangset Versioning
# Monorepo Root
pnpm add -wD @changesets/cli
# Initialize the config folder
pnpm exec changeset init
# Generate the Changeset
pnpm changesetCLI NPM Package Publish
# Run build
pnpm run build:all
# Localhost Monorepo NPM Publish
pnpm --filter @username/repo-name publish --access public --no-git-checks
pnpm --filter @username/reponame publish --access public --no-git-checks