/ 目錄 / 演練場 / jike-skill
● 社群 MidnightDarling ⚡ 即開即用

jike-skill

作者 MidnightDarling · MidnightDarling/jike-skill

Jike (即刻) social network client for AI agents — QR login, feed browsing, posts, comments, search, and full history export.

jike-skill is a Python client for the Jike (即刻) social network that works as both a pip package and a Claude Code skill. It supports QR code authentication, feed browsing, post/comment creation and deletion, user profiles, notifications, search, and complete post history export to Markdown with optional image downloading. Auto-refreshes tokens transparently.

為什麼要用

核心特性

即時演示

實際使用效果

jike-skill.replay ▶ 就緒
0/0

安裝

選擇你的客戶端

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

開啟 Claude Desktop → Settings → Developer → Edit Config。儲存後重啟應用。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

Cursor 使用與 Claude Desktop 相同的 mcpServers 格式。專案級設定優先於全域。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

點擊 Cline 側欄中的 MCP Servers 圖示,然後選 "Edit Configuration"。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "jike-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ],
      "_inferred": true
    }
  }
}

格式與 Claude Desktop 相同。重啟 Windsurf 生效。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "jike-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/MidnightDarling/jike-skill",
        "~/.claude/skills/jike-skill"
      ]
    }
  ]
}

Continue 使用伺服器物件陣列,而非映射。

~/.config/zed/settings.json
{
  "context_servers": {
    "jike-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/MidnightDarling/jike-skill",
          "~/.claude/skills/jike-skill"
        ]
      }
    }
  }
}

加入 context_servers。Zed 儲存後熱重載。

claude mcp add jike-skill -- git clone https://github.com/MidnightDarling/jike-skill ~/.claude/skills/jike-skill

一行命令搞定。用 claude mcp list 驗證,claude mcp remove 移除。

使用場景

實戰用法: jike-skill

How to export your entire Jike post history to Markdown

👤 Jike users who want to back up their content ⏱ ~15 min beginner

何時使用: You want a local backup of all your Jike posts in a readable format.

前置條件
  • jike-skill installed — pip install jike-skill[qr] or copy to ~/.claude/skills/jike/
  • Active Jike account — Sign up at okjike.com
步驟
  1. Authenticate
    Log into Jike using QR code authentication.✓ 已複製
    → QR code displayed, confirmation after scanning
  2. Export posts
    Export my entire Jike post history to Markdown files. Include images.✓ 已複製
    → Progress updates, then confirmation with file paths

結果: Complete archive of your Jike posts in Markdown format with images saved locally.

注意事項
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
搭配使用: filesystem

Browse your Jike feed and engage with posts using AI

👤 Jike users who want AI-assisted social browsing ⏱ ~10 min beginner

何時使用: You want to catch up on your Jike feed and post thoughtful comments.

前置條件
  • jike-skill authenticated — Run QR login first
步驟
  1. Browse feed
    Show me the latest 10 posts from my Jike following feed.✓ 已複製
    → List of posts with authors, content, and engagement counts
  2. Comment on a post
    Write a thoughtful comment on the third post about tech trends.✓ 已複製
    → Comment posted confirmation

結果: Up to date on your Jike feed with meaningful interactions.

注意事項
  • Token expires during long sessions — The skill auto-refreshes tokens, but re-authenticate if you see persistent errors

組合

與其他 MCP 搭配,撬動十倍槓桿

jike-skill + filesystem

Export Jike content and organize it into topic-based folders

Export my Jike posts and organize them by topic into ~/jike-archive/.✓ 已複製

工具

此 MCP 暴露的能力

工具輸入參數何時呼叫成本
login_qr none Authenticate with Jike via QR code 0
get_feed limit?: int Get posts from your following feed 0
create_post content: str Create a new Jike post 0
post_comment post_id: str, content: str Comment on a Jike post 0
export_history include_images?: bool Export complete post history to Markdown 0

成本與限制

運行它的成本

API 配額
Subject to Jike's internal API rate limits
每次呼叫 Token 數
200–500 tokens per operation
費用
Free
提示
Use feed browsing for targeted reading instead of exporting everything.

安全

權限、密鑰、影響範圍

憑證儲存: Session tokens stored locally after QR authentication. Tokens auto-refresh.
資料出站: Calls to Jike's web API (api.ruguoapp.com)

故障排查

常見錯誤與修復

QR code not displaying

Install the [qr] extra: pip install jike-skill[qr]. This adds QR rendering support.

驗證: pip install jike-skill[qr]
401 Unauthorized after session expires

The skill auto-refreshes tokens, but if persistent, re-authenticate with QR login.

驗證: Try the login flow again
API endpoint changed

Update to the latest version of jike-skill. Jike may have changed their API.

驗證: pip install --upgrade jike-skill

替代方案

jike-skill 對比其他方案

替代方案何時用它替代權衡
fetch MCPYou just need to read public Jike content without account accessNo authentication, no posting, no feed — just raw page content

更多

資源

📖 閱讀 GitHub 上的官方 README

🐙 查看未解決的 issue

🔍 瀏覽全部 400+ MCP 伺服器和 Skills