一键导入
pixiv
Access Pixiv for searching illustrations, manga, and viewing rankings. Supports searching by keyword and viewing daily/weekly/monthly rankings.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Access Pixiv for searching illustrations, manga, and viewing rankings. Supports searching by keyword and viewing daily/weekly/monthly rankings.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | pixiv |
| description | Access Pixiv for searching illustrations, manga, and viewing rankings. Supports searching by keyword and viewing daily/weekly/monthly rankings. |
This skill allows searching and browsing Pixiv illustrations.
Before using, you must have a valid Pixiv Refresh Token.
The token is stored in config.json inside the skill directory.
To configure:
node skills/pixiv/scripts/pixiv-cli.js login <REFRESH_TOKEN>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.).
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
To view a user's profile details:
node skills/pixiv/scripts/pixiv-cli.js user <USER_ID>
Example:
node skills/pixiv/scripts/pixiv-cli.js user 11
To view the profile of the currently logged-in account (based on Refresh Token):
node skills/pixiv/scripts/pixiv-cli.js me
To list users that the logged-in account follows:
node skills/pixiv/scripts/pixiv-cli.js following [PAGE]
To view latest illustrations from followed users:
node skills/pixiv/scripts/pixiv-cli.js feed [RESTRICT] [PAGE]
RESTRICT can be all, public, or private. Default is all.
To download an illustration (single image, manga/multiple, or ugoira zip):
node scripts/pixiv-cli.js download <ILLUST_ID>
Files are saved to downloads/<ILLUST_ID>/.
Returns JSON containing the list of downloaded files.
To publish a new illustration directly to Pixiv using the AppAPI v2 (pure code, no browser needed):
node scripts/pixiv-cli.js post <FILEPATH> "<TITLE>" "[TAGS_COMMA_SEPARATED]" [VISIBILITY]
VISIBILITY: public (default), login_only, mypixiv, or private.illust_ai_type: 2) is applied by default.Example:
node scripts/pixiv-cli.js post "./output.png" "My New Art" "Original, Girl, AI" private
If the user asks how to get a token:
gppt (Get Pixiv Token).refresh_token in Local Storage or Cookies (though OAuth refresh token is cleaner).