/ Diretório / Playground / thesis-figure-skill
● Comunidade 0xE1337 ⚡ Instantâneo

thesis-figure-skill

por 0xE1337 · 0xE1337/thesis-figure-skill

Paste your paper text, get publication-ready LaTeX/TikZ diagrams — Claude picks the right figure type and draws it.

thesis-figure-skill is a Claude skill for researchers drowning in 'needs figure here' notes: paste a paragraph of your paper or describe the concept, and Claude returns LaTeX/TikZ code for a publication-ready figure (flow diagrams, system architectures, plots, schematic illustrations). Output compiles in any standard LaTeX toolchain.

Por que usar

Principais recursos

Demo ao vivo

Como fica na prática

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

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

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

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

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

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

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

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

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

claude mcp add thesis-figure-skill -- git clone https://github.com/0xE1337/thesis-figure-skill ~/.claude/skills/thesis-figure-skill

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

Casos de uso

Usos do mundo real: thesis-figure-skill

How to generate a figure for a specific paragraph of your paper

👤 Grad students and researchers writing papers or theses ⏱ ~15 min intermediate

Quando usar: You wrote the paragraph, but the reviewer would really appreciate a figure here.

Pré-requisitos
  • LaTeX toolchain (TeX Live or MiKTeX) with tikz, pgfplots — brew install --cask mactex / apt install texlive-full
  • Skill cloned — git clone https://github.com/0xE1337/thesis-figure-skill ~/.claude/skills/thesis-figure-skill
Fluxo
  1. Paste the paragraph
    Paragraph: <text about system architecture>. Generate a TikZ figure that illustrates the architecture.✓ Copiado
    → Diagram type picked + TikZ code
  2. Compile and preview
    Save the code to fig.tex and compile — show me the PDF path.✓ Copiado
    → PDF produced
  3. Iterate
    Shrink the node widths and make the arrows straight, not curved.✓ Copiado
    → Revised TikZ, compiles cleanly

Resultado: A usable publication-quality figure in under 10 minutes.

Armadilhas
  • Overly decorated figures that scream 'AI made this' — Ask for minimal, academic-conservative style
  • Figure size fights the paper's column width — Specify target width (e.g., 0.9\linewidth) up front
Combine com: filesystem

Turn a CSV into a pgfplots chart for your paper

👤 Researchers with experimental results ⏱ ~25 min intermediate

Quando usar: You have results in CSV and want paper-quality plots, not matplotlib screenshots.

Fluxo
  1. Feed the CSV
    Here's results.csv. Make a pgfplots line chart comparing methods A/B/C on x=batch_size, y=accuracy.✓ Copiado
    → pgfplots code + legend
  2. Tweak
    Add error bars (std dev from results_std.csv) and log-scale the x-axis.✓ Copiado
    → Updated code with error bars

Resultado: A publication-grade plot that scales cleanly.

Armadilhas
  • Too many colors / markers — Ask for a grayscale- and colorblind-safe palette

Combinações

Combine com outros MCPs para 10× de alavancagem

thesis-figure-skill + csv-data-summarizer-claude-skill

Profile the CSV first, then generate plots that reflect its actual shape

Summarize results.csv, then produce pgfplots charts that visualize the findings.✓ Copiado
thesis-figure-skill + filesystem

Save figures alongside your paper source

Place every generated figure in paper/figures/.✓ Copiado

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
diagram-type-inference paragraph / concept Start 0
tikz-authoring figure spec Architectural / schematic diagrams 0
pgfplots-authoring CSV + axes spec Data-driven plots 0
iterate previous figure + change request Revisions 0

Custo e limites

O que custa rodar

Cota de API
none
Tokens por chamada
~2–8k per figure
Monetário
free
Dica
Get one figure right first (style/size), then clone the pattern for siblings

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: none
Saída de dados: none — everything is local TeX

Solução de problemas

Erros comuns e correções

pdflatex errors on pgfplots

Update pgfplots and ensure \usepackage{pgfplots}\pgfplotsset{compat=1.18} or similar.

Verificar: kpsewhich pgfplots.sty
TikZ nodes overlap

Ask for named positioning using node distance and relative placements

Figure too big for column

Set scale= or wrap in resizebox{\linewidth}{!}{...}

Alternativas

thesis-figure-skill vs. outros

AlternativaQuando usarTroca
mermaid-skillDiagrams for the web / Markdown, not papersDifferent output medium
excalidraw-skillYou want hand-drawn whiteboard styleNot publication-quality

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills