New to Claude Skills? Learn how to install them →

Xbrowser-act on GitHub

Xiaohongshu User Profile

Free

Easily extract user profiles and notes from Xiaohongshu.

Get this skill

Free · Opens the source repo

What Xiaohongshu User Profile does

The Xiaohongshu User Profile skill allows users to fetch detailed information about a specific Xiaohongshu user by their user ID. This includes essential profile details such as nickname, bio, follower and following counts, engagement statistics, and tags associated with the user. Additionally, the skill retrieves a list of the user's published notes, complete with engagement metrics like likes, comments, and collections. This functionality is particularly useful for developers and analysts looking to gather insights on influencers or bloggers within the Xiaohongshu ecosystem.

To utilize this skill, the user must have a browser session open to the Xiaohongshu user profile page and be logged into their account. The skill operates by extracting data that is already displayed on the user's profile page, ensuring compliance with platform access controls. The extraction process involves navigating to the user's profile, waiting for the page to stabilize, and executing Python scripts that pull the relevant data from the page's DOM.

The skill is designed for those who need to analyze user engagement or gather data for marketing purposes. It can be particularly beneficial for social media analysts, marketers, or developers building applications that require Xiaohongshu user data. By automating the data extraction process, users can save time and effort compared to manual data collection methods.

However, the skill does have limitations; it requires users to be logged in to access profile data, and it only retrieves notes from the default "Notes" tab, excluding other types of notes like collected or liked ones. Additionally, the note IDs are not provided, which may limit further data processing or analysis. Users should also be aware of the need for careful orchestration of extraction commands to avoid triggering anti-scraping measures.

When to use it

Use this skill when you need to gather user profile information and published notes from Xiaohongshu for analysis or reporting.

When not to use it

This skill is not suitable if you are not logged into Xiaohongshu or if you require data from other tabs that are not covered by this skill.

What you can build with it

Analyzing Influencer Engagement

Use this skill to gather engagement statistics and profile details of Xiaohongshu influencers for marketing analysis.

Content Strategy Development

Extract user notes to understand trending topics and content strategies employed by popular Xiaohongshu users.

KOL Research

Utilize the skill to compile data on Key Opinion Leaders (KOLs) for targeted outreach and collaboration.

How to install Xiaohongshu User Profile

View source

1. Install with the skills CLI

npx skills add browser-act/skills/xiaohongshu-user-profile --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by browser-act

Xiaohongshu — User Profile & Notes

user_id → profile info (nickname, followers, bio, tags) + published notes list

Language

All process output to user (progress updates, process notifications) follows the user's language.

Objective

Navigate to a Xiaohongshu user profile page and extract the user's basic information, social stats, and their published notes list.

Prerequisites

  • Browser opened to https://www.xiaohongshu.com/user/profile/{user_id}
  • User is logged in (avatar or username visible in the left sidebar)

Pre-execution Checks

1. Tool Readiness

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.

2. Login Verification

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:

  • User avatar or "Me" entry visible → logged in, continue execution
  • "Login" button visible → not logged in, inform the user that login is required, use remote-assist to let the user scan the QR code

User refuses or cannot log in → terminate execution.

Capability Components

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 via eval "$(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.

DOM: extract user profile

Navigate to the user profile page, wait for Vue SSR state to populate, then extract from window.__INITIAL_STATE__.user.userPageData:

  1. navigate https://www.xiaohongshu.com/user/profile/{user_id}
  2. wait stable
  3. eval "$(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.

DOM: extract user notes list

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 30

Output 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).

Composite: get full user data (profile + notes)

Run both extractions on the same page load — no additional navigation needed:

  1. navigate https://www.xiaohongshu.com/user/profile/{user_id}
  2. wait stable
  3. eval "$(python scripts/extract-user-profile.py {user_id})"
  4. eval "$(python scripts/extract-user-notes.py --limit {limit})"

Merge results by userId field.

Pagination

DOM Pagination (notes list): Initial page load pre-populates visible notes. To load more:

  1. scroll down --amount 3000
  2. wait stable
  3. eval "$(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.

Success Criteria

profile.userId is non-null AND profile.nickname is non-null AND notes.total >= 0

Known Limitations

  • Accessing user profiles requires login; without login the page shows a QR code overlay and userPageData is empty
  • Notes list only includes notes from the default "Notes" tab; collected notes and liked notes are on separate tabs not covered by this capability
  • Note id 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 lookup
  • interaction count combines total likes and collects received by all the user's notes — it is not a standalone likes-only or collects-only metric

Execution Efficiency

  • Batch orchestration: Write a bash script to loop through the command templates serially within a single session; do not parallelize within one browser (prone to triggering anti-scraping restrictions). Refer to rate information in "Known Limitations" above to add appropriate intervals. To increase throughput, open multiple stealth browser sessions and distribute work across them — each session has an independent fingerprint so rate limits apply per session
  • Test before batch execution: After writing a batch script, you must first test with 1-2 items to verify the script runs correctly; only then run the full batch. Never skip testing and execute in batch directly
  • Reduce redundant pre-operations: When multiple steps depend on the same prerequisite state, complete them in batch under that state to avoid repeatedly establishing the same state
  • Error resumption: Save results item by item during batch processing; on failure, resume from the breakpoint rather than starting over

Experience Notes

Path: {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.

Frequently asked questions about Xiaohongshu User Profile

Similar skills