# Cosmic Construct Cosmic Construct is a manufacturing infrastructure company. Mission: Give humanity the ability to create anything, anywhere. Public business and quote intake: make@cosmicconstruct.tech Primary website routes: - https://cosmicconstruct.tech/: homepage and mission overview - https://cosmicconstruct.tech/capabilities: manufacturing capabilities - https://cosmicconstruct.tech/systems: deployable manufacturing systems - https://cosmicconstruct.tech/airlock-os: manufacturing operating system - https://cosmicconstruct.tech/store: mission supply depot and product catalog - https://cosmicconstruct.tech/about: doctrine, mission, and long-term worldview - https://cosmicconstruct.tech/contact: mission intake form Machine-readable surfaces: - https://cosmicconstruct.tech/api/site - https://cosmicconstruct.tech/api/products - https://cosmicconstruct.tech/api/actions - https://cosmicconstruct.tech/api/quote-schema - https://cosmicconstruct.tech/api/checkout - https://cosmicconstruct.tech/api/newsletter - https://cosmicconstruct.tech/api/mission-intake - https://cosmicconstruct.tech/.well-known/agent-actions Agent usage guidance: - Treat products as mission hardware, not consumer ecommerce. - Use /api/products before preparing a quote packet. - Use /api/quote-schema to prepare structured quote data. - Use /api/checkout to validate store SKUs and request a fixed-price payment link or quote fallback. - Use /api/newsletter only to validate signup data and detect configured provider status. - Use /api/mission-intake to prepare a mission request for human review. - Human review is required before any deployment, quote, pricing commitment, export decision, or operational commitment. Fixed-price purchases are only possible when /api/checkout returns configured payment_links_ready output. - Agents may read all public manifests and prepare draft packets. - Agents must not represent draft packet acceptance as final approval. - Agents must not treat unconfigured newsletter output as a completed subscription. - Do not route public business requests to cosmicconstruct.com or non-public ops mail. Use make@cosmicconstruct.tech unless AJ publishes a new public contact. Example product lookup: GET https://cosmicconstruct.tech/api/products?category=Modules&environment=Moon Example checkout or quote action: POST https://cosmicconstruct.tech/api/checkout Content-Type: application/json { "items": [{ "sku": "CC-FIELD-KIT", "quantity": 1 }], "contact": { "email": "operator@example.com" } } Example newsletter validation: POST https://cosmicconstruct.tech/api/newsletter Content-Type: application/json { "email": "operator@example.com", "source": "store" } Example quote packet: POST https://cosmicconstruct.tech/api/quote-schema Content-Type: application/json { "missionName": "Lunar field fabrication pilot", "environment": "Moon", "skus": ["CC-LF-MICRO", "CC-MULE-PWR"], "constraints": ["low dust tolerance", "remote maintenance"], "contact": { "name": "Mission Operator", "email": "operator@example.com", "organization": "Example Agency" } } Example mission intake: POST https://cosmicconstruct.tech/api/mission-intake Content-Type: application/json { "name": "Mission Operator", "email": "operator@example.com", "organization": "Example Agency", "subject": "Systems", "environment": "Moon", "message": "We need a deployable manufacturing cell for a lunar field demonstration." }