ソース情報
- リポジトリ
- FelixNgFender/pea
- ソースの最終更新活動
- 2026年2月20日 05:51
- 検出された SKILL.md の言語
- 英語
- スター
- 6
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/FelixNgFender/pea --skill read-arxiv-paperコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | read-arxiv-paper |
| description | Use this skill when when asked to read an arxiv paper given an arxiv URL |
You will be given a URL of an arxiv paper, for example:
https://www.arxiv.org/abs/2601.07372
The goal is to fetch the TeX Source of the paper (not the PDF!), the URL always looks like this:
https://www.arxiv.org/src/2601.07372
Notice the /src/ in the url. Once you have the URL:
Fetch the url to a local .tar.gz file. A good location is
./data/knowledge/{arxiv_id}.tar.gz.
(If the file already exists, there is no need to re-download it).
Unpack the contents into ./data/knowledge/{arxiv_id} directory.
Every latex source usually has an entrypoint, such as main.tex or something
like that.
Once you've found the entrypoint, Read the contents and then recurse through all other relevant source files to read the paper.
Once you've read the paper, produce a summary of the paper into a markdown file
at ./knowledge/summary_{tag}.md. Generate some reasonable tag like e.g.
conditional_memory or whatever seems appropriate given the paper. Make sure
that the tag doesn't exist yet so you're not overwriting files.
As for the summary itself, remember that you're processing this paper within the context of the pea repository, so most often we we will be interested in how to apply the paper and its lessons to the pea project. Therefore, you should feel free to "remind yourself" of the related pea code by reading the relevant parts, and then explicitly make the connection of how this paper might relate to pea or what are things we might be inspired about or try.