learn — for Claude Code paper2pr, community, for Claude Code, ide skills, beamer, claude-code, paper-review, quarto, Extraction, Extract

v1.0.0

Sobre este Skill

Perfeito para Agentes de Pesquisa que necessitam de revisões automatizadas de papers de IA/ML e geração de slides prontos para apresentação via fluxo de trabalho multi-agente do Claude Code. Resumo localizado: # /learn — Skill Extraction Workflow Extract non-obvious discoveries into reusable skills that persist across sessions. It covers ai-ml, beamer, claude-code workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Recursos

/learn — Skill Extraction Workflow
Extract non-obvious discoveries into reusable skills that persist across sessions.
When to Use This Skill
Invoke /learn when you encounter:
Non-obvious debugging — Investigation that took significant effort, not in docs

# Tópicos principais

alohays alohays
[2]
[0]
Atualizado: 3/16/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Perfeito para Agentes de Pesquisa que necessitam de revisões automatizadas de papers de IA/ML e geração de slides prontos para apresentação via fluxo de trabalho multi-agente do Claude Code. Resumo localizado: # /learn — Skill Extraction Workflow Extract non-obvious discoveries into reusable skills that persist across sessions. It covers ai-ml, beamer, claude-code workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Por que usar essa habilidade

Habilita os agentes a extrair insights-chave de papers de IA/ML, gerando habilidades reutilizáveis e slides prontos para apresentação em Beamer e Quarto usando o Claude Code, aproveitando fluxos de trabalho multi-agente para compartilhamento eficiente de conhecimento e suportando formatos como

Melhor para

Perfeito para Agentes de Pesquisa que necessitam de revisões automatizadas de papers de IA/ML e geração de slides prontos para apresentação via fluxo de trabalho multi-agente do Claude Code.

Casos de Uso Práticos for learn

Automatizar revisões de papers de IA/ML para extração de insights-chave
Gerar slides prontos para apresentação em Beamer e Quarto via Claude Code
Extrair descobertas não óbvias em habilidades reutilizáveis para compartilhamento de conhecimento persistente

! Segurança e Limitações

  • Requer integração com o fluxo de trabalho multi-agente do Claude Code
  • Limitado a revisões de papers de IA/ML e domínios de conhecimento relacionados

About The Source

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Demo Labs

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ e etapas de instalação

These questions and steps mirror the structured data on this page for better search understanding.

? Perguntas frequentes

O que é learn?

Perfeito para Agentes de Pesquisa que necessitam de revisões automatizadas de papers de IA/ML e geração de slides prontos para apresentação via fluxo de trabalho multi-agente do Claude Code. Resumo localizado: # /learn — Skill Extraction Workflow Extract non-obvious discoveries into reusable skills that persist across sessions. It covers ai-ml, beamer, claude-code workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Como instalar learn?

Execute o comando: npx killer-skills add alohays/paper2pr. Ele funciona com Cursor, Windsurf, VS Code, Claude Code e mais de 19 outros IDEs.

Quais são os casos de uso de learn?

Os principais casos de uso incluem: Automatizar revisões de papers de IA/ML para extração de insights-chave, Gerar slides prontos para apresentação em Beamer e Quarto via Claude Code, Extrair descobertas não óbvias em habilidades reutilizáveis para compartilhamento de conhecimento persistente.

Quais IDEs são compatíveis com learn?

Esta skill é compatível com Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use a CLI do Killer-Skills para uma instalação unificada.

learn tem limitações?

Requer integração com o fluxo de trabalho multi-agente do Claude Code. Limitado a revisões de papers de IA/ML e domínios de conhecimento relacionados.

Como instalar este skill

  1. 1. Abra o terminal

    Abra o terminal ou linha de comando no diretório do projeto.

  2. 2. Execute o comando de instalação

    Execute: npx killer-skills add alohays/paper2pr. A CLI detectará sua IDE ou agente automaticamente e configurará a skill.

  3. 3. Comece a usar o skill

    O skill já está ativo. Seu agente de IA pode usar learn imediatamente no projeto atual.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

learn

Install learn, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below is adapted from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

