Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

arxiv-paper-writerarxiv 论文作者

Agent Skill

arxiv-paper-writer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

546

周安装

23

GitHub Stars

269

下载量

191
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:arxiv-paper-writer(arxiv 论文作者)
来源仓库:https://github.com/renocrypt/latex-arxiv-skill
仓库路径:skills/arxiv-paper-writer
安装命令:
npx skills add https://github.com/renocrypt/latex-arxiv-skill --skill arxiv-paper-writer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/renocrypt/latex-arxiv-skill --skill arxiv-paper-writer

简介

arxiv-paper-writer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 它支持按仓库、安装命令和原始 README 核验具体用法,适用于信息调研类任务。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限与维护状态。
  • 安装前建议检查是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

ML/AI Review Paper Workflow (IEEEtran template)

When to Use

  • ML/AI review papers for arXiv (main text ~6-10 pages; references excluded)
  • LaTeX + BibTeX workflow with verified citations
  • Citation validation/repair on existing LaTeX projects

When NOT to Use

  • Novel experimental research papers (this is a review workflow)
  • Non-academic documents

Inputs

  • Topic description (required)
  • Constraints: venue, page limit, author/affiliations (optional)
  • Existing project path for citation validation (optional)

Outputs

  • main.tex (LaTeX source)
  • ref.bib (verified BibTeX entries)
  • IEEEtran.cls
  • plan/<timestamp>-<slug>.md, issues/<timestamp>-<slug>.csv
  • Figures/tables; main.pdf
  • notes/literature-notes.md (optional per-citation notes)
  • notes/arxiv-registry.sqlite3 (arXiv metadata/BibTeX cache)

Conventions: run python3 scripts/... from this skill folder (where scripts/ lives); <paper_dir> is the paper/project root (contains main.tex, ref.bib, plan/, issues/, notes/). Paths like plan/... are under <paper_dir>. For arXiv discovery/metadata/BibTeX, use scripts/arxiv_registry.py (no ad-hoc curl/wget).


Gated Workflow

Tip: Run python3 scripts/<script>.py --help before use. Open reference files only when a step calls them out.

Non-Negotiable Rules

  1. No prose in main.tex until plan approved AND issues CSV exists.
  2. First deliverable: research snapshot + outline + clarification questions + draft plan.
  3. Use plan + issues tracking for all new papers; do not opt out.
  4. Issues CSV is the execution contract; update Status and Verified_Citations per issue, and add/split/insert issue rows when scope grows (do not do untracked work).
  5. Template is fixed: use IEEEtran two-column layout (assets/template/IEEEtran.cls). Treat two-column width as a layout constraint (use two-column floats when needed).

Gate 0: Research Snapshot + Draft Plan

  1. Confirm constraints (venue, page limit, author block, date range).
  2. Translate the topic into search keywords and run a light discovery pass: 10-20 key papers (see references/research-workflow.md). After step 4 (once <paper_dir> exists), cache arXiv discovery with arxiv_registry.py search.
  3. Propose 2-4 candidate titles aligned to the topic.
  4. Scaffold the project folder and draft plan: python3 scripts/bootstrap_ieee_review_paper.py --stage kickoff --topic "<topic>" This copies LaTeX templates from assets/template/; plan/issues are generated from templates in assets/. Initialize arXiv registry (once): python3 scripts/arxiv_registry.py --project-dir <paper_dir> init.
  5. Create a framework skeleton in main.tex (section headings + 2-4 bullets per section + seed citations; no prose).
  6. Update the plan file to reflect the framework, proposed titles, and section/subsection plan.
  7. Compile early: python3 scripts/compile_paper.py --project-dir <paper_dir> Fix any Overfull \hbox warnings (see Layout Hygiene below).
  8. Return to user:

- Proposed outline (5-8 sections, 2-4 bullets each) - Planned visualizations (5+) mapped to sections (see references/visual-templates.md) - Clarification questions

  1. STOP until user approves.

Gate 1: Create Issues CSV (after approval)

  1. Check kickoff gate in plan: - [x] User confirmed scope + outline in chat.
  2. Create issues CSV (script refuses if gate unchecked): python3 scripts/bootstrap_ieee_review_paper.py --stage issues --topic "<topic>" --with-literature-notes
  3. Validate: python3 scripts/validate_paper_issues.py <paper_dir>/issues/<timestamp>-<slug>.csv
  4. If literature notes are enabled, keep short summaries and (optional) abstract snippets to avoid re-search.
  5. The plan may evolve; add/split/insert issues as needed, re‑validate after edits, and keep going until all issues (including inserted ones) are DONE or SKIP (when feasible, in the same run).

Phase 2: Per-Issue Writing Loop

For each writing issue in the CSV:

  • If an issue balloons (new figure, new subsection, new benchmark set, or a large QA fix), split/insert new issue row(s) (e.g., W6a, Q5) before proceeding; re-run python3 scripts/validate_paper_issues.py <issues.csv>; keep going until all issues are DONE/SKIP.
  1. Research: 8-12 section-specific papers.
  2. Write: Never 3 sentences without citations; varied paragraph rhythm (see references/writing-style.md). For section intent and structure, use references/template-usage.md.
  3. Visualize: Match content triggers (see references/visual-templates.md). Prioritize single-column sizing; use double-column spans only when necessary (see Layout Hygiene). Cite externally sourced figure content.
  4. Verify: Web search + open source page (and PDF if available) before adding to ref.bib. For arXiv entries, append BibTeX via python3 scripts/arxiv_registry.py --project-dir <paper_dir> export-bibtex <arxiv_id> --out-bib <paper_dir>/ref.bib.
  5. Update: Mark issue DONE with Verified_Citations count.
  6. Compile after meaningful changes; fix Overfull \hbox before marking DONE.

Phase 2.5: Rhythm Refinement

After all writing issues are DONE, refine prose section-by-section using the latex-rhythm-refiner skill. This step varies sentence/paragraph lengths and removes filler phrases while preserving all citations.

Phase 3: QA Gate

  1. Run internal QA checklist (see references/quality-report.md).
  2. Compile; ensure no Overfull \hbox warnings in main.log.
  3. Deliver main.tex, ref.bib, figures, and main.pdf.

Existing Paper Workflow (No Re-Scaffold)

If a paper folder already exists, do NOT rerun scaffold:

# Create plan
python3 scripts/create_paper_plan.py --topic "<topic>" --stage plan --output-dir <paper_dir>
# STOP for approval, then check kickoff gate box
# Create issues (use timestamp/slug from plan filename/frontmatter)
python3 scripts/create_paper_plan.py --topic "<topic>" --stage issues --timestamp "<TS>" --slug "<slug>" --output-dir <paper_dir> --with-literature-notes

Citation-Validation Variant

  1. Treat provided path as LaTeX project root.
  2. Follow references/citation-workflow.md.
  3. Use references/bibtex-guide.md for BibTeX rules if entries need repair.
  4. Deliver validation report and corrected ref.bib if requested.

Success Criteria

Compilation: python3 scripts/compile_paper.py --project-dir <paper_dir> (exit 0, no "Citation undefined" warnings). Use --report-page-counts for main-text page count.

Quality Metrics:

  • 6-10 pages of main text (references excluded)
  • 60-80 total citations (8+ per section)
  • 100% citation verification rate
  • 70%+ citations from last 3 years
  • 5+ visualization types
  • All issues DONE or SKIP

Safety & Guardrails

  • Never fabricate citations or results; add TODO and ask user if evidence missing.
  • Verify every citation via web search + source page (and PDF if available) before adding to ref.bib.
  • Confirm before large literature searches.
  • Do not overwrite user files without confirmation.
  • Issues CSV is the contract; mark DONE only when criteria met.
  • No submission bundles unless user requests.

Layout Hygiene

Fix Overfull \hbox warnings before marking issues DONE:

  • Figures: start with figure + \columnwidth; switch to figure* + \textwidth if needed
  • Tables: prefer p{...} column widths / \tabcolsep over \resizebox
  • Equations: use split, multline, aligned, or IEEEeqnarray for line-breaking

Issues CSV Schema

PhaseIssues
ResearchRx: discovery, scaffolding, framework, viz planning
WritingWx: each section with target citations and visualization
RefinementRFx: apply latex-rhythm-refiner skill (after all Wx DONE)
QAQx: citation verification, QA checklist, compilation, final review

Status: TODODOINGDONE. Schema validated by validate_paper_issues.py.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.75%
按下载量换算66

Claude

31.64%
按下载量换算60

Cursor

18.63%
按下载量换算36

Gemini CLI

8.68%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills