.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/midnightdarling/jike-skill
home/skills/midnightdarling/jike-skill
midnightdarling avatar

jike-skill

bymidnightdarling· 2 skills

Stars

15

Forks

5

Category

Productivity & Workflow

View on GitHub

TL;DR

Interact with Jike (即刻) social network — QR login, feed reading, posting, commenting, searching, and user profile lookup. Use when Claude needs to: (1) Log into Jike via QR code scan, (2) Read following/discovery feeds, (3) Create, read, or delete posts, (4) Add or remove comments, (5) Search content or users, (6) Check notifications. Triggers on: "jike", "即刻", "刷即刻", "发即刻", "jike feed", "jike post".

How to install jike-skill?

midnightdarling/jike-skill
$npx -y skills add midnightdarling/jike-skill --skill jike-skill

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Use this skill

Run `npx skills use "https://github.com/midnightdarling/jike-skill" --skill "midnightdarling/jike-skill"` and follow the generated skill instructions now. Read its complete output, redirecting it to a temporary file first if necessary. Resolve relative paths from the supporting-files directory it provides.

Use the whole pack

Use the skills in "https://github.com/midnightdarling/jike-skill" that are relevant to the current task. Run `npx skills add "https://github.com/midnightdarling/jike-skill"` and select the relevant skills, then follow their instructions.

Files · 1

View on GitHub
SKILL.md
1# jike-skill
2 
3Jike (即刻) client for humans and AI agents.
4QR login (browser HTML or terminal ASCII), full feed/post/comment/search
5API, and one-command export of your entire Jike history to Markdown.
6 
7即刻社交网络客户端 — 给人用,也给 AI agent 用。
8扫码登录支持浏览器 HTML 与终端 ASCII 双通道;一行命令导出全部即刻历史。
9 
10**Current version**: `0.4.1` — see [CHANGELOG.md](CHANGELOG.md) for details.
11 
12## Install / 安装
13 
14```bash
15pip install jike-skill # core
16pip install jike-skill[qr] # + browser HTML & terminal ASCII QR rendering
17```
18 
19The `[qr]` extra pulls in `qrcode[pil]`. Without it, `jike auth` falls
20back to printing the raw `jike://` URL for manual scanning.
21 
22## Quick Start / 快速开始
23 
24### CLI
25 
26```bash
27# 1. Login — open the browser HTML QR (or scan the ASCII fallback in the terminal)
28# 1. 登录 — 浏览器打开 HTML 二维码(或扫终端里的 ASCII 备用 QR)
29jike auth
30 
31# 2. Set tokens as env vars (recommended) / 推荐用环境变量传 token
32export JIKE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
33export JIKE_REFRESH_TOKEN="YOUR_REFRESH_TOKEN"
34 
35# 3. Browse your feed / 刷关注流
36jike feed
37 
38# 4. Search / 搜索
39jike search --keyword "AI"
40 
41# 5. Post something / 发一条即刻
42jike post --content "Hello world"
43```
44 
45### Python
46 
47```python
48from jike import JikeClient, TokenPair, authenticate
49 
50# First time: QR login
51tokens = authenticate()
52 
53# Then use the client
54client = JikeClient(tokens)
55feed = client.feed(limit=20)
56client.create_post(content="Hello from Python")
57results = client.search(keyword="AI")
58profile = client.profile(username="someone")
59```
60 
61### Codex Plugin
62 
63Codex does not automatically use a public repository just because it contains a
64`SKILL.md`. Add this repository as a plugin marketplace, restart Codex, then
65install or enable the plugin from `/plugins`.
66 
67```bash
68# One-time setup: add this public repository as a Codex plugin marketplace
69codex plugin marketplace add MidnightDarling/jike-skill
70```
71 
72After restarting Codex:
73 
74```text
75/plugins
76```
77 
78Choose **Jike Skill Codex Plugins** and confirm that **Jike** is installed and
79enabled. Codex then loads the packaged skill from `skills/jike/SKILL.md`.
80 
81### Claude Code Plugin
82 
83```bash
84# Option A: Plugin marketplace (one-time setup)
85/plugin marketplace add MidnightDarling/jike-skill
86/plugin install jike@jike-skill
87 
88# Option B: Manual copy (clone and place the whole repo as a skill folder)
89git clone https://github.com/MidnightDarling/jike-skill.git ~/.claude/skills/jike
90 
91# Option C: Quick use (no install, just read)
92# Send this to any Claude Code session:
93Read https://github.com/MidnightDarling/jike-skill/blob/main/SKILL.md
94```
95 
96Codex 需要先把公开仓库加为 plugin marketplace,再在 `/plugins` 里安装或启用;
97Claude Code 则可以用插件一键装、手动复制文件夹到 `~/.claude/skills/`、或直接发
98链接临时用。
99 
100## All Commands / 全部命令
101 
102| Command | What it does | 功能 |
103|---------|-------------|------|
104| `jike auth` | QR login, print tokens | 扫码登录 |
105| `jike feed` | Following feed | 关注流 |
106| `jike post` | Create a post | 发帖 |
107| `jike delete-post` | Delete a post | 删帖 |
108| `jike comment` | Comment on a post | 评论 |
109| `jike delete-comment` | Delete a comment | 删评论 |
110| `jike search` | Search content | 搜索 |
111| `jike profile` | User profile | 用户资料 |
112| `jike user-posts` | List a user's posts | 用户帖子列表 |
113| `jike notifications` | Check notifications | 查看通知 |
114 
115## Export All Posts / 导出全部帖子
116 
117```bash
118# Export to Markdown (with image URLs inline)
119# 导出为 Markdown(图片以 URL 内联)
120python3 scripts/export.py --username YOUR_USERNAME
121 
122# Export with local images + raw JSON backup
123# 导出并下载图片 + JSON 原始数据备份
124python3 scripts/export.py --username YOUR_USERNAME \
125 --output my_posts.md --download-images --json-dump
126```
127 
128Both commands use `JIKE_ACCESS_TOKEN` and `JIKE_REFRESH_TOKEN` if flags are omitted.
129 
130Features / 功能:
131- Paginates through ALL posts automatically / 自动翻页获取全部帖子
132- Includes images (URLs or downloaded) / 包含图片
133- Preserves reposts with original author / 保留转发内容和原作者
134- Chronological order / 按时间排序
135- Topic tags and links / 包含话题标签和链接
136 
137## How Auth Works / 认证原理
138 
139No passwords. Jike uses QR-code scan authentication (same as their web client):
140 
141不用密码。即刻用的是 QR 扫码认证(和它的网页版一样):
142 
1431. Create a session on Jike's server → get a `uuid`
1442. Encode the uuid into a `jike://` deep-link QR code
1453. User scans QR with Jike app → app confirms the session
1464. Server returns `access_token` + `refresh_token`
1475. `refresh_token` has long validity — save it, skip QR next time
148 
149### QR rendering (v0.4.0+)
150 
151When `qrcode[pil]` is installed, the QR is rendered through **two
152independent channels** — either may individually fail without breaking
153the other:
154 
155- **Browser HTML** — a self-contained HTML page (PNG embedded as
156 base64) is written to an unpredictable tempfile path with `0o600`
157 permissions on POSIX, and its `file://` URI is printed to stderr.
158 The file is removed automatically when the auth flow returns.
159- **Terminal ASCII** — the same QR is also printed to stderr for
160 terminals that can render it.
161 
162If `qrcode` is not installed, the raw `jike://` URL is printed instead
163so it can be scanned out-of-band.
164 
165二选一,互不影响:装了 `qrcode` 就同时给浏览器 HTML 与终端 ASCII;
166没装就直接打印 `jike://` 原始链接,手动扫描。
167 
168## Architecture / 项目结构

