/ Verzeichnis / Playground / jike-skill
● Community MidnightDarling ⚡ Sofort

jike-skill

von 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.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

jike-skill.replay ▶ bereit
0/0

Installieren

Wählen Sie Ihren Client

~/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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer Map.

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

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: jike-skill

How to export your entire Jike post history to Markdown

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

Wann einsetzen: You want a local backup of all your Jike posts in a readable format.

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

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

Fallstricke
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
Kombinieren mit: filesystem

Browse your Jike feed and engage with posts using AI

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

Wann einsetzen: You want to catch up on your Jike feed and post thoughtful comments.

Voraussetzungen
  • jike-skill authenticated — Run QR login first
Ablauf
  1. Browse feed
    Show me the latest 10 posts from my Jike following feed.✓ Kopiert
    → 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.✓ Kopiert
    → Comment posted confirmation

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

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

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

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/.✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Subject to Jike's internal API rate limits
Tokens pro Aufruf
200–500 tokens per operation
Kosten in €
Free
Tipp
Use feed browsing for targeted reading instead of exporting everything.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Session tokens stored locally after QR authentication. Tokens auto-refresh.
Datenabfluss: Calls to Jike's web API (api.ruguoapp.com)

Fehlerbehebung

Häufige Fehler und Lösungen

QR code not displaying

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

Prüfen: pip install jike-skill[qr]
401 Unauthorized after session expires

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

Prüfen: Try the login flow again
API endpoint changed

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

Prüfen: pip install --upgrade jike-skill

Alternativen

jike-skill vs. andere

AlternativeWann stattdessenKompromiss
fetch MCPYou just need to read public Jike content without account accessNo authentication, no posting, no feed — just raw page content

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen