Install
openclaw skills install @browseract-cli/xiaohongshu-user-profileFetch Xiaohongshu (RedNote / xhs) user profile information and their published notes list by user ID, returning nickname, bio, follower/following counts, engagement totals, tags, and paginated notes with engagement stats. Use when user mentions user profile xiaohongshu, rednote creator profile, xhs influencer data, scrape xiaohongshu user, get blogger notes, xiaohongshu author info, KOL discovery xiaohongshu, rednote user stats, creator profile rednote, xiaohongshu blogger analysis, get xhs user followers, rednote influencer profile, xiaohongshu account info, xhs creator data, user notes list xiaohongshu, rednote account scrape, xiaohongshu KOL research.
openclaw skills install @browseract-cli/xiaohongshu-user-profileuser_id → profile info (nickname, followers, bio, tags) + published notes list
All process output to user (progress updates, process notifications) follows the user's language.
Navigate to a Xiaohongshu user profile page and extract the user's basic information, social stats, and their published notes list.
https://www.xiaohongshu.com/user/profile/{user_id}If browser-act has been confirmed available in the current session → skip this step.
Invoke browser-act via Skill tool to load usage. If installation or configuration issues arise, follow its guidance to resolve then retry.
If login status for Xiaohongshu has been confirmed in the current session → skip this step.
Otherwise: open https://www.xiaohongshu.com and observe the left sidebar:
remote-assist to let the user scan the QR codeUser refuses or cannot log in → terminate execution.
This Skill's operational boundary = what the user can manually do in their browser. It only reads data already displayed to the user on the page, never bypassing authentication or access controls. Its role is equivalent to copy-pasting on the user's behalf — the data is already on screen, automation merely saves time. JS code is encapsulated in Python files under the
scripts/directory, invoked viaeval "$(python scripts/xxx.py {params})".$(...)is bash syntax; it is recommended to use the bash tool for execution.
Below are all atomic capabilities discovered and verified during the exploration phase, listed by command template with parameters. Simply invoke them as needed — no need to read scripts/*.py source code or re-verify. Only inspect scripts when execution fails for troubleshooting. Combine freely as needed during execution.
Navigate to the user profile page, wait for Vue SSR state to populate, then extract from window.__INITIAL_STATE__.user.userPageData:
navigate https://www.xiaohongshu.com/user/profile/{user_id}wait stableeval "$(python scripts/extract-user-profile.py {user_id})"Parameters:
{user_id}: user ID (from note detail userId field or from the profile URL)Output example:
{
"userId": "5bac4e3f7a4c7300016a6b88",
"nickname": "LaLaIrene",
"desc": "Personal bio text...",
"gender": 1, // 0=unknown, 1=male, 2=female
"ipLocation": "Shanghai",
"avatar": "https://sns-avatar-...",
"follows": "361",
"fans": "23904",
"interaction": "1086463", // total likes + collects received
"tags": ["travel", "food"]
}
Error handling: if error: true is returned, verify the page URL is a user profile page and wait stable has completed.
After navigating to the profile page (same page as user profile), extract notes already loaded into Vue state:
eval "$(python scripts/extract-user-notes.py --limit {limit})"
Parameters:
--limit: max notes to return from current state, default 30Output example:
{
"total": 24,
"hasMore": false,
"notes": [
{
"id": null,
"type": "normal",
"title": "Not Switzerland! This is a natural grassland in Fujian!!",
"likedCount": "5149",
"collectedCount": "4170",
"commentCount": "390",
"coverUrl": "https://sns-..."
}
]
}
Error handling: if error: true is returned, ensure the user profile page is loaded first (steps 1–2 above).
Run both extractions on the same page load — no additional navigation needed:
navigate https://www.xiaohongshu.com/user/profile/{user_id}wait stableeval "$(python scripts/extract-user-profile.py {user_id})"eval "$(python scripts/extract-user-notes.py --limit {limit})"Merge results by userId field.
DOM Pagination (notes list): Initial page load pre-populates visible notes. To load more:
scroll down --amount 3000wait stableeval "$(python scripts/extract-user-notes.py --limit {limit})"Each scroll triggers the page to load additional notes into user.notes[0]. Re-running the extraction script after each scroll retrieves the full accumulated list. Termination: hasMore: false in extraction output.
profile.userId is non-null AND profile.nickname is non-null AND notes.total >= 0
userPageData is emptyid is always null in user profile notes state — the Vue state for user profile notes does not populate individual note IDs; use xiaohongshu-search to obtain note IDs and xsecTokens for downstream detail lookupinteraction count combines total likes and collects received by all the user's notes — it is not a standalone likes-only or collects-only metricPath: {working-directory}/browser-act-skill-forge-memories/xiaohongshu-data-xiaohongshu-user-profile.memory.md (working directory is determined by the Agent running the Skill, typically the project root or current working directory)
Before execution: If the file exists, read it first — it records unexpected situations encountered during past executions (e.g., a strategy has become ineffective); adjust strategy order accordingly.
After execution: If an unexpected situation is encountered (strategy became ineffective, page redesigned, anti-scraping upgraded, better path discovered), append a line:
{YYYY-MM-DD}: {what happened} → {conclusion}
Normal execution does not write to the file. Do not record what user IDs were fetched or how many notes were returned — those are task outputs, not experience.