[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-76091":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":14,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":16,"rankGlobal":10,"rankLanguage":10,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":20,"hasPages":18,"topics":21,"createdAt":10,"pushedAt":10,"updatedAt":30,"readmeContent":31,"aiSummary":32,"trendingCount":15,"starSnapshotCount":15,"syncStatus":33,"lastSyncTime":34,"discoverSource":35},76091,"grok-dreamcore","shefyYuri\u002Fgrok-dreamcore","shefyYuri","Surreal dream sequence engine — procedural narrative generation from emotional state, memory anchors, and symbolic archetypes","",null,"Python",312,37,1,0,4.74,"Other",false,"main",true,[22,23,24,25,26,27,28,29],"binary","cli","ctf","entropy","llm","python","terminal","xai","2026-06-12 02:03:39","# grok-dreamcore\n\nSurreal dream sequence engine. Procedural narrative generation from emotional state, memory anchors, and symbolic archetypes.\n\n## What it does\n\nGenerates multi-layered dream sequences with:\n\n- **Scene generation** — species-specific and universal dream locations with tone-appropriate atmosphere.\n- **Sensory frames** — multi-channel perceptual content (visual, auditory, tactile, kinesthetic, temporal, synesthetic).\n- **Memory anchors** — dreams reference real interaction memories, modeling consolidation during sleep.\n- **Symbol resonance** — 27 Jungian archetypes selected by emotional consonance with the dreamer's mood.\n- **Narrative arcs** — descent, ascent, cycle, and scatter arc types with pacing curves.\n- **Emotional impact** — dreams shift the dreamer's emotional state (anxiety reduction, curiosity boost).\n\n## Install\n\n```bash\npip install grok-dreamcore\n```\n\n## Quick start\n\n```python\nfrom dreamcore import DreamEngine, DreamConfig\nfrom dreamcore.engine import EmotionalContext\n\nengine = DreamEngine(config=DreamConfig(depth=4, style=\"surreal\"))\n\ncontext = EmotionalContext(\n    mood={\"curiosity\": 0.8, \"mischief\": 0.5},\n    recent_topics=[\"ocean\", \"scheming\", \"old conversations\"],\n    memory_fragments=[\"we talked about underwater libraries\"],\n    companion_species=\"octopus\",\n    personality_chaos=0.7,\n)\n\nsequence = engine.generate(context)\nprint(sequence.narrate())\nprint(f\"Symbols: {sequence.symbols}\")\nprint(f\"Impact: {sequence.emotional_impact}\")\n```\n\n## Dream structure\n\n```\nDreamSequence (theme, arc, tone)\n    └── DreamFragment (scene, location, tone, lucidity)\n        └── DreamFrame (sensory content, channel, intensity, distortion)\n```\n\n## Configuration\n\n```python\nDreamConfig(\n    depth=4,                  # Fragment count (1-7)\n    frames_per_fragment=3,    # Sensory frames per scene (2-6)\n    style=\"surreal\",          # surreal | narrative | abstract | lucid\n    memory_probability=0.35,  # Chance of memory anchor per fragment\n    distortion_base=0.3,      # Base surreal distortion (0.0-1.0)\n    symbol_density=2,         # Symbols per fragment\n    sensory_diversity=0.6,    # Channel variety (0.0-1.0)\n    arc_type=\"auto\",          # auto | descent | ascent | cycle | scatter\n)\n```\n\n## Symbol archetypes\n\n27 built-in archetypes with emotional resonance scores:\n\nspiral, mirror, key, door, water, fire, shadow, light, clock, eye, thread, bridge, mask, seed, shell, feather, bone, crystal, ink, echo, vortex, root, constellation, labyrinth, anvil, web, fog, tower.\n\nEach archetype resonates with specific emotions. The resonance system automatically selects symbols that match the dreamer's current mood.\n\n## Species support\n\nSpecies-specific scene pools for: octopus, wolf, dragon, phoenix, cat. Universal scenes available for all species.\n\n## License\n\nApache License 2.0\n","grok-dreamcore 是一个生成超现实梦境序列的引擎，通过情感状态、记忆锚点和象征性原型来程序化地生成叙事。其核心功能包括场景生成、感官框架、记忆锚点、符号共鸣、叙事弧线和情感影响。该项目使用 Python 编写，支持多种配置选项以调整梦境的深度、风格和情感共振。适合用于需要创造独特梦境体验或探索梦境对情感状态影响的研究与应用中，如心理治疗辅助工具、创意写作或游戏开发等场景。",2,"2026-05-19 02:30:52","CREATED_QUERY"]