feat: add 112 PC culture-themed prompts across all 16 challenge types

Satirical and irreverent — cancel culture, DEI absurdity, trigger
warnings, virtue signaling, safe spaces. Mocking the absurdity,
never punching down.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-09 08:20:10 +00:00
co-authored by Claude Opus 4.6
parent bec75e0e82
commit a10c1c9cb6
2 changed files with 169 additions and 0 deletions
+3
View File
@@ -2,6 +2,7 @@ import { TEMPLATES, type ChallengeTemplate, type PromptEntry, type PromptTheme,
import { EXTRA_PROMPTS } from './challenges-extra.js'
import { BITCOIN_PROMPTS } from './challenges-bitcoin.js'
import { CONSPIRACY_PROMPTS } from './challenges-conspiracy.js'
import { PC_PROMPTS } from './challenges-pc.js'
import { pick } from '../lib/utils.js'
export interface Challenge {
@@ -27,6 +28,8 @@ for (const t of TEMPLATES) {
if (btc) t.prompts.push(...btc)
const conspiracy = CONSPIRACY_PROMPTS[t.type]
if (conspiracy) t.prompts.push(...conspiracy)
const pc = PC_PROMPTS[t.type]
if (pc) t.prompts.push(...pc)
}
// ═══════════════════════════════════════════════