<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: FDS</title>
    <description>The latest articles on DEV Community by FDS (@j_49d950a33e76f1ee3e55449).</description>
    <link>https://dev.to/j_49d950a33e76f1ee3e55449</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3346446%2F6196cedf-0c32-4312-aac9-242b3a689bde.png</url>
      <title>DEV Community: FDS</title>
      <link>https://dev.to/j_49d950a33e76f1ee3e55449</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/j_49d950a33e76f1ee3e55449"/>
    <language>en</language>
    <item>
      <title>Building Quantum Maze with Amazon Q Developer CLI - My Build Games Challenge Journey</title>
      <dc:creator>FDS</dc:creator>
      <pubDate>Fri, 11 Jul 2025 18:53:36 +0000</pubDate>
      <link>https://dev.to/j_49d950a33e76f1ee3e55449/building-quantum-maze-with-amazon-q-developer-cli-my-build-games-challenge-journey-4nf9</link>
      <guid>https://dev.to/j_49d950a33e76f1ee3e55449/building-quantum-maze-with-amazon-q-developer-cli-my-build-games-challenge-journey-4nf9</guid>
      <description>&lt;h2&gt;
  
  
  🎮 The Game That Started It All
&lt;/h2&gt;

&lt;p&gt;When I first discovered programming, it was through simple games that sparked my imagination. For the Amazon Q Developer CLI Build Games Challenge, I chose to create &lt;strong&gt;Quantum Maze&lt;/strong&gt; - a retro-inspired maze game that combines classic Pac-Man style gameplay with quantum computing concepts.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Farevskrhwcv5omx58xka.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Farevskrhwcv5omx58xka.png" alt=" " width="300" height="23"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Why Quantum Maze?
&lt;/h2&gt;

&lt;p&gt;I wanted to push beyond simple recreations and explore how AI could help me implement complex concepts. Quantum Maze incorporates:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Superposition walls&lt;/strong&gt; that phase in and out of existence&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Quantum entanglement&lt;/strong&gt; between collectible qubits&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Quantum tunneling&lt;/strong&gt; through teleportation gates&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Decoherence ghosts&lt;/strong&gt; with advanced AI behaviors&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Measurement mechanics&lt;/strong&gt; for capturing quantum states&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🤖 AI-Assisted Development with Amazon Q Developer CLI
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Effective Prompting Techniques I Discovered
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;1. Conceptual to Code Approach&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instead of asking for complete implementations, I broke down quantum concepts:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
"Help me implement superposition walls that flicker between solid and transparent states"

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;2. Iterative Refinement&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
"The ghost AI is too predictable. Add three different behavior types: aggressive chasers, random wanderers, and area guardians"

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;3. Integration Challenges&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
"How can I make entangled qubits visually connected with animated quantum threads?"

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How AI Handled Classic Programming Challenges
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Collision Detection&lt;/strong&gt;: Q CLI helped me implement efficient spatial partitioning for smooth gameplay even with complex quantum effects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Game State Management&lt;/strong&gt;: The AI suggested clean separation of concerns - separate modules for player, enemies, maze, and quantum mechanics.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Audio System&lt;/strong&gt;: When I needed procedural audio generation, Q CLI provided mathematical waveform synthesis techniques.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ Development Automation That Saved Time
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Configuration Management&lt;/strong&gt;: Q CLI helped create a centralized config system for easy difficulty tuning:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;
&lt;span class="c1"&gt;# Generated with Q CLI assistance
&lt;/span&gt;
&lt;span class="n"&gt;config&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;set_difficulty&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;QUANTUM&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="c1"&gt;# Maximum challenge mode
&lt;/span&gt;
&lt;span class="n"&gt;config&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;GHOST_SPEED&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;2.0&lt;/span&gt;

&lt;span class="n"&gt;config&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;SUPERPOSITION_DURATION&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;8.0&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Testing Utilities&lt;/strong&gt;: AI generated comprehensive test scenarios for quantum mechanics validation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Documentation&lt;/strong&gt;: Q CLI helped structure the extensive README with proper markdown formatting and badges.&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 Interesting AI-Generated Solutions
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Quantum Entanglement Visualization
&lt;/h3&gt;

&lt;p&gt;The AI suggested using Bézier curves for the quantum connection threads:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;
&lt;span class="k"&gt;def&lt;/span&gt;  &lt;span class="nf"&gt;draw_entanglement_connection&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;self&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;pos1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;pos2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;time&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;

&lt;span class="c1"&gt;# AI-generated quantum thread animation
&lt;/span&gt;
&lt;span class="n"&gt;control_point&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;calculate_quantum_curve&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;pos1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;pos2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;time&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="n"&gt;pygame&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;draw&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;lines&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;surface&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;MAGENTA&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="bp"&gt;False&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;

&lt;span class="n"&gt;self&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;bezier_curve&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;pos1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;control_point&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;pos2&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Procedural Audio Generation
&lt;/h3&gt;

&lt;p&gt;Q CLI provided mathematical approaches for quantum-themed sound effects:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;
&lt;span class="k"&gt;def&lt;/span&gt;  &lt;span class="nf"&gt;generate_qubit_sound&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;frequency&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;duration&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;

&lt;span class="c1"&gt;# Harmonic resonance for quantum collection
&lt;/span&gt;
&lt;span class="n"&gt;samples&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;sin&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;2&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;pi&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;frequency&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;t&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;exp&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;t&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;samples&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Advanced Ghost AI
&lt;/h3&gt;

&lt;p&gt;The AI helped implement three distinct behavior patterns with state machines:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Chaser Ghosts&lt;/strong&gt;: A* pathfinding with player prediction&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Wanderer Ghosts&lt;/strong&gt;: Weighted random movement with momentum&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Guardian Ghosts&lt;/strong&gt;: Territory-based patrol with qubit density awareness&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🎯 Technical Achievements
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Real-time Quantum Simulation&lt;/strong&gt;: Visual representation of quantum mechanics&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Multi-threaded Audio&lt;/strong&gt;: Seamless sound mixing without performance impact&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Scalable Architecture&lt;/strong&gt;: Modular design supporting easy feature additions&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Performance Optimization&lt;/strong&gt;: 60 FPS gameplay with complex particle effects&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🎮 Gameplay Screenshots
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frmi97bw5j8cga8nadk46.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frmi97bw5j8cga8nadk46.png" alt=" " width="800" height="649"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;The retro-styled main menu with quantum-themed design&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fam1mmsfhmm89l6d3851b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fam1mmsfhmm89l6d3851b.png" alt=" " width="800" height="649"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Entangled qubits connected by pulsating quantum threads - collect both within 10 seconds for bonus points&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgus060yah6tajymtlx2f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgus060yah6tajymtlx2f.png" alt=" " width="800" height="649"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Three distinct ghost types: Red chasers hunt you down, blue wanderers move unpredictably, brown guardians protect qubit clusters&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ygp93gsj1wr2qioqlfu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ygp93gsj1wr2qioqlfu.png" alt=" " width="800" height="649"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Quantum tunnels in action - step into one portal to instantly teleport to its partner&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F963ufadcmako2d04t6v2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F963ufadcmako2d04t6v2.png" alt=" " width="800" height="649"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Superposition power-up active - walls become transparent, allowing passage through quantum barriers&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqhfa5bmdgi5awji41eoj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqhfa5bmdgi5awji41eoj.png" alt="Comprehensive game statistics showing quantum efficiency, entanglement mastery, and performance rating" width="800" height="649"&gt;&lt;/a&gt;&lt;br&gt;
&lt;em&gt;Comprehensive game statistics showing quantum efficiency, entanglement mastery, and performance rating&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🎬 Gameplay Videos
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Full Gameplay Demo&lt;/strong&gt;: &lt;a href="https://www.youtube.com/watch?v=17GwleqrQJ4" rel="noopener noreferrer"&gt;Building Quantum Maze with Amazon Q Developer CLI&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🏆 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Amazon Q Developer CLI transformed how I approach game development. Instead of getting stuck on implementation details, I could focus on creative concepts and let AI handle the technical complexity. The conversational programming approach made it feel like pair programming with an expert who never gets tired of explaining quantum physics!&lt;/p&gt;

&lt;p&gt;The most surprising discovery was how AI could bridge the gap between abstract quantum concepts and concrete game mechanics. What started as "wouldn't it be cool if..." became a fully playable game with educational value.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔗 Try It Yourself
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;GitHub Repository&lt;/strong&gt;:&lt;br&gt;
&lt;a href="https://github.com/RandomProjects-db/quantum-maze-challenge" rel="noopener noreferrer"&gt;https://github.com/RandomProjects-db/quantum-maze-challenge&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Play Online&lt;/strong&gt;: &lt;a href="https://replit.com/@playstore123123/quantum-maze-challenge" rel="noopener noreferrer"&gt;Replit Demo&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Built with&lt;/strong&gt;: Amazon Q Developer CLI, Python, PyGame&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🎉 Challenge Complete!
&lt;/h2&gt;

&lt;p&gt;This project showcases the power of AI-assisted development for creating games that go beyond simple recreations. With Amazon Q Developer CLI, we can build the games we dreamed of as kids - and make them even better with modern AI assistance.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;#BuildGamesChallenge #AmazonQDevCLI #QuantumGaming #RetroGames #AIAssistedDevelopment&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Built during the Amazon Q Developer CLI Build Games Challenge (June-July 2025)&lt;/em&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
