xpai-doubao-web▌
hunduncn/xpai-doubao-web · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Use this skill to generate images or text from Doubao Web by reusing browser login cookies. It provides a CLI wrapper with prompt files, optional reference images, presets, sessions, and JSON output.
XPAI Doubao Web
Overview
Use this skill to generate images or text from Doubao Web by reusing browser login cookies. It provides a CLI wrapper with prompt files, optional reference images, presets, sessions, and JSON output.
Script Directory
All scripts are located in the scripts/ subdirectory of this skill.
Script reference:
scripts/main.ts: CLI entry point (image/text)scripts/doubao-webapi/*: TypeScript client and helpers
Consent Check (required before first use)
This skill relies on reverse-engineered web behavior and will access/store your Doubao Web cookies. Obtain explicit user consent before running automation.
Consent file locations:
- macOS:
~/Library/Application Support/xpai-skills/doubao-web/consent.json - Linux:
~/.local/share/xpai-skills/doubao-web/consent.json - Windows:
%APPDATA%\\xpai-skills\\doubao-web\\consent.json
Consent file format:
{"version":1,"accepted":true,"acceptedAt":"<ISO>","disclaimerVersion":"1.0"}
Preferences (EXTEND.md)
Check for optional EXTEND.md overrides in this order:
# Project-level first
test -f .xpai-skills/xpai-doubao-web/EXTEND.md && echo "project"
# Then user-level
test -f "$HOME/.xpai-skills/xpai-doubao-web/EXTEND.md" && echo "user"
Supported settings (if you add parsing for them): default model, proxy settings, custom data directory.
Usage
# Text-to-image
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts "Your prompt"
# Text-only
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --mode text --prompt "Summarize this article"
# Specify model
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --prompt "Your prompt" --model doubao-default
# Generate an image file
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --prompt "A cute cat" --image out.png
# Prompt from files
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --promptfiles system.md content.md --image out.png
# Vision input (reference images)
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --prompt "Create variation" --reference a.png --image out.png
# Preset (aspect ratio via prompt prefix/suffix)
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --preset xiaohongshu_cover --prompt "Minimalist poster" --image out.png
# List presets
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts --list-presets
# Multi-turn sessions
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts "Remember: 42" --sessionId session-abc
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts "What number?" --sessionId session-abc
# JSON output
npx -y bun /Users/aqxp/Aicodingmac/test2/xpai-doubao-web/scripts/main.ts "Hello" --json
Options
--prompt,-p: Prompt text--promptfiles: Read prompt from files (concatenated)--model,-m: Model string (pass-through)--mode:image(default) ortext--preset: Preset name (applies prompt prefix/suffix; defaultxiaohongshu_cover)--image [path]: Generate image (default:generated.png)--reference,--ref: Reference images for vision input--sessionId: Session ID for multi-turn conversation--list-sessions: List saved sessions--list-presets: List preset names and config paths--json: Output as JSON--login: Refresh cookies, then exit--cookie-path: Custom cookie file path--profile-dir: Chrome profile directory
Authentication
Login uses browser cookies. The CLI supports:
--loginto trigger a browser-based refresh (implemented with Playwright).--cookie-pathorDOUBAO_WEB_COOKIE_PATHto point at an exported cookie file.
Flow notes:
--loginopens a visible browser window and saves cookies.- Image/text generation runs headless by default (no window). Set
DOUBAO_WEB_HEADLESS=0to show the browser. - If a cookies file already exists, generation proceeds without opening a browser.
- To force a fresh login, delete the cookies file or run
--loginagain.
For --login and image generation, install Playwright and its browsers:
npm i -D playwright
npx playwright install
Supported browsers (Playwright): Chromium/Chrome/Edge.
Override browser path via DOUBAO_WEB_CHROME_PATH. If you pass --profile-dir, it is used as a Playwright user data directory.
Presets
Preset config path priority:
DOUBAO_WEB_PRESETS_PATH.xpai-skills/xpai-doubao-web/presets.json(project)$HOME/.xpai-skills/xpai-doubao-web/presets.json(user)
Format:
{
"default": "xiaohongshu_cover",
"presets": {
"xiaohongshu_cover": { "prefix": "...", "suffix": "..." }
}
}
Example file: references/presets.example.json
Environment Variables
DOUBAO_WEB_DATA_DIR: Data directoryDOUBAO_WEB_COOKIE_PATH: Cookie file pathDOUBAO_WEB_HEADLESS: Set to0to run browser in headed mode (default: headless)DOUBAO_WEB_MAX_IMAGES: Max images to save (default:1)DOUBAO_WEB_LOGIN_URL: Login URL to open in the browser (default:https://www.doubao.com/)DOUBAO_WEB_COOKIE_DOMAIN: Filter cookies by domain (default:doubao.com)DOUBAO_WEB_PRESETS_PATH: Preset config file pathDOUBAO_WEB_INPUT_SELECTOR: Custom input selector for the prompt boxDOUBAO_WEB_OUTPUT_SELECTOR: Custom selector for the latest assistant messageDOUBAO_WEB_CHROME_PROFILE_DIR: Chrome profile directoryDOUBAO_WEB_CHROME_PATH: Chrome executable pathHTTP_PROXY,HTTPS_PROXY: Proxy for web access
Sessions
Session files are stored in the data directory under sessions/<id>.json.
Contains: id, conversationUrl, messages, timestamps. When --sessionId is set, a persistent Playwright profile is stored under profiles/<id>/ to keep login state.
How to use xpai-doubao-web on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add xpai-doubao-web
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches xpai-doubao-web from GitHub repository hunduncn/xpai-doubao-web and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate xpai-doubao-web. Access the skill through slash commands (e.g., /xpai-doubao-web) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.7★★★★★66 reviews- ★★★★★Valentina Verma· Dec 24, 2024
xpai-doubao-web has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Hana Rao· Dec 20, 2024
xpai-doubao-web reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Shikha Mishra· Dec 16, 2024
xpai-doubao-web reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Hiroshi Mehta· Dec 16, 2024
I recommend xpai-doubao-web for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Dhruvi Jain· Dec 12, 2024
Keeps context tight: xpai-doubao-web is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Olivia Okafor· Dec 4, 2024
Keeps context tight: xpai-doubao-web is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Hana Reddy· Dec 4, 2024
xpai-doubao-web fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Hana Ghosh· Nov 23, 2024
xpai-doubao-web has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Mateo Liu· Nov 15, 2024
xpai-doubao-web fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Rahul Santra· Nov 7, 2024
I recommend xpai-doubao-web for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 66