| name | pixiv |
| description | Access Pixiv for searching illustrations, manga, and viewing rankings. Supports searching by keyword and viewing daily/weekly/monthly rankings. |
Pixiv Skill
This skill allows searching and browsing Pixiv illustrations.
Setup
Before using, you must have a valid Pixiv Refresh Token.
The token is stored in config.json inside the skill directory.
To configure:
- Ask the user for their Pixiv Refresh Token.
- Run:
node skills/pixiv/scripts/pixiv-cli.js login <REFRESH_TOKEN>
Usage
Searching Illustrations
To search for illustrations by keyword:
node skills/pixiv/scripts/pixiv-cli.js search "KEYWORD" [PAGE]
Example:
node skills/pixiv/scripts/pixiv-cli.js search "miku" 1
Returns a JSON array of illustration details (title, url, tags, user, etc.).
Viewing Rankings
To view rankings:
node skills/pixiv/scripts/pixiv-cli.js ranking [MODE] [PAGE]
Modes: day, week, month, day_male, day_female, week_original, week_rookie, day_ai.
Default is day.
Example:
node skills/pixiv/scripts/pixiv-cli.js ranking day
Viewing User Profile
To view a user's profile details:
node skills/pixiv/scripts/pixiv-cli.js user <USER_ID>