/ ディレクトリ / プレイグラウンド / 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と組み合わせて10倍の力を

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
呼び出しあたりのトークン
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を見る