gitextract_u7eo87gg/ ├── .gitignore ├── LICENSE ├── README.en.md ├── README.ja.md ├── README.md ├── SKILL.md ├── agent-invite-template.txt ├── asset-defaults.json ├── asset-positions.json ├── backend/ │ ├── app.py │ ├── memo_utils.py │ ├── requirements.txt │ ├── run.sh │ ├── security_utils.py │ └── store_utils.py ├── convert_to_webp.py ├── desktop-pet/ │ ├── README.md │ ├── STATE_API.md │ ├── package.json │ ├── src/ │ │ ├── index.html │ │ └── minimized.html │ └── src-tauri/ │ ├── Cargo.toml │ ├── build.rs │ ├── capabilities/ │ │ └── default.json │ ├── gen/ │ │ └── schemas/ │ │ ├── acl-manifests.json │ │ ├── capabilities.json │ │ ├── desktop-schema.json │ │ └── macOS-schema.json │ ├── icons/ │ │ ├── android/ │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ └── ic_launcher.xml │ │ │ └── values/ │ │ │ └── ic_launcher_background.xml │ │ └── icon.icns │ ├── src/ │ │ ├── lib.rs │ │ └── main.rs │ └── tauri.conf.json ├── dist/ │ └── Star-Office-UI-release-20260302/ │ └── RELEASE_NOTES.md ├── docs/ │ ├── CHANGELOG_2026-03.md │ ├── FEATURES_NEW_2026-03-01.md │ ├── OPEN_SOURCE_RELEASE_CHECKLIST.md │ ├── PROJECT_MAINTENANCE_SOP.md │ ├── PROJECT_SUMMARY_2026-03-01.md │ ├── PR_DRAFT_2026-03-refresh.md │ ├── PR_FILELIST_2026-03-refresh.md │ ├── STAR_OFFICE_UI_OVERVIEW.md │ ├── UPDATE_REPORT_2026-03-04_P0_P1.md │ └── UPDATE_REPORT_2026-03-05.md ├── electron-shell/ │ ├── README.md │ ├── main.js │ ├── package.json │ ├── preload.js │ └── standalone-assets/ │ ├── game.js │ └── layout.js ├── frontend/ │ ├── electron-standalone.html │ ├── fonts/ │ │ └── OFL.txt │ ├── game.js │ ├── index.html │ ├── invite.html │ ├── join-office-skill.md │ ├── join.html │ ├── layout.js │ └── office-agent-push.py ├── gif_to_spritesheet.py ├── healthcheck.sh ├── join-keys.sample.json ├── office-agent-push.py ├── pyproject.toml ├── repack_star_working.py ├── resize_map.py ├── runtime-config.sample.json ├── scripts/ │ ├── gemini_image_generate.py │ ├── security_check.py │ └── smoke_test.py ├── set_state.py ├── state.sample.json └── webp_to_spritesheet.py