Back to Browse

Pixasso MCP Server

Developer ToolsLow Risk9.7LocalNew
Free

End-to-end frontend engineering and design orchestrator across 16 foundational pillars.

About

End-to-end frontend engineering and design orchestrator across 16 foundational pillars.

Security Report

9.7
Low Risk9.7Low Risk

Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. ⚠️ Package registry links to a different repository than scanned source. Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.

6 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-erebuzzz-pixasso": {
      "args": [
        "-y",
        "pixasso-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Pixasso

The Complete End-to-End Frontend Engineering & Design Orchestrator for AI Agents and Humans.

License: MIT npm version npm downloads MCP Server TypeScript Platform Support M8ven Score Live

Live Documentation and Showcase: pixasso.erebuzzz.tech


Overview

Pixasso is a senior design-research, intent-discovery, and full-spectrum frontend engineering orchestrator inspired by Picasso's exploratory breadth. It rejects cookie-cutter AI interfaces, purple gradients, Lucide icon flooding, and superficial templates. Instead, Pixasso guides autonomous coding agents (and human engineers) through a rigorous pipeline:

Intent Discovery -> Design Genome -> Decision Graph -> Capability Graph -> Task DAG -> Specialist Agents -> Automated QA

Pixasso unifies Art Direction, UX Architecture, Typography Direction, Motion Systems, Full-Stack Frontend Implementation, and Automated Multi-Viewport Testing into a single cohesive skill and Model Context Protocol (MCP) server.


Visual Showcase & Themes

Pixasso supports multi-mode aesthetic execution tailored to your product identity:

ThemeAesthetic ModeKey Visual Traits
Paper LightArchitectural EditorialWarm ivory (#fbfaf7), hairlines, wide grotesque display headlines, Newsreader serif body
CRT TerminalRetro Phosphor ComputingPhosphor emerald (#00ff66), scanlines, cathode vignette, bracket hotkeys [B], monospace telemetry
Pitch Black AMOLEDDeep Space OperationsTrue #000000 ground, cold metallic accents, sharp geometric borders, maximum contrast

Interface Previews

Pixasso Paper Light Theme Figure 1: Architectural Paper Light Theme with wide display headlines and generative wave synthesizer.

Pixasso CRT Terminal Theme Figure 2: Retro Cathode Ray Terminal Theme with phosphor glow, scanline shader, and telemetry HUD.

Pixasso AMOLED Pitch Black Theme Figure 3: Pitch Black AMOLED Theme optimized for high-contrast, edge-density operational dashboards.

Pixasso Responsive Mobile Viewport Figure 4: Mobile Viewport (390px) verified with zero horizontal DOM overflow and accessible touch targets.

Pixasso 3D Kinetic Sculpture Figure 5: 3D Kinetic Sculpture with procedural faceted cage, PBR metallic core, and orbital gimbal rings.

Pixasso 3D Gravitational Particle Galaxy Figure 6: 15,000 GPU particle galaxy in CRT phosphor mode with mouse gravitational attraction vectors.

Pixasso 3D Spatial Hardware Exploded View Figure 7: 5-Layer precision hardware assembly with interactive exploded-view disassembly slider and callouts.


The 16 Pillars of Frontend Architecture

Pixasso treats frontend engineering not as shallow visual styling, but as a complete 16-pillar software engineering discipline:

PillarDisciplineKey Technical Responsibilities
1. UI & Visual DesignDesign Systems & TokensSemantic color scales, modular typography scales, surface depth, spacing systems
2. Semantic HTML & JSXDocument StructureAccessible landmarks (main, nav, article), ARIA roles, microdata, zero div soup
3. Modern CSS SystemsStyling ArchitectureCSS custom properties, container queries, Cascade Layers (@layer), subgrid, zero-runtime CSS
4. TypeScript ExcellenceType SafetyStrict mode, discriminated unions for UI state, zero any, typed event handlers
5. Framework ArchitectureComponent LifecycleReact 19, Next.js App Router, Svelte 5 runes, Vue 3 Composition, Islands Architecture
6. State ManagementData Flow & CacheServer state (TanStack Query), client state (Zustand), URL search params as source of truth
7. API & Realtime DataNetwork TransportType-safe REST, GraphQL, WebSockets, Server-Sent Events, optimistic UI mutations
8. Client Authentication UXSession SecurityRoute protection guards, PKCE OAuth flows, token refresh queues, zero credential flicker
9. Forms & Input ValidationData IntegrityReact Hook Form, Zod schema validation, inline error hints, accessible fieldsets
10. Motion & AnimationKinetic DirectionMotion (motion.dev), GSAP timelines, WebGL canvas shaders, prefers-reduced-motion
11. Responsive DesignViewport VersatilityFluid typography (clamp()), container queries, adaptive layouts (390px to 2560px+)
12. Accessibility (WCAG)Inclusive DesignWCAG 2.2 AA/AAA compliance, screen reader tree, keyboard traps, focus rings, ARIA live
13. Core Web VitalsPerformance BudgetLCP under 1.2s, INP under 100ms, CLS at 0, streaming SSR, image srcset optimization
14. Frontend TestingVerification SuiteVitest component unit tests, Playwright end-to-end tests, visual regression checks
15. Tooling & BundlingDeveloper ExperienceVite, Turbopack, Biome/ESLint linting, automated dependency updates, Docker images
16. Deployment & CDNProduction ReleaseEdge runtime, CDN cache headers (stale-while-revalidate), atomic rollbacks, CI/CD

System Architecture

flowchart TB
    subgraph ClientLayer ["Client & IDE Integration"]
        Cursor["Cursor IDE"]
        Claude["Claude Desktop & Claude Code"]
        Antigravity["Google Antigravity & Gemini"]
        Codex["VS Code / Codex / Custom Agents"]
    end

    subgraph Protocol ["Transport Layer"]
        JSONRPC["Model Context Protocol (JSON-RPC 2.0 over Stdio)"]
        SkillsShim["Native Skills Runtime (SKILL.md)"]
    end

    subgraph PixassoCore ["Pixasso Engine"]
        Discovery["Adaptive Intent Discovery Matrix"]
        Genome["Design Genome Engine (YAML + Brain)"]
        TaskDAG["Dependency-Aware Task DAG"]
        Orchestrator["Specialist Agent Dispatcher"]
    end

    subgraph KnowledgeHub ["Curated Knowledge Catalogs"]
        Pillars["16 Frontend Architecture Pillars"]
        TypeSpec["Typography Systems & Variable Fonts"]
        MotionSpec["Motion Choreography & Spring Physics"]
        SensorySpec["Web Audio API UISFX Engine"]
        QASpec["Multi-Viewport & DOM Overflow Verification"]
    end

    subgraph Specialists ["Specialist Agent Roles"]
        ArtDir["Art Director"]
        UXArch["UX Architect"]
        TypeDir["Typography Director"]
        FrontArch["Frontend Architect"]
        QAEng["Interface QA Engineer"]
    end

    subgraph Delivery ["Shipped Artifacts"]
        Site["pixasso.erebuzzz.tech"]
        CodeProd["Production Component Code"]
        DesignBrain["Graphify Design Brain (.md)"]
        TestPlan["Operational Test Plan (.md)"]
    end

    ClientLayer --> Protocol
    Protocol --> PixassoCore
    PixassoCore <--> KnowledgeHub
    PixassoCore --> Specialists
    Specialists --> Delivery

Operating Principle: Intent to Validation

Pixasso enforces a structured workflow that turns user intent into verified production code:

flowchart LR
    A["Intent Discovery<br/>(ask_question)"] --> B["Design Genome<br/>(Tokens & Modes)"]
    B --> C["Design Brain<br/>(Mermaid Graph)"]
    C --> D["Reference Analysis<br/>(Benchmarks)"]
    D --> E["Task DAG<br/>(Dependencies)"]
    E --> F["Specialist Agents<br/>(Code & Motion)"]
    F --> G["Interface Testing<br/>(Multi-Viewport QA)"]
    G --> H["Final Verification<br/>(Shipped UI)"]
sequenceDiagram
    autonumber
    actor User as Developer / Designer
    participant Pixasso as Pixasso Orchestrator
    participant MCP as Pixasso MCP Server
    participant Genome as Design Genome
    participant Agents as Specialist Agents
    participant QA as Automated Interface QA

    User->>Pixasso: Request interface or application
    Pixasso->>User: Compulsory Popup Questions (ask_question)
    User-->>Pixasso: Theme, typography, dimensionality, conversion goals
    Pixasso->>MCP: pixasso_generate_genome
    MCP-->>Genome: Structured Design Genome (YAML)
    Pixasso->>MCP: pixasso_generate_brain
    MCP-->>Pixasso: Mermaid Decision Tree and Task DAG
    Pixasso->>Agents: Dispatch concurrent implementation tasks
    Agents-->>Pixasso: Production HTML5, Tailwind, TypeScript, Motion code
    Pixasso->>QA: Multi-viewport audit (390px, 768px, 1024px, 1440px)
    QA-->>Pixasso: Zero DOM overflow and accessibility sign-off
    Pixasso->>User: Verified components, live preview, and test report

Compulsory Popup Discovery Gate

Pixasso strictly forbids assuming generic defaults or hiding questions inside plans. Before generating code or planning architectures, agents must call ask_question across key dimensions:

flowchart TD
    Prompt["User Prompts New Project"] --> Popup["Compulsory Interactive Popup Modal (ask_question)"]

    subgraph Matrix ["Adaptive Discovery Matrix"]
        D1["Narrative & Theme<br/>(Paper, CRT-mono, Pitch Black, Brutalist, Editorial)"]
        D2["Typography Hierarchy<br/>(Display sans, warm editorial serif, technical mono)"]
        D3["Dimensionality Mode<br/>(2D Planar, 2.5D Parallax, 3D WebGL / Spline)"]
        D4["Sensory Feedback<br/>(Web Audio UISFX synthesized clicks and snaps)"]
        D5["Pillar Focus<br/>(State management, Zod forms, Auth UX, Realtime feeds)"]
    end

    Popup --> Matrix
    Matrix --> Answers["User Answers & Custom Requirements"]
    Answers --> Synthesize["Synthesize Design Genome & Task DAG"]

Installation & Setup

Pixasso works across all major AI development environments.

1. Unified Automatic Installer (Recommended)

Run the automated installer script from the root of the repository. It detects your installed platforms and configures them automatically:

# Clone the repository
git clone https://github.com/Erebuzzz/pixasso.git
cd pixasso

# Install dependencies and build MCP server
npm install
npm run build

# Run automated multi-platform installer
node scripts/install.js

The installer automatically configures:

  • Google Antigravity: Plugin package (plugins/pixasso) and active MCP configuration.
  • Cursor IDE: Global configuration (~/.cursor/mcp.json) and local project configuration (.cursor/mcp.json).
  • Claude Desktop: Native MCP server configuration (claude_desktop_config.json).
  • Claude Code: CLI tool configuration (claude mcp add).

2. Connection Transports

Pixasso provides dual transport architectures: a hosted remote edge endpoint (zero local setup) and a local stdio runner via npm.

flowchart TD
    subgraph Clients ["Supported MCP Clients"]
        C1["Cursor IDE"]
        C2["Claude Desktop"]
        C3["Claude Code CLI"]
        C4["Google Antigravity / Gemini"]
    end

    subgraph RemoteTransport ["Option A: Hosted Remote (Zero Local Runtime)"]
        R_URL["Endpoint: https://mcp.pixasso.erebuzzz.tech/mcp"]
        R_AUTH["GitHub OAuth 2.0 (read:user, user:email)"]
        R_KV["Edge KV Rate Limiter (200 calls/day per user)"]
        R_WORKER["Cloudflare Worker + Durable Objects"]

        R_URL --> R_AUTH --> R_KV --> R_WORKER
    end

    subgraph LocalTransport ["Option B: Local Stdio (Full Offline Execution)"]
        L_NPX["npx -y pixasso-mcp"]
        L_LOCAL["Node.js stdio JSON-RPC process"]

        L_NPX --> L_LOCAL
    end

    subgraph Engine ["Pixasso Design Engine (7 Tools)"]
        T1["pixasso_discover_intent"]
        T2["pixasso_search_references"]
        T3["pixasso_fetch_reference"]
        T4["pixasso_generate_genome"]
        T5["pixasso_generate_brain"]
        T6["pixasso_audit_design"]
        T7["pixasso_generate_test_plan"]
    end

    C1 & C2 & C3 & C4 -->|Remote HTTP SSE| R_URL
    C1 & C2 & C3 & C4 -->|Local Subprocess| L_NPX
    R_WORKER --> Engine
    L_LOCAL --> Engine
Option A: Hosted Remote Endpoint (Zero Local Runtime)

Connect any remote-compatible MCP client directly to:

https://mcp.pixasso.erebuzzz.tech/mcp
  • Zero dependencies: No Node.js runtime, no local dependencies, and zero background CPU usage.
  • Authentication: Secured with GitHub OAuth (read:user, user:email). On initial tool invocation, your client or browser will present an authorization link to authenticate your GitHub account.
  • Usage quota: 200 free tool calls per day per authenticated user, reset every 24 hours. Rate limits and sessions are managed ephemerally via Cloudflare KV.
  • Transport: Standard HTTP Streamable SSE (Server-Sent Events) adhering to the MCP specifications.
Cursor IDE (Remote)

Add to ~/.cursor/mcp.json or .cursor/mcp.json:

{
  "mcpServers": {
    "pixasso-remote": {
      "url": "https://mcp.pixasso.erebuzzz.tech/mcp"
    }
  }
}
Claude Desktop (Remote)

Add to %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "pixasso-remote": {
      "url": "https://mcp.pixasso.erebuzzz.tech/mcp"
    }
  }
}
Claude Code CLI (Remote)

Run directly from your terminal:

claude mcp add pixasso-remote --transport http https://mcp.pixasso.erebuzzz.tech/mcp
Google Antigravity & Gemini CLI (Remote)

Add to ~/.gemini/antigravity/mcp_config.json or ~/.gemini/config/mcp_config.json:

{
  "mcpServers": {
    "pixasso-remote": {
      "url": "https://mcp.pixasso.erebuzzz.tech/mcp"
    }
  }
}

Option B: Published npm Package (Local Stdio)

You can run Pixasso locally on any machine with Node.js installed using npx -y pixasso-mcp.

Cursor IDE

Add to ~/.cursor/mcp.json or .cursor/mcp.json:

{
  "mcpServers": {
    "pixasso": {
      "command": "npx",
      "args": ["-y", "pixasso-mcp"]
    }
  }
}

Or install via skills.sh:

npx skills add Erebuzzz/pixasso
Claude Desktop

Add to %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "pixasso": {
      "command": "npx",
      "args": ["-y", "pixasso-mcp"]
    }
  }
}
Claude Code CLI
claude mcp add pixasso npx -y pixasso-mcp

