Flutter Appstore Doc Ui Kit
Skill by chentuan7963-afk
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/chentuan7963-afk/flutter-appstore-doc-ui-kitname: flutter-appstore-doc-ui-kit description: Generate a launch-ready app package for App Store submission: a complete Markdown feature document plus AI-generated Apple-style UI design images for each page and a square-corner app icon. Use when the user wants a Flutter app concept/spec constrained to FVM Flutter 3.35.1, offline-first (no backend), camera + photo library permissions, anti-saturation positioning, and no TODO/temp placeholders.
Flutter AppStore Doc + UI Kit
Generate an App Store-ready pack in gated stages with mandatory user review between stages:
docs/app-feature-spec.zh-CN.md+docs/app-feature-spec.en-US.mdui/*.png(AI-generated Apple-style page design images)icon/app_icon_1024.png+icon/app_icon_1024.svg(square-corner icon)
Workflow (Approval-Gated)
- Generate APP feature docs in Chinese + English and output them.
- Ask user to download/review docs; wait for: continue or revise docs.
- Proceed only after user explicitly approves docs.
- Confirm image-generation capability:
- If API/model access exists, generate page-level UI images from approved docs.
- If no API/model access, output one unified style prompt package for user-side generation.
- Ask user to download/review UI images.
- Proceed only after user explicitly approves UI images.
- Confirm icon-generation capability:
- If API/model access exists, generate icon via model.
- If no API/model access, generate icon with programmatic SVG->PNG pipeline.
- Ask user to review icon.
- Finish only after user explicitly approves icon.
Do not auto-skip any gate. If user asks for changes, revise only that stage and re-submit for approval.
1) Required Inputs
Collect/confirm:
- App name
- Target language(s)
- Preferred app direction (if none, pick a low-saturation utility direction)
- Optional color style
Hard constraints to enforce:
- Tech stack: Flutter via FVM Flutter 3.35.1
- Includes camera + photo library permissions
- Avoid over-saturated app categories and avoid risky claim patterns
- No backend server required
- No TODO placeholders or temporary/fake data sections
- Document scope must be version 1.0.0 only
- Do not include roadmap/future updates/backlog/post-v1 plans
- Can include general capabilities: i18n, dark mode, accessibility, privacy-first local storage
- App icon must be square-corner (not rounded)
2) Stage 1 — Generate and Deliver Feature Docs (ZH + EN)
Run once:
python3 scripts/generate_appstore_pack.py \
--app-name "SnapSort" \
--out ./out/snapsort \
--locales "en,zh-Hans" \
--primary-color "#0A84FF"
Then prepare doc outputs first and deliver only docs for review:
docs/app-feature-spec.zh-CN.md(if missing, derive from base spec and provide Chinese version)docs/app-feature-spec.en-US.md(if missing, derive from base spec and provide English version)
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-chentuan7963-afk-flutter-appstore-doc-ui-kit": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Legal Site Generator
Skill by chentuan7963-afk
app-legal-pages
Generate and deploy app Privacy Policy and Terms of Service static websites from an app feature document. Use when a user provides app requirements/feature docs and wants production-ready legal pages published via GitHub + Cloudflare Pages, including draft generation, consistency checks, and deployment-ready output URLs.