/ Diretório / Playground / jike-skill
● Comunidade 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 que usar

Principais recursos

Demo ao vivo

Como fica na prática

jike-skill.replay ▶ pronto
0/0

Instalar

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

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a 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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do 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

Quando usar: You want a local backup of all your Jike posts in a readable format.

Pré-requisitos
  • jike-skill installed — pip install jike-skill[qr] or copy to ~/.claude/skills/jike/
  • Active Jike account — Sign up at okjike.com
Fluxo
  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.

Armadilhas
  • Large accounts may take a while to export — Be patient — the export handles pagination and rate limiting automatically
Combine com: filesystem

Browse your Jike feed and engage with posts using AI

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

Quando usar: You want to catch up on your Jike feed and post thoughtful comments.

Pré-requisitos
  • jike-skill authenticated — Run QR login first
Fluxo
  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.

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

Combinações

Combine com outros MCPs para 10× de alavancagem

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

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
Subject to Jike's internal API rate limits
Tokens por chamada
200–500 tokens per operation
Monetário
Free
Dica
Use feed browsing for targeted reading instead of exporting everything.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Session tokens stored locally after QR authentication. Tokens auto-refresh.
Saída de dados: Calls to Jike's web API (api.ruguoapp.com)

Solução de problemas

Erros comuns e correções

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

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

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills