summary string | backend_issues dict | frontend_issues dict | passed_tests list | test_report_links list | success_percentage dict | updated_files list | action_item_for_main_agent string | should_call_test_agent_after_fix bool | should_main_agent_test_itself bool |
|---|---|---|---|---|---|---|---|---|---|
Completed comprehensive end-to-end testing of Sticker Studio dress-up game. All backend APIs and frontend features tested successfully. | {
"critical_bugs": [],
"flaky_endpoints": []
} | {
"ui_bugs": [],
"integration_issues": [],
"design_issues": []
} | [
"Backend: GET /api/images?type=character returns 3 seeded characters with base64 dataUrls",
"Backend: GET /api/images?type=asset returns 18+ seeded assets with categories (tops, dresses, bottoms, hats, accessories, shoes)",
"Backend: GET /api/images/{id} returns single image with correct id and dataUrl",
"Bac... | [
"/app/backend_test.py",
".screenshots/initial_load.png",
".screenshots/character_selected.png",
".screenshots/asset_added.png",
".screenshots/after_delete.png",
".screenshots/after_clear.png",
".screenshots/upload_dialog.png",
".screenshots/credits_dialog.png",
".screenshots/final_state.png"
] | {
"backend": "100% (32/32 tests passed)",
"frontend": "100% (all features working)"
} | [
"/app/backend_test.py"
] | false | false |
Sticker Studio — Dress-Up Game
A lightweight, static-PNG dress-up game (window / canvas based). Pick a base character, tap clothing & accessory assets to add them onto the canvas, drag to reposition (mouse and touch), and Save a flattened PNG of your creation. Upload your own images into the Characters or Wardrobe libraries (persisted on the backend).
Tech Stack
- Frontend: React 19, Tailwind, shadcn/ui, framer-motion (HTML
<canvas>stage, Pointer Events for mouse+touch) - Backend: FastAPI (images stored as base64 in MongoDB, served as data URLs so canvas export never taints)
- DB: MongoDB
Repository Layout
backend/— FastAPI app (server.py) + procedural starter-asset generator (seed_assets.py)frontend/— React app (src/App.js,src/components/DressUpStage.js, trays, dialogs)tests/poc_core_test.py— core proof-of-concept testused-assets-legal-info.md— licensing info for bundled starter art
Starter Assets Licensing
All bundled starter characters and wardrobe items are 100% original artwork,
generated procedurally in code (Pillow) and released as CC0 1.0 (public domain).
See used-assets-legal-info.md.
Run Locally
# Backend
cd backend && pip install -r requirements.txt && uvicorn server:app --host 0.0.0.0 --port 8001
# Frontend
cd frontend && yarn install && yarn start
Note:
.envfiles here contain only local/non-secret defaults (e.g.MONGO_URL=mongodb://localhost:27017).
- Downloads last month
- 48