/ Annuaire / Playground / jike-skill
● Communauté MidnightDarling ⚡ Instantané

jike-skill

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

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

jike-skill.replay ▶ prêt
0/0

Installer

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

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.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 utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la 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
    }
  }
}

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "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
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

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

Continue utilise un tableau d'objets serveur plutôt qu'une map.

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

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

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

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : jike-skill

How to export your entire Jike post history to Markdown

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

Quand l'utiliser : You want a local backup of all your Jike posts in a readable format.

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

Résultat : Complete archive of your Jike posts in Markdown format with images saved locally.

Pièges
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
Combiner avec : filesystem

Browse your Jike feed and engage with posts using AI

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

Quand l'utiliser : You want to catch up on your Jike feed and post thoughtful comments.

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

Résultat : Up to date on your Jike feed with meaningful interactions.

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

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

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/.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
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

Coût et limites

Coût d'exécution

Quota d'API
Subject to Jike's internal API rate limits
Tokens par appel
200–500 tokens per operation
Monétaire
Free
Astuce
Use feed browsing for targeted reading instead of exporting everything.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : Session tokens stored locally after QR authentication. Tokens auto-refresh.
Sortie de données : Calls to Jike's web API (api.ruguoapp.com)

Dépannage

Erreurs courantes et correctifs

QR code not displaying

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

Vérifier : pip install jike-skill[qr]
401 Unauthorized after session expires

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

Vérifier : Try the login flow again
API endpoint changed

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

Vérifier : pip install --upgrade jike-skill

Alternatives

jike-skill vs autres

AlternativeQuand l'utiliserCompromis
fetch MCPYou just need to read public Jike content without account accessNo authentication, no posting, no feed — just raw page content

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills