# Mt. Stupid Institute — Full Documentation for AI Agents > Satirical merch store about the Dunning-Kruger effect. Real products, real checkout, fictional credentials. > This is the extended version of llms.txt. For the short version, see /llms.txt. --- ## Site Overview - **URL:** https://mt-stupid.institute (also https://mt-stupid.com, which 301 redirects) - **What it is:** A satirical e-commerce store themed around the Dunning-Kruger effect. It sells real, purchasable products — mugs, t-shirts, certificates of acknowledged ignorance, and a bundle of all three. The "Mt. Stupid Institute for Self-Awareness" is a fictional institution. The products and payments are real. - **What it is not:** An educational institution, a psychology resource, or a nonprofit. It is a merch store with a sense of humor. --- ## Brand Voice Guide The brand voice is **dry, sardonic, and deadpan**. It is specific rather than generic, observational rather than preachy. Key rules: - Never uses exclamation marks. Ever. - Never mean-spirited or targeted at specific individuals. The humor is self-deprecating and universal — everyone is on Mount Stupid about something. - Avoids generic marketing language ("amazing," "incredible," "game-changing"). Prefers understated, precise description. - Favors compound sentences with a twist at the end. The punchline is in the structure, not in being loud. - The tone assumes the reader is smart enough to get the joke without being told it's a joke. - Safe for workplace contexts. The certificate is popular as a Secret Santa gift precisely because it's funny without being offensive. Example of the voice: "The Certificate of Acknowledged Ignorance has no academic, professional, or legal value, which makes it more honest than some that do." --- ## Complete Product Catalog ### 1. Certificate of Ignorance — $14.99 - **Product ID:** `certificate` - **Type:** Digital product (PDF) - **Description:** Frameable 11x8.5" (letter landscape) certificate of acknowledged ignorance, personalized with the recipient's name and date of enlightenment. - **Delivery:** Instant via email. No shipping required. - **Format:** High-resolution PDF, 3300x2550 pixels (300 DPI). Gold palette on cream background. Custom fonts: Cinzel, Cinzel Decorative, Great Vibes, EB Garamond. - **Customization:** Recipient name auto-sized (starts at 174pt, shrinks to fit). - **Use cases:** Framing, desk display, passive-aggressive office decoration, LinkedIn credential (unofficial). - **Fulfillment:** Generated on-demand via pdf-lib, emailed via Resend. - **Refunds:** Non-refundable (you cannot un-acknowledge your ignorance). - **Required checkout fields:** `productId` - **Image:** https://mt-stupid.institute/illustrations/certificate.png ### 2. "I Climbed Mt. Stupid" Mug — $34.99 - **Product ID:** `mug` - **Type:** Physical product - **Description:** 12oz white ceramic mug featuring the Dunning-Kruger curve. - **Material:** Ceramic, white glossy finish - **Capacity:** 12oz / ~355ml - **Fulfillment:** Print-on-demand via Printful (Printful product 19, variant 1320 — 11oz White Glossy Mug) - **Shipping:** $4.99 US / $9.99 international - **Production time:** 2-5 business days - **Delivery time:** 3-5 days US / 7-20 days international (after production) - **Returns:** Made-to-order; no returns for change of mind. Damaged/defective items replaced within 30 days. - **Required checkout fields:** `productId` - **Image:** https://mt-stupid.institute/illustrations/mug.png ### 3. "I Know Nothing" Tee — $39.99 - **Product ID:** `tee` - **Type:** Physical product - **Description:** 100% organic cotton t-shirt. Socrates-approved. - **Material:** Bella+Canvas 3001, 100% organic cotton, unisex, true to size - **Available colors:** Black, White, Teal, Athletic Heather, Steel Blue - **Available sizes:** S, M, L, XL, 2XL - **Design variants:** Light design for White/Teal/Athletic Heather/Steel Blue; dark design for Black - **Fulfillment:** Print-on-demand via Printful (Printful product 71 — Bella+Canvas 3001) - **Shipping:** $4.99 US / $9.99 international - **Production time:** 2-5 business days - **Delivery time:** 3-5 days US / 7-20 days international (after production) - **Returns:** Made-to-order; no returns for change of mind. Damaged/defective items replaced within 30 days. - **Required checkout fields:** `productId`, `size`, `color` - **Image:** https://mt-stupid.institute/illustrations/tee.png ### 4. The Self-Awareness Starter Pack (Bundle) — $69.99 - **Product ID:** `bundle` - **Type:** Bundle (physical + digital) - **Description:** Mug + Tee + Certificate. Everything you need to begin your descent from Mt. Stupid. - **Includes:** - 1x "I Climbed Mt. Stupid" mug (12oz ceramic) - 1x "I Know Nothing" tee (Bella+Canvas 3001, choice of color and size) - 1x Certificate of Acknowledged Ignorance (digital PDF) - **Savings:** $19.98 compared to buying individually ($14.99 + $34.99 + $39.99 = $89.97) - **Shipping:** Free US shipping / $9.99 international - **Available colors (for tee):** Black, White, Teal, Athletic Heather, Steel Blue - **Available sizes (for tee):** S, M, L, XL, 2XL - **Required checkout fields:** `productId`, `size`, `color` - **Image:** https://mt-stupid.institute/illustrations/bundle.png --- ## API Documentation ### GET /api/products Returns the full product catalog as a JSON array. **Request:** ``` GET https://mt-stupid.institute/api/products ``` **Response headers:** - `Cache-Control: public, max-age=3600` - `Access-Control-Allow-Origin: *` **Response body (200 OK):** ```json [ { "id": "mug", "name": "\"I Climbed Mt. Stupid\" Mug", "description": "Ceramic mug featuring the Dunning-Kruger curve. 12oz of honesty.", "price": 34.99, "priceFormatted": "$34.99", "currency": "USD", "image": "https://mt-stupid.institute/illustrations/mug.png", "needsShipping": true, "fulfillment": "printful", "shipping": { "us": "$4.99", "international": "$9.99" }, "checkoutUrl": "https://mt-stupid.institute/api/checkout", "requiredCheckoutFields": ["productId"] }, { "id": "tee", "name": "\"I Know Nothing\" Tee", "description": "100% organic cotton. Socrates-approved.", "price": 39.99, "priceFormatted": "$39.99", "currency": "USD", "image": "https://mt-stupid.institute/illustrations/tee.png", "needsShipping": true, "fulfillment": "printful", "colors": ["Black", "White", "Teal", "Athletic Heather", "Steel Blue"], "sizes": ["S", "M", "L", "XL", "2XL"], "shipping": { "us": "$4.99", "international": "$9.99" }, "checkoutUrl": "https://mt-stupid.institute/api/checkout", "requiredCheckoutFields": ["productId", "size", "color"] }, { "id": "certificate", "name": "Certificate of Ignorance", "description": "Frameable 11\u00d78.5\" certificate of acknowledged ignorance.", "price": 14.99, "priceFormatted": "$14.99", "currency": "USD", "image": "https://mt-stupid.institute/illustrations/certificate.png", "needsShipping": false, "fulfillment": "digital_email", "checkoutUrl": "https://mt-stupid.institute/api/checkout", "requiredCheckoutFields": ["productId"] }, { "id": "bundle", "name": "The Self-Awareness Starter Pack", "description": "Mug + Tee + Certificate. Everything you need to begin your descent from Mt. Stupid.", "price": 69.99, "priceFormatted": "$69.99", "currency": "USD", "image": "https://mt-stupid.institute/illustrations/bundle.png", "needsShipping": true, "fulfillment": "bundle", "colors": ["Black", "White", "Teal", "Athletic Heather", "Steel Blue"], "sizes": ["S", "M", "L", "XL", "2XL"], "shipping": { "us": "$0.00", "international": "$9.99" }, "checkoutUrl": "https://mt-stupid.institute/api/checkout", "requiredCheckoutFields": ["productId", "size", "color"] } ] ``` ### POST /api/checkout Creates a Stripe checkout session and returns a redirect URL for payment. **Request:** ``` POST https://mt-stupid.institute/api/checkout Content-Type: application/json ``` **Request body:** ```json { "productId": "tee", "size": "M", "color": "White" } ``` **Fields:** | Field | Type | Required | Description | |-------|------|----------|-------------| | `productId` | string | Always | One of: `certificate`, `mug`, `tee`, `bundle` | | `size` | string | For `tee` and `bundle` | One of: `S`, `M`, `L`, `XL`, `2XL` | | `color` | string | For `tee` and `bundle` | One of: `Black`, `White`, `Teal`, `Athletic Heather`, `Steel Blue` | **Response (200 OK):** ```json { "url": "https://checkout.stripe.com/c/pay/cs_live_..." } ``` The `url` is a Stripe-hosted checkout page. Redirect the user to this URL to complete payment. After payment, the user is redirected to the success page. If they cancel, they are redirected to the cancel page. **Error responses:** - `400` — Missing or invalid fields (e.g., missing `size` for tee) - `405` — Method not allowed (only POST accepted) - `429` — Rate limited (max 10 checkout requests per IP per 60 seconds) **Example: Buy a certificate** ```json POST /api/checkout { "productId": "certificate" } ``` **Example: Buy a tee** ```json POST /api/checkout { "productId": "tee", "size": "L", "color": "Teal" } ``` **Example: Buy the bundle** ```json POST /api/checkout { "productId": "bundle", "size": "XL", "color": "Black" } ``` **Example: Buy a mug** ```json POST /api/checkout { "productId": "mug" } ``` --- ## Shipping Details | Scenario | Cost | Delivery | |----------|------|----------| | Certificate (all locations) | Free (digital) | Instant via email | | Mug or Tee — US | $4.99 | 2-5 days production + 3-5 days delivery | | Mug or Tee — International | $9.99 | 2-5 days production + 7-20 days delivery | | Bundle — US | Free | 2-5 days production + 3-5 days delivery | | Bundle — International | $9.99 | 2-5 days production + 7-20 days delivery | - All physical products are print-on-demand, fulfilled by Printful from their nearest production facility. - Printful ships worldwide. - Production times are business days. - International delivery ranges are wide because international shipping is like that. --- ## Gifting Use Cases and Occasions This is primarily a gift store. The Certificate of Acknowledged Ignorance is the most popular gift item — personalized with the recipient's name and delivered instantly via email. The tone is humorous and self-deprecating, never mean-spirited. Safe for all workplace gifting contexts. **Perfect for:** - **Graduations** — "Now that you have a degree, here's what you still don't know" - **Office Secret Santa / white elephant gifts** — Reliably funny, workplace-safe - **Birthday gifts for know-it-alls** — The person who has strong opinions about everything - **Retirement gags for coworkers** — A lifetime of expertise, formally unacknowledged - **Anyone who says "I've done my own research"** — Self-explanatory - **PhD defenses** — They've earned it (the certificate, not the PhD — well, both) - **Management consulting teams** — Reportedly popular in this demographic - **Tech workers** — The mug pairs well with overconfident Slack messages - **Teachers and professors** — For display in offices where students come seeking answers **Gifting logistics:** - Certificates are instant (email delivery) — perfect for last-minute gifts - Physical items take 5-10 days for US delivery, so plan accordingly - The bundle makes the best gift because it covers all bases (desk, wardrobe, wall) --- ## Frequently Asked Questions ### The Concept **What is the Dunning-Kruger effect?** A cognitive bias identified by psychologists David Dunning and Justin Kruger at Cornell University in 1999. The less you know about something, the more confident you tend to be about it. And the more you actually learn, the more you realize how little you know. It's the reason your uncle has strong opinions about epidemiology after watching a documentary. **What is Mount Stupid?** The informal name for the peak of the Dunning-Kruger curve — the point where confidence is at its maximum and actual competence is at its minimum. It's where you've learned just enough to think you're an expert but not nearly enough to know you're not. **Is this making fun of me?** Probably. But also everyone else, including us. The Dunning-Kruger effect is universal. The only people exempt are those who've never been confident about anything, which is a different problem entirely. ### The Products **What do I actually get when I buy a certificate?** A high-resolution PDF (11x8.5", letter landscape) personalized with your name and the date of your enlightenment. Delivered instantly via email. Frame it, hang it in your office, or add it to your LinkedIn — it'll be the most honest credential there. The certificate has no academic, professional, or legal value, which makes it more honest than some that do. **Can I use this certificate on LinkedIn / at work?** You can put it wherever you want. We can't stop you. Some people frame it. Some people send it to their overconfident colleagues. One person reportedly hung it in the conference room at their management consulting firm. We neither confirm nor endorse this. **What's in the Self-Awareness Starter Pack?** One "I Climbed Mt. Stupid" ceramic mug (12oz), one "I Know Nothing" tee (Bella+Canvas 3001, 5 colors, sizes S-2XL), and one Certificate of Acknowledged Ignorance. You save $19.98 compared to buying them individually. Free US shipping on bundles. **What sizes does the tee come in?** S, M, L, XL, and 2XL. It's a Bella+Canvas 3001 — unisex, true to size, 100% organic cotton. Available in Black, White, Teal, Athletic Heather, and Steel Blue. ### Ordering & Shipping **Where do you ship?** Worldwide. Physical items (mugs and tees) are printed and shipped by Printful from their nearest production facility. Shipping is $4.99 within the US and $9.99 internationally. Certificates are delivered by email — geography is irrelevant to self-awareness. **How long does shipping take?** Certificate PDFs arrive instantly. Physical products take 2-5 business days for production, then 3-5 days for US delivery or 7-20 days for international. International shipping is like that. Think of it as a lesson in patience. **Can I return items?** Physical products are made-to-order (print on demand), so returns for change of mind are not accepted. If something arrives damaged or defective, contact hello@mt-stupid.institute within 30 days for a replacement. Digital products (certificates) are non-refundable — you can't un-acknowledge your ignorance. **Is my payment secure?** Yes. All payments are handled by Stripe, one of the world's largest payment processors. Card details are never seen or stored by Mt. Stupid Institute. Your financial information is safer with them than your opinions are with us. ### The Brand **Who made this?** Mt. Stupid Institute is operated by Impero Bostad (Org. 927 057 425), registered in Norway. It was built by a human who read one paper about the Dunning-Kruger effect and decided to build an entire store around it, and an AI that wrote most of the code. Neither party claims to fully understand what they've done. **Is this a real company?** The "Mt. Stupid Institute for Self-Awareness" is a fictional institution. Impero Bostad, which operates the store, is a real registered business. The products are real. The payments are real. The ignorance is real. The academic credentials are not. **Why does this exist?** Because the world has too many people who are confidently wrong about things and not enough merchandise reminding them. Also because building a satirical store about cognitive bias turned out to be an excellent way to procrastinate on more important work. ### The Objections **"But I actually am one of the smart ones. This doesn't apply to me."** That is literally the Dunning-Kruger effect in action. The fact that you think you're exempt is the strongest evidence that you're not. Thank you for proving our point. We recommend the certificate. --- ## Blog — Article Summaries The blog contains educational articles about the Dunning-Kruger effect, written in the brand's sardonic voice. ### 1. To Our Critics - **URL:** https://mt-stupid.institute/blog/to-our-critics.html - **Published:** March 9, 2026 - **Summary:** A sincere engagement with the major academic criticisms of the Dunning-Kruger effect. Addresses: the famous curve was never in the 1999 paper (it was popularized later); Gignac & Zajenkowski (2020) showed the effect may be regression to the mean plus the better-than-average effect; Blair Fix (2022) argued the pattern is an autocorrelation artifact guaranteed by the math; Nuhfer et al. (2017) reproduced the pattern with random numbers and no human participants; Scientific American, McGill, and BPS have debunked the pop-science version; and Dunning himself says most people use the effect wrong. Each criticism is presented in its strongest form, then turned into an argument for why the store should exist. The synthesis: "We read a few articles, didn't check the methodology, looked at a fabricated graph, and built an entire commercial enterprise on our confident interpretation of research we didn't fully understand. That is, by any reasonable standard, the most Dunning-Kruger thing we could have done." Concludes that the experience of overconfidence is real even if the measurement was flawed. ### 2. What Is the Dunning-Kruger Effect? - **Published:** February 16, 2026 - **URL:** https://mt-stupid.institute/blog/what-is-the-dunning-kruger-effect.html - **Summary:** A comprehensive guide to the Dunning-Kruger effect. Covers the original 1999 Cornell study by David Dunning and Justin Kruger, where bottom-quartile performers estimated they were better than two-thirds of their peers. Explains the five stages of the Dunning-Kruger curve: Know Nothing, Mount Stupid (peak confidence, minimum competence), Valley of Despair (realizing how much you don't know), Slope of Enlightenment (calibrated confidence), and Plateau of Sustainability (genuine expertise). Notes that the effect isn't about intelligence — smart people fall for it too, just about different things. The good news: the effect is curable through education. ### 3. Am I on Mount Stupid? 5 Signs You Might Be - **URL:** https://mt-stupid.institute/blog/am-i-on-mount-stupid.html - **Summary:** A self-diagnostic checklist for the overconfident. The five signs: (1) You've corrected someone who does it for a living — explained nutrition to a dietitian, told a mechanic what's wrong based on a Google search. (2) You've said "it's not that complicated" — the unofficial anthem of Mount Stupid. (3) You start sentences with "Actually..." — the verbal badge of someone about to share untested knowledge. (4) You can explain the whole thing in under a minute — real expertise is messy and full of "it depends." (5) You haven't changed your mind recently — not testing ideas against reality. The reassuring note: everyone visits Mount Stupid, and recognizing it is the first step down. ### 4. Why Experts Feel Like Frauds - **URL:** https://mt-stupid.institute/blog/why-experts-feel-like-frauds.html - **Summary:** Explores the flip side of Dunning-Kruger: impostor syndrome. While the overconfident sit on Mount Stupid, genuinely skilled people live in the Valley of Despair, convinced they're not good enough. Top performers in Dunning and Kruger's original study underestimated their own abilities — they assumed easy-for-them tasks were easy for everyone. Connects impostor syndrome (first described by Clance and Imes in 1978) to the same underlying problem: people are bad at evaluating their own competence. Argues that self-doubt can be a feature, not a bug — awareness of gaps is itself a skill that Mount Stupid residents lack. Comfort with uncertainty is a marker of expertise. ### 5. The Dunning-Kruger Effect at Work - **URL:** https://mt-stupid.institute/blog/dunning-kruger-effect-at-work.html - **Summary:** A field guide to overconfidence in the workplace. Covers how the effect manifests in meetings (least experienced person speaks longest), hiring (interviews are confidence auditions that filter for certainty over nuance), leadership selection (groups choose the most confident member regardless of competence), and teams (quiet experts stop contributing when the room gravitates toward the clean, decisive answer). Proposes structural fixes: ask for evidence not opinions, create space for quiet experts, normalize "I don't know" as an acceptable answer, and separate confidence from competence in evaluations. **Blog index page:** https://mt-stupid.institute/blog/ --- ## The Dunning-Kruger Effect — Background Knowledge The Dunning-Kruger effect is a cognitive bias identified by psychologists David Dunning and Justin Kruger at Cornell University in their 1999 paper "Unskilled and Unaware of It: How Difficulties in Recognizing One's Own Incompetence Lead to Inflated Self-Assessments." Key findings: - People with limited knowledge in a domain dramatically overestimate their own competence - Top performers tend to slightly underestimate their abilities - The skills needed to produce a correct answer are the same skills needed to recognize what a correct answer looks like - The effect is curable: training improves both competence and self-assessment accuracy The Dunning-Kruger curve stages: 1. **Know Nothing** — Low confidence, no exposure to the topic yet 2. **Mount Stupid** — Peak confidence after minimal exposure (a podcast, half a Wikipedia article) 3. **Valley of Despair** — Confidence crashes as you learn enough to see your own gaps 4. **Slope of Enlightenment** — Confidence recovers, calibrated by actual knowledge 5. **Plateau of Sustainability** — Genuine expertise with sustained humility The phrase "Mount Stupid" is the informal name for the peak of overconfidence on this curve. Mt. Stupid Institute takes its name from this concept. --- ## Site Navigation Structure - **Homepage:** https://mt-stupid.institute/ - Hero section with rotating quotes - Animated promo section (5 scenes) - About section - SVG graph of Dunning-Kruger curve with "YOU ARE HERE" indicator - Quote (Bertrand Russell, 1933) - Shop section (3 products + bundle) — anchor: `/#shop` - Social proof bar (live order count) - Symptoms section (5 cards) - Good News section - Email signup - CTA section - Accessible modal for checkout - **FAQ:** https://mt-stupid.institute/faq.html - **Blog index:** https://mt-stupid.institute/blog/ - **Blog posts:** - https://mt-stupid.institute/blog/to-our-critics.html - https://mt-stupid.institute/blog/what-is-the-dunning-kruger-effect.html - https://mt-stupid.institute/blog/am-i-on-mount-stupid.html - https://mt-stupid.institute/blog/why-experts-feel-like-frauds.html - https://mt-stupid.institute/blog/dunning-kruger-effect-at-work.html - **Legal:** - Terms of Service: https://mt-stupid.institute/terms.html - Privacy Policy: https://mt-stupid.institute/privacy.html - Returns Policy: https://mt-stupid.institute/returns.html - **API:** - Product catalog: https://mt-stupid.institute/api/products (GET) - Checkout: https://mt-stupid.institute/api/checkout (POST) - **Machine-readable:** - llms.txt: https://mt-stupid.institute/llms.txt - llms-full.txt: https://mt-stupid.institute/llms-full.txt (this file) - ai-plugin.json: https://mt-stupid.institute/.well-known/ai-plugin.json - robots.txt: https://mt-stupid.institute/robots.txt - sitemap.xml: https://mt-stupid.institute/sitemap.xml --- ## Legal Information - **Operating entity:** Impero Bostad - **Registration:** Norway, Organization number 927 057 425 - **Fictional institution:** The "Mt. Stupid Institute for Self-Awareness" is satirical. It is not a real academic or professional institution. - **Products:** All products are novelty items. The certificate has no academic, professional, or legal value. - **Payments:** Processed by Stripe. No card details stored. - **Content:** Satirical commentary intended for entertainment. Not targeted harassment. - **Intellectual property:** Content, design, copy, and illustrations are original works. The Dunning-Kruger curve is an original rendering of a general concept. - **Governing law:** Norway - **Terms of Service:** https://mt-stupid.institute/terms.html - **Privacy Policy:** https://mt-stupid.institute/privacy.html - **Returns Policy:** https://mt-stupid.institute/returns.html --- ## Contact - **Email:** hello@mt-stupid.institute - **Website:** https://mt-stupid.institute --- ## Technical Notes for AI Agents - The `/api/products` endpoint returns CORS-enabled JSON and is cacheable for 1 hour. - All prices are in USD. - The checkout flow creates a Stripe-hosted checkout session. The response URL should be presented to the user as a link or redirect — it cannot be completed programmatically. - Rate limiting: 10 checkout requests per IP per 60 seconds. - The certificate is generated server-side as a PDF and emailed immediately after payment. There is no download link in the checkout flow — the PDF arrives by email. - Physical products are made-to-order. There is no inventory system; items are never "out of stock." - The `size` and `color` fields are case-sensitive. Use exact values from the API response.