SYSTEM OVERVIEW
MECHANICAL EVOLUTION ARCHIVE is an enterprise-grade classification system that catalogs the transformation of 70 biological entities into mechanical variants.
CORE FUNCTION
Cataloging and rendering of mech variants.
SECONDARY FUNCTION
Public API access and identity export.
ARCHITECTURE
NEXT.JS 14
FRONTEND / APP ROUTER
SUPABASE
POSTGRES / STORAGE
AI CORE
IMAGE GENERATION
DATA_MODEL_SCHEMA
table: pokemon_mechJSON
{
"id": "integer [PK]",
"original_name": "string",
"rank": "integer",
"type": "string",
// Biological Data
"original_image_url": "string (url)",
"lore_original_long": "text",
"traits_original": "string (csv)",
// Mech Variant Alpha
"robot_a_image_url": "string (url)",
"robot_a_lore_long": "text",
"robot_a_traits": "string (csv)",
"robot_a_ticker": "string ($TICK)",
// Mech Variant Omega
"robot_b_image_url": "string (url)",
"robot_b_lore_long": "text",
"robot_b_traits": "string (csv)",
"robot_b_ticker": "string ($TICK)"
}API_ACCESS
GET
/api/pokemonRetrieve full manifest summary.
GET
/api/pokemon/:idRetrieve secure file for specific specimen ID.