Or register the marketplace plugin:

/plugin marketplace add Erebuzzz/pixasso
Google Antigravity & Gemini CLI

Add to ~/.gemini/antigravity/mcp_config.json or ~/.gemini/config/mcp_config.json:

{
  "mcpServers": {
    "pixasso": {
      "command": "npx",
      "args": ["-y", "pixasso-mcp"]
    }
  }
}

Or install the skill bundle:

npx skills add Erebuzzz/pixasso
Local Repository Clone (Developers)

If running against your local clone instead of npm, replace "command": "npx" and "args": ["-y", "pixasso-mcp"] with:

{
  "mcpServers": {
    "pixasso": {
      "command": "node",
      "args": ["/path/to/pixasso/mcp-server/build/index.js"]
    }
  }
}

Tip: running node scripts/install.js configures your local clone path automatically across all installed editors.

ChatGPT / OpenAI Custom GPTs / Web UIs

For web-based LLMs, import the standalone system prompts located in:

  • skills/pixasso/prompts/pixasso-system-prompt.md
  • skills/pixasso/prompts/discovery-interview-prompt.md
  • skills/pixasso/prompts/design-critique-prompt.md

MCP Server Capabilities

The Pixasso MCP Server (mcp-server/) exposes the full design intelligence engine via standard JSON-RPC 2.0:

Tools

Every tool conforms to the official Model Context Protocol specification and declares all four directory hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint):

Tool NamePurposeParametersAnnotations / Hints
pixasso_discover_intentGenerates adaptive discovery questions across 16 pillars and brand identityprojectArchetype, description, targetAudience, hasBrandIdentity, referenceUrlsreadOnly, idempotent
pixasso_search_referencesSearches 31 curated catalogs (20 references, 11 templates)query, category, tagreadOnly, idempotent
pixasso_fetch_referenceFetches live HTML, extracts title/headings/readable text, and flags client SPAsurl, focusreadOnly, openWorld
pixasso_generate_genomeCompiles tokens into validated design-genome.yaml with reference verification hard gateprojectName, themeMode, groundTone, typography, colorTokens, dimensionality, motionFeel, referencesreadOnly, idempotent
pixasso_generate_brainGenerates Graphify-style Mermaid decision map and Task DAGprojectName, decisions, tasksreadOnly, idempotent
pixasso_audit_designAudits code against generic AI clichés, accessibility guidelines, and 16 pillarscomponentMarkup, contextDescriptionreadOnly, idempotent
pixasso_generate_test_planProduces automated multi-viewport testing matrix (390px, 768px, 1024px, 1440px)projectName, testUrl, testedViewportsreadOnly, idempotent

Resources

Access 31 curated knowledge resources directly through pixasso:// URIs (20 references and 11 templates):

  • pixasso://references/frontend-architecture-pillars
  • pixasso://references/typography-system
  • pixasso://references/sound-and-sensory-design
  • pixasso://references/interface-testing-and-qa
  • pixasso://references/anti-patterns-and-critique
  • pixasso://templates/design-genome
  • pixasso://templates/task-graph
  • pixasso://templates/interface-test-plan

Prompts

  • intent-discovery: Guides the user through adaptive requirement extraction.
  • frontend-architecture: Formulates component architecture across the 16 pillars.
  • design-critique: Provides objective design reviews rejecting AI clichés.
  • typography-direction: Generates hierarchical typography specifications.
  • interface-qa: Generates multi-device QA scripts and DOM assertions.

Showcase Examples

Explore standalone, fully-functional examples in examples/:

  • Edge Operations Dashboard: Live reactive metrics dashboard with Zod form validation, theme switcher, telemetry feed, and WCAG AA accessibility.
  • Paper Editorial Layout: Archival publication layout featuring wide grotesque headlines, Newsreader serif body, hairlines, and figure plates.
  • CRT Phosphor Terminal: Retro computing interface with scanlines, cathode vignette, bracket hotkeys, and simulated serial telemetry.
  • Harmonic Wave Synthesizer: Interactive mathematical wave canvas running in requestAnimationFrame with live audio oscillators.
  • 3D Spatial Visualization Suite: Interactive Three.js studio inspired by viettranx/3dviz-pro-max, featuring kinetic geometric sculptures, 15k GPU particle galaxy, and 5-layer exploded hardware assembly with camera presets and real-time shader controls.

3D Spatial Computing & WebGL Architecture (viettranx/3dviz-pro-max Inspiration)

Pixasso integrates proven 3D recipes inspired by viettranx/3dviz-pro-max directly into Pillar 10 (Motion & WebGL 3D):

flowchart TD
    subgraph Suite ["Three.js Spatial Studio (examples/3d-suite/)"]
        Renderer["WebGLRenderer with Antialiasing & Soft Shadows"]
        Orbit["OrbitControls with Damping & Preset Interpolation"]

        subgraph Recipes ["Proven Spatial Recipes"]
            R1["Kinetic Polyhedron Sculpture<br/>(Faceted cage, PBR metallic core, gyro gimbal rings)"]
            R2["Gravitational Particle Galaxy<br/>(15k GPU points, mouse gravity lens, velocity color)"]
            R3["Spatial Hardware Exploded View<br/>(5 mechanical layers, disassembly slider, 3D callouts)"]
        end

        subgraph Adapters ["Adaptive 3-Theme Sync"]
            T1["Paper Ivory Mode (#fbfaf7, ink wireframe, clay shading)"]
            T2["CRT Phosphor Mode (#0a0f0d, emerald wireframe, scanlines)"]
            T3["Pitch Black AMOLED Mode (#000000, chrome, cobalt rim light)"]
        end

        Renderer --> Recipes
        Orbit --> Recipes
        Adapters --> Recipes
    end

Deployment Architecture

Pixasso's showcase site (pixasso.erebuzzz.tech).

Primary: GitHub Pages via GitHub Actions

  • Pipeline: Automated build and push via .github/workflows/deploy-site.yml.
  • Domain: Root CNAME file mapped to pixasso.erebuzzz.tech.
  • Hosting & Edge: Fastly and GitHub global edge CDN with automatic Let's Encrypt SSL certificates.

Alternative: 1-Click Vercel Deployment

The repository includes a production-grade vercel.json configuration. You can optionally import Erebuzzz/pixasso into Vercel with zero build configuration:

  • Instant worldwide edge caching.
  • Clean routing for root site, examples, and screenshot assets.
  • Automatic preview deployments for pull requests.
flowchart LR
    Commit["git push origin main"] --> Actions["GitHub Actions Runner"]
    Actions --> Pages["GitHub Pages Edge CDN"]
    Pages --> Domain["pixasso.erebuzzz.tech<br/>(Automatic SSL)"]

    Commit -.-> Vercel["Optional: Vercel (vercel.json)"]
    Vercel -.-> Domain

Repository Structure

pixasso/
├── CNAME                              # Custom domain: pixasso.erebuzzz.tech
├── package.json                       # Root scripts and workspace config
├── README.md                          # Full-spectrum documentation and architecture
├── AGENTS.md / CLAUDE.md / GEMINI.md  # Multi-agent rules and behavioral guardrails
├── .cursorrules                       # Cursor IDE rules
├── .cursor/                           # Cursor project configs, rules, and skills
├── .github/workflows/deploy-site.yml  # Automated GitHub Pages CI/CD pipeline
├── assets/screenshots/                # Multi-viewport screenshots and visual proofs
├── examples/                          # Standalone craft demonstrations
│   ├── production-app/                # Edge Operations reactive dashboard
│   ├── paper-editorial/               # Archival editorial publication
│   ├── crt-terminal/                  # Phosphor CRT retro terminal
│   └── generative-wave/               # Mathematical wave synthesizer canvas
├── mcp-server/                        # Standalone TypeScript MCP Server
│   ├── package.json
│   ├── tsconfig.json
│   └── src/index.ts                   # JSON-RPC 2.0 tools, resources, and prompts
├── plugins/pixasso/                   # Antigravity plugin distribution
├── scripts/                           # Tooling, installer, and test suites
│   ├── install.js                     # Unified multi-platform installer
│   ├── test-mcp.js                    # Automated MCP JSON-RPC protocol test suite
│   └── serve.js                       # Local HTTP preview server
├── site/                              # Showcase site (pixasso.erebuzzz.tech)
│   ├── index.html                     # Live website with theme engine and audio
│   └── assets/                        # Web assets and mirrored screenshots
├── skills/pixasso/                    # CANONICAL installable agent skill
│   ├── SKILL.md                       # Main skill definition
│   ├── references/                    # 20 curated design-research catalogs
│   ├── templates/                     # Operational templates (Genome, DAG, QA)
│   └── prompts/                       # Modular agent prompts
└── references/                        # Editable root reference catalogs

Automated Interface Testing & QA

Pixasso treats testing as a core design deliverable:

flowchart TD
    Code["Generated Component Markup"] --> DevServer["Local Dev Server / generative_ui"]
    DevServer --> Resizer["Multi-Viewport Sweep (chrome-devtools-mcp)"]

    subgraph Matrix ["Viewport Matrix"]
        V1["390px Mobile Viewport"]
        V2["768px Tablet Viewport"]
        V3["1024px Laptop Viewport"]
        V4["1440px Desktop Viewport"]
    end

    Resizer --> Matrix
    Matrix --> DOMCheck["DOM Overflow & Layout Audit<br/>(scrollWidth vs innerWidth)"]

    subgraph Gates ["Automated Quality Gates"]
        G1["Zero Horizontal Overflow"]
        G2["Touch Targets >= 44px"]
        G3["Visible Focus Rings & ARIA Roles"]
        G4["Web Audio Latency < 10ms"]
    end

    DOMCheck --> Gates
    Gates --> SignOff["Sign Off in interface-test-plan.md"]

Anti-Pattern Stance

Pixasso actively guards against generic AI aesthetics:

  • No Purple Gradients: Replaced with intentional monochrome palettes, warm paper tones, or phosphor glow.
  • No Lucide Flooding: Every icon must serve a precise informational function.
  • No Blanket Glassmorphism: High-contrast borders, solid surface tokens, and crisp architectural lines replace muddy blurred cards.
  • No Decorative-Only Motion: Animations must be communicative, respect prefers-reduced-motion, and run under 300ms.

License & Privacy

Reviews

No reviews yet

Be the first to review this server!