Experience DeepSite: AI-assisted development tool with both strengths and limitations

Experience DeepSite and feel how AI changes the development process.
Core content:
1. Convenient use experience and development advantages of DeepSite tool
2. Demonstrate DeepSite's programming capabilities and effects through actual cases
3. Limitations and optimization space of DeepSite in specific functions
Recently I tried DeepSite, a magic tool deployed in the Hugging Face open source community. After experiencing it, I was really amazed. It is like a cursor exclusively for browsers.
DeepSite is a development tool that integrates the latest DeepSeek V3 and is very convenient to use. In the past, when developing games or applications, configuring the environment and installing various software were headaches, but with DeepSite, these are no longer a problem. You only need to open the web page, enter the relevant description of the game or application you want to develop in the interface, and then wait for a moment, and you can directly see the running effect in the preview window.
Now, without further ado, let’s experience its magic through a real-machine demonstration!
Hint: Help me write a little bee game
Functional requirements:
① Player Control
Keyboard WASD controls movement; mouse controls perspective rotation (move the mouse left or right to change direction); space bar controls shooting
② Game elements
Player perspective crosshairs; randomly generated enemies (circular/rectangular); bullet trajectory (straight line); score display
③ Core logic:
The player's bullet hits the enemy → score +1, the enemy disappears; the enemy touches the player → the game ends; new enemies are continuously generated
④ Visual effects:
Full screen Canvas (100% width and height); simple 2D graphics (circle/rectangle); dynamic score display
From the overall experience, this game is not playable at all. It can be seen that it is extremely difficult and almost impossible to generate a complex game version that can actually be played with just a one-sentence description.
This tool has the overall basic functions, but it performs poorly in terms of cutouts. If you want to achieve a more ideal cutout effect, you usually need to use AI-related models such as Unet, or call third-party services.
When implementing the cutout function, DeepSite uses a strategy that determines whether to make the pixel transparent based on the difference between the pixel color and the background color, thereby achieving the "one sentence to generate code" cutout operation.
at last