/ Directorio / Playground / jike-skill
● Comunidad MidnightDarling ⚡ Instantáneo

jike-skill

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

Por qué usarlo

Características clave

Demo en vivo

Cómo se ve en la práctica

jike-skill.replay ▶ listo
0/0

Instalar

Elige tu cliente

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

Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.

~/.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 usa el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la global.

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

Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "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
    }
  }
}

Mismo formato que Claude Desktop. Reinicia Windsurf para aplicar.

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

Continue usa un array de objetos de servidor en lugar de un mapa.

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

Añádelo a context_servers. Zed recarga en caliente al guardar.

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

Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.

Casos de uso

Usos del mundo real: jike-skill

How to export your entire Jike post history to Markdown

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

Cuándo usarlo: You want a local backup of all your Jike posts in a readable format.

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

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

Errores comunes
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
Combinar con: filesystem

Browse your Jike feed and engage with posts using AI

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

Cuándo usarlo: You want to catch up on your Jike feed and post thoughtful comments.

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

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

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

Combinaciones

Combínalo con otros MCPs para multiplicar por 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/.✓ Copiado

Herramientas

Lo que expone este MCP

HerramientaEntradasCuándo llamarCoste
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

Coste y límites

Lo que cuesta ejecutarlo

Cuota de API
Subject to Jike's internal API rate limits
Tokens por llamada
200–500 tokens per operation
Monetario
Free
Consejo
Use feed browsing for targeted reading instead of exporting everything.

Seguridad

Permisos, secretos, alcance

Almacenamiento de credenciales: Session tokens stored locally after QR authentication. Tokens auto-refresh.
Salida de datos: Calls to Jike's web API (api.ruguoapp.com)

Resolución de problemas

Errores comunes y soluciones

QR code not displaying

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

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

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

Verificar: Try the login flow again
API endpoint changed

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

Verificar: pip install --upgrade jike-skill

Alternativas

jike-skill vs otros

AlternativaCuándo usarlaContrapartida
fetch MCPYou just need to read public Jike content without account accessNo authentication, no posting, no feed — just raw page content

Más

Recursos

📖 Lee el README oficial en GitHub

🐙 Ver issues abiertas

🔍 Ver todos los 400+ servidores MCP y Skills