learn — beamer paper2pr, community, beamer, ide skills, claude-code, paper-review, quarto, Claude Code, Cursor, Windsurf

v1.0.0

关于此技能

Perfect for Research Agents needing automated AI/ML paper reviews and presentation-ready slide generation via Claude Code's multi-agent workflow. AI/ML Paper → Presentation-ready Beamer + Quarto slides via Claude Code multi-agent workflow

# 核心主题

alohays alohays
[2]
[0]
更新于: 3/16/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
65
Canonical Locale
en
Detected Body Locale
en

Perfect for Research Agents needing automated AI/ML paper reviews and presentation-ready slide generation via Claude Code's multi-agent workflow. AI/ML Paper → Presentation-ready Beamer + Quarto slides via Claude Code multi-agent workflow

核心价值

Empowers agents to extract key insights from AI/ML papers, generating reusable skills and presentation-ready Beamer and Quarto slides using Claude Code, while leveraging multi-agent workflows for efficient knowledge sharing and supporting formats like Beamer and Quarto.

适用 Agent 类型

Perfect for Research Agents needing automated AI/ML paper reviews and presentation-ready slide generation via Claude Code's multi-agent workflow.

赋予的主要能力 · learn

Automating AI/ML paper reviews for key insight extraction
Generating presentation-ready Beamer and Quarto slides via Claude Code
Extracting non-obvious discoveries into reusable skills for persistent knowledge sharing

! 使用限制与门槛

  • Requires Claude Code's multi-agent workflow integration
  • Limited to AI/ML paper reviews and related knowledge domains

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

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

learn 是什么?

Perfect for Research Agents needing automated AI/ML paper reviews and presentation-ready slide generation via Claude Code's multi-agent workflow. AI/ML Paper → Presentation-ready Beamer + Quarto slides via Claude Code multi-agent workflow

如何安装 learn?

运行命令:npx killer-skills add alohays/paper2pr/learn。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

learn 适用于哪些场景?

典型场景包括:Automating AI/ML paper reviews for key insight extraction、Generating presentation-ready Beamer and Quarto slides via Claude Code、Extracting non-obvious discoveries into reusable skills for persistent knowledge sharing。

learn 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

learn 有哪些限制?

Requires Claude Code's multi-agent workflow integration;Limited to AI/ML paper reviews and related knowledge domains。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add alohays/paper2pr/learn。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    learn 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

learn

AI/ML Paper → Presentation-ready Beamer + Quarto slides via Claude Code multi-agent workflow

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

/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 Use when: estimates seem wrong, sample size unexpectedly small, or comparing 6 results between packages. 7author: Claude Code Academic Workflow 8version: 1.0.0 9--- 10 11# fixest Missing Covariate Handling 12 13## Problem 14The fixest package silently drops observations when covariates have NA values, 15which can produce unexpected results when comparing to other packages. 16 17## Context / Trigger Conditions 18- Sample size in fixest is smaller than expected 19- Results differ from Stata or other R packages 20- Model has covariates with potential missing values 21 22## Solution 231. Check for NA patterns before regression: 24 ```r 25 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

相关技能

寻找 learn 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具