Preview

midnightdarling/jike-skillmidnightdarling/jike-skill

$ npx -y skills add midnightdarling/jike-skill --skill jike-skill

▸ installing to .claude/skills…

✓ jike-skill ready

Repomidnightdarling/jike-skill
TypeSkills
CategoryProductivity & Workflow
ForMarketerAnalyst
UpdatedMay 2026
License—
First seenJul 27, 2026

Tags

Skill

Related

6 picks
Type
  1. juliusbrussee avatarcavemanUltra-compressed communication mode. Cuts output tokens 65% (measured) by speaking like caveman while keeping full technical accuracy.SkillsJul 2026391k93k
  2. larksuite avatarlark-im飞书即时通讯:收发消息和管理群聊。发送和回复消息、搜索聊天记录、管理群聊成员、上传下载图片和文件(支持大文件分片下载)、管理表情回复、发送应用内/短信/电话加急、发送和处理交互卡片(Interactive…SkillsJul 2026390k16k
  3. larksuite avatarlark-calendar飞书日历:管理日历日程和会议室。查看/搜索日程、创建/更新日程、管理参会人、查询忙闲和推荐时段、预定会议室。当用户需要查看日程安排、创建/修改会议、查询/预定会议室时使用。不负责:查询过去的视频会议记录(走 lark-vc)、待办任务(走 lark-task)。SkillsJul 2026388k16k
  4. larksuite avatarlark-contact飞书 / Lark 通讯录:按姓名 / 邮箱解析成 open_id,或按 open_id 反查姓名 / 部门 / 邮箱 / 联系方式 / 个人状态 / 签名。当用户提到某人姓名要下一步发消息 / 排日程,或拿到 open_id 想查具体信息时使用。不负责部门树遍历、按部门列员工、组织架构图,这类需求走原生…SkillsJul 2026387k16k
  5. larksuite avatarlark-workflow-meeting-summary会议纪要整理工作流:汇总指定时间范围内的会议纪要并生成结构化报告。当用户需要整理会议纪要、生成会议周报、回顾一段时间内的会议内容时使用。SkillsJul 2026386k16k
  6. larksuite avatarlark-workflow-standup-report日程待办摘要:编排 calendar +agenda 和 task +get-my-tasks,生成指定日期的日程与未完成任务摘要。适用于了解今天/明天/本周的安排。SkillsJul 2026386k16k