A Claude Code skill that automates HowOne AI — an agentic app builder platform. Give it an idea, and it creates a full web app with AI-powered workflows.
Supports two browser tools: browser-use (recommended) and playwright-cli (fallback). The agent auto-detects which is available.
Option A: npx skills CLI
npx skills add X-iZhang/howoneOption B: Manual install
git clone https://github.com/X-iZhang/howone
# Copy the whole skill directory:
cp -r howone ~/.claude/skills/howone
# Or just the main SKILL.md:
cp howone/SKILL.md ~/.claude/skills/howone.mdOption C: Direct URL (no install needed)
Claude Code can read the skill directly:
https://raw.githubusercontent.com/X-iZhang/howone/main/SKILL.md
You tell the agent what app you want. It:
- Expands your idea into a detailed prompt optimized for HowOne
- Opens howone.ai and logs in (session persisted after first login)
- Submits the prompt and monitors generation (5–15 minutes)
- Publishes the app and returns the public URL
- Tests the app by interacting with the preview iframe
| Capability | Description |
|---|---|
| Login | Google/GitHub/Email OAuth with session persistence |
| Create App | Expand user ideas into detailed prompts, submit, monitor generation |
| Publish | Deploy to App Store, get public URL |
| Browse Store | Search and view apps on howone.ai/apps |
| Test App | Interact with app preview iframe |
| Save Results | Screenshot, save state, create result markdown |
# Install browser-use (recommended)
pipx install 'browser-use[cli]'
export PATH="$HOME/.local/bin:$PATH"
# OR install playwright-cli (fallback)
npm install -g @anthropic-ai/playwright-cli@latest
playwright-cli install chromium# OAuth requires a visible browser
browser-use --headed open https://howone.ai
# Complete login, then save session:
mkdir -p ~/.config/browser-use
browser-use cookies export ~/.config/browser-use/howone.jsonJust tell the agent:
"Help me create a pet hospital management app on HowOne"
The agent will expand your idea into a detailed prompt, submit it to HowOne, and monitor the generation process.
├── SKILL.md # Main skill — fully self-contained
└── howone-automation/
└── SKILL.md # Detailed version with all 7 workflows + UI map
- Prompt quality is everything: HowOne builds apps from your prompt — detailed prompts produce better apps
- Preferred tool:
browser-use— numeric indices are more stable, better shadow DOM support - Session persistence: Login once, reuse across sessions
- Headed vs headless:
--headedonly for OAuth login; headless for everything else - iframe interaction: App previews are in iframes;
playwright-clihandles these better (f-prefix refs) - Generation time: 5–15 minutes — poll every 60–90 seconds
MIT