/learn — Skill Extraction Workflow

Extract non-obvious discoveries into reusable skills that persist across sessions.

When to Use This Skill

Invoke /learn when you encounter:

  • Non-obvious debugging — Investigation that took significant effort, not in docs
  • Misleading errors — Error message was wrong, found the real cause
  • Workarounds — Found a limitation with a creative solution
  • Tool integration — Undocumented API usage or configuration
  • Trial-and-error — Multiple attempts before success
  • Repeatable workflows — Multi-step task you'd do again
  • User-facing automation — Reports, checks, or processes users will request

Workflow Phases

PHASE 1: Evaluate (Self-Assessment)

Before creating a skill, answer these questions:

  1. "What did I just learn that wasn't obvious before starting?"
  2. "Would future-me benefit from this being documented?"
  3. "Was the solution non-obvious from documentation alone?"
  4. "Is this a multi-step workflow I'd repeat?"

Continue only if YES to at least one question.

PHASE 2: Check Existing Skills

Search for related skills to avoid duplication:

bash
1# Check project skills 2ls .claude/skills/ 2>/dev/null 3 4# Search for keywords 5grep -r -i "KEYWORD" .claude/skills/ 2>/dev/null

Outcomes:

  • Nothing related → Create new skill (continue to Phase 3)
  • Same trigger & fix → Update existing skill (bump version)
  • Partial overlap → Update with new variant

PHASE 3: Create Skill

Create the skill file at .claude/skills/[skill-name]/SKILL.md:

yaml
1--- 2name: descriptive-kebab-case-name 3description: | 4 [CRITICAL: Include specific triggers in the description] 5 - What the skill does 6 - Specific trigger conditions (exact error messages, symptoms) 7 - When to use it (contexts, scenarios) 8author: Claude Code Academic Workflow 9version: 1.0.0 10argument-hint: "[expected arguments]" # Optional 11--- 12 13# Skill Name 14 15## Problem 16[Clear problem description — what situation triggers this skill] 17 18## Context / Trigger Conditions 19[When to use — exact error messages, symptoms, scenarios] 20[Be specific enough that you'd recognize it again] 21 22## Solution 23[Step-by-step solution] 24[Include commands, code snippets, or workflows] 25 26## Verification 27[How to verify it worked] 28[Expected output or state] 29 30## Example 31[Concrete example of the skill in action] 32 33## References 34[Documentation links, related files, or prior discussions]

PHASE 4: Quality Gates

Before finalizing, verify:

  • Description has specific trigger conditions (not vague)
  • Solution was verified to work (tested)
  • Content is specific enough to be actionable
  • Content is general enough to be reusable
  • No sensitive information (credentials, personal data)
  • Skill name is descriptive and uses kebab-case

Output

After creating the skill, report:

✓ Skill created: .claude/skills/[name]/SKILL.md
  Trigger: [when to use]
  Problem: [what it solves]

Example: Creating a Skill

User discovers that a specific R package silently drops observations:

markdown
1--- 2name: fixest-missing-covariate-handling 3description: | 4 Handle silent observation dropping in fixest when covariates have missing values. 5 results between packages. 6author: Claude Code Academic Workflow 7version: 1.0.0 8--- 9 10# fixest Missing Covariate Handling 11 12## Problem 13The fixest package silently drops observations when covariates have NA values, 14which can produce unexpected results when comparing to other packages. 15 16## Context / Trigger Conditions 17- Sample size in fixest is smaller than expected 18- Results differ from Stata or other R packages 19- Model has covariates with potential missing values 20 21## Solution 221. Check for NA patterns before regression: 23 ```r 24 summary(complete.cases(data[, covariates]))
  1. Explicitly handle NA values or use na.action parameter
  2. Document the expected sample size in comments

Verification

Compare nobs(model) with nrow(data) — difference indicates dropped obs.

References

  • fixest documentation on missing values
  • [LEARN:r-code] entry in MEMORY.md

Habilidades Relacionadas

Looking for an alternative to learn or another community skill for your workflow? Explore these related open-source skills.

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumo localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resumo localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat. It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resumo localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumo localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review. It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desenvolvedor