/ Diretório / Playground / paperbanana-skill
● Comunidade PlutoLei ⚡ Instantâneo

paperbanana-skill

por PlutoLei · PlutoLei/paperbanana-skill

Generate publication-quality academic diagrams — architecture figures, training curves, system schematics — from prompts, PaperBanana-style.

A Claude Code skill wrapping the PaperBanana workflow for academic figures. Instead of fighting TikZ or Inkscape, describe the figure; get publishable SVG/PDF output with the visual grammar papers expect (clean typography, consistent arrows, no rainbow colors).

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

paperbanana-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": {
    "paperbanana-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PlutoLei/paperbanana-skill",
        "~/.claude/skills/paperbanana-skill"
      ],
      "_inferred": true
    }
  }
}

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

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "paperbanana-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PlutoLei/paperbanana-skill",
        "~/.claude/skills/paperbanana-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": {
    "paperbanana-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PlutoLei/paperbanana-skill",
        "~/.claude/skills/paperbanana-skill"
      ],
      "_inferred": true
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "paperbanana-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/PlutoLei/paperbanana-skill",
        "~/.claude/skills/paperbanana-skill"
      ],
      "_inferred": true
    }
  }
}

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

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

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

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add paperbanana-skill -- git clone https://github.com/PlutoLei/paperbanana-skill ~/.claude/skills/paperbanana-skill

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

Casos de uso

Usos do mundo real: paperbanana-skill

Draw your model architecture for a conference paper

👤 ML researchers, grad students mid-paper ⏱ ~30 min intermediate

Quando usar: Deadline in 5 days, you still don't have a clean architecture figure.

Pré-requisitos
  • Skill installed — git clone https://github.com/PlutoLei/paperbanana-skill ~/.claude/skills/paperbanana-skill
Fluxo
  1. Describe the model
    Use paperbanana-skill. Architecture figure: input → tokenizer → transformer stack (6 layers) → classifier head. Use the skill's default paper style.✓ Copiado
    → SVG with clean boxes, arrows, consistent typography
  2. Tweak
    Label the transformer block internals — attention + FFN.✓ Copiado
    → Updated figure with sub-block detail
  3. Export for LaTeX
    Export as PDF sized for a two-column paper.✓ Copiado
    → PDF with correct aspect ratio

Resultado: A reviewer-worthy figure without a week of Inkscape.

Armadilhas
  • Figure over-decorated — Prefer restraint; one accent color, black arrows, lots of whitespace
Combine com: filesystem

Turn training logs into a publication-ready plot

👤 ML researchers with wandb/tensorboard exports ⏱ ~20 min beginner

Quando usar: You have CSVs of training metrics and need a figure for the paper.

Fluxo
  1. Feed CSV
    Use paperbanana-skill. Plot loss and accuracy curves from training.csv in two-panel layout.✓ Copiado
    → Two-panel figure with clean axes
  2. Add baselines
    Overlay the baseline model's curves (baseline.csv) as dashed.✓ Copiado
    → Overlay added with clear legend

Resultado: A plot that fits the paper's aesthetic.

Keep all figures in a paper visually consistent

👤 Authors with 6+ figures drifting in style ⏱ ~45 min intermediate

Quando usar: You look at the paper and realize each figure has a different font.

Fluxo
  1. Define the style
    Use paperbanana-skill. Create a shared style: 10pt sans-serif, #1f77b4 primary, black stroke 0.8pt.✓ Copiado
    → Style file saved
  2. Apply to all figures
    Regenerate figures 1-6 using this style.✓ Copiado
    → Consistent batch output

Resultado: Figures that look like they belong in the same paper.

Combine com: filesystem

Combinações

Combine com outros MCPs para 10× de alavancagem

paperbanana-skill + filesystem

Organize figures in the paper's /figures directory

Save all figures under paper/figures/ with source.svg + out.pdf per figure.✓ Copiado
paperbanana-skill + mermaid-skill

Use Mermaid for casual diagrams, PaperBanana for publication quality

Sketch in Mermaid for discussion; produce with PaperBanana for camera-ready.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
architecture_diagram description System figures 0
plot_curves data file, metrics Training/eval metrics 0
apply_style style file, figures Cross-figure consistency 0

Custo e limites

O que custa rodar

Cota de API
None
Tokens por chamada
Moderate
Monetário
Free
Dica
Lock the style once; apply across figures to avoid re-deciding.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: None
Saída de dados: None from skill

Solução de problemas

Erros comuns e correções

Exported PDF has wrong font in LaTeX

Embed fonts or use standard PDF font families; check paperbanana's export settings

SVG renders differently in browser vs LaTeX

Stick to PDF for LaTeX; SVG for web/slides

Alternativas

paperbanana-skill vs. outros

AlternativaQuando usarTroca
TikZ / PGFPlotsYou want full LaTeX integration and are comfortable with TikZSteep learning curve
mermaid-skillCasual docs, not publicationNot publication-quality aesthetic